2025-04-25T04:10:14.9695648Z Current runner version: '2.323.0' 2025-04-25T04:10:14.9702192Z Runner name: 'i-0533c757f4ff2fec3' 2025-04-25T04:10:14.9703101Z Machine name: 'EC2AMAZ-DD9BHOF' 2025-04-25T04:10:14.9707114Z ##[group]GITHUB_TOKEN Permissions 2025-04-25T04:10:14.9709373Z Actions: read 2025-04-25T04:10:14.9709886Z Attestations: read 2025-04-25T04:10:14.9710400Z Checks: read 2025-04-25T04:10:14.9710861Z Contents: read 2025-04-25T04:10:14.9711340Z Deployments: read 2025-04-25T04:10:14.9711830Z Discussions: read 2025-04-25T04:10:14.9712342Z Issues: read 2025-04-25T04:10:14.9712788Z Metadata: read 2025-04-25T04:10:14.9713246Z Models: read 2025-04-25T04:10:14.9713707Z Packages: read 2025-04-25T04:10:14.9714115Z Pages: read 2025-04-25T04:10:14.9714576Z PullRequests: read 2025-04-25T04:10:14.9715049Z RepositoryProjects: read 2025-04-25T04:10:14.9715577Z SecurityEvents: read 2025-04-25T04:10:14.9716076Z Statuses: read 2025-04-25T04:10:14.9716577Z ##[endgroup] 2025-04-25T04:10:14.9719056Z Secret source: Actions 2025-04-25T04:10:14.9719770Z Prepare workflow directory 2025-04-25T04:10:15.0226478Z Prepare all required actions 2025-04-25T04:10:15.0266104Z Getting action download info 2025-04-25T04:10:15.2411766Z Download action repository 'pytorch/test-infra@main' (SHA:dba7ae1b796e6ea5268ffdec5594ba272b42a67a) 2025-04-25T04:10:17.2391491Z Download action repository 'pytorch/pytorch@main' (SHA:e2c7ae52d5c896845d26c6c49c187083fa5c4400) 2025-04-25T04:10:41.4379142Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-04-25T04:10:42.0296724Z Getting action download info 2025-04-25T04:10:42.1335227Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-04-25T04:10:42.3652520Z Complete job name: win-vs2022-cpu-py3 / build 2025-04-25T04:10:42.4315829Z ##[group]Run git config --global core.longpaths true 2025-04-25T04:10:42.4316469Z git config --global core.longpaths true 2025-04-25T04:10:42.4316857Z git config --global core.symlinks true 2025-04-25T04:10:42.4317218Z  2025-04-25T04:10:42.4317616Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-04-25T04:10:42.4318215Z # the directory on Windows and prevent GHA from checking out as reported 2025-04-25T04:10:42.4318732Z # in https://github.com/actions/checkout/issues/1018 2025-04-25T04:10:42.4319146Z git config --global core.fsmonitor false 2025-04-25T04:10:42.4344754Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:42.4345504Z env: 2025-04-25T04:10:42.4345737Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:42.4346007Z ##[endgroup] 2025-04-25T04:10:43.0316491Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-04-25T04:10:43.0316961Z env: 2025-04-25T04:10:43.0317170Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:43.0317446Z ##[endgroup] 2025-04-25T04:10:43.0475201Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:10:43.0475977Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:10:43.0476637Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-04-25T04:10:43.0477098Z # handle tool 2025-04-25T04:10:43.0477445Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-04-25T04:10:43.0477854Z Foreach ($process In $processes) { 2025-04-25T04:10:43.0478143Z  Try { 2025-04-25T04:10:43.0478688Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-04-25T04:10:43.0479410Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-04-25T04:10:43.0479827Z  } 2025-04-25T04:10:43.0480029Z  Catch { 2025-04-25T04:10:43.0480424Z  Write-Output "No leftover $process process, continuing" 2025-04-25T04:10:43.0482133Z  Write-Output $_ 2025-04-25T04:10:43.0482371Z  } 2025-04-25T04:10:43.0482562Z } 2025-04-25T04:10:43.0482740Z  2025-04-25T04:10:43.0483219Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-04-25T04:10:43.0483778Z # for hung processes 2025-04-25T04:10:43.0484040Z Foreach ($process In $processes) { 2025-04-25T04:10:43.0484332Z  Try { 2025-04-25T04:10:43.0484719Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-04-25T04:10:43.0485174Z  } 2025-04-25T04:10:43.0485353Z  Catch { 2025-04-25T04:10:43.0485570Z  Write-Output $_ 2025-04-25T04:10:43.0485800Z  } 2025-04-25T04:10:43.0485984Z } 2025-04-25T04:10:43.0486157Z  2025-04-25T04:10:43.0486337Z Try { 2025-04-25T04:10:43.0486574Z  # Print all the processes for debugging 2025-04-25T04:10:43.0487122Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-04-25T04:10:43.0487544Z } 2025-04-25T04:10:43.0487716Z Catch { 2025-04-25T04:10:43.0488109Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-04-25T04:10:43.0488660Z  Write-Output $_ 2025-04-25T04:10:43.0488890Z } 2025-04-25T04:10:43.0504105Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:10:43.0504572Z env: 2025-04-25T04:10:43.0504772Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:43.0505014Z ##[endgroup] 2025-04-25T04:10:43.3963489Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:10:43.4020050Z Finished 2025-04-25T04:10:43.4165511Z No leftover python process, continuing 2025-04-25T04:10:43.4606684Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4607522Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4608112Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4608637Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4609138Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4610033Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4610618Z 2025-04-25T04:10:43.4624585Z No leftover ninja process, continuing 2025-04-25T04:10:43.4633411Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4634153Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4634768Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4635190Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4635804Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4636651Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4637254Z 2025-04-25T04:10:43.4648278Z No leftover cl process, continuing 2025-04-25T04:10:43.4658391Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4659143Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4659719Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4660139Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4661774Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4662596Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4663196Z 2025-04-25T04:10:43.4670903Z No leftover nvcc process, continuing 2025-04-25T04:10:43.4681123Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4681851Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4682445Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4682889Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4683415Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4684245Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4684860Z 2025-04-25T04:10:43.4711492Z No leftover sccache process, continuing 2025-04-25T04:10:43.4721561Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4722301Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4722891Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4723321Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4723870Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4724742Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4725370Z 2025-04-25T04:10:43.4733704Z No leftover git process, continuing 2025-04-25T04:10:43.4744134Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-04-25T04:10:43.4744859Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:9 char:5 2025-04-25T04:10:43.4745442Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:43.4745858Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.4746352Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:43.4747180Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:43.4747794Z 2025-04-25T04:10:43.5105514Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5106430Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5107072Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5107596Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5108165Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5108624Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5109081Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5109802Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5110356Z 2025-04-25T04:10:43.5130927Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5131860Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5132551Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5133060Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5133841Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5134295Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5134893Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5135637Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5136193Z 2025-04-25T04:10:43.5157838Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5158760Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5159375Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5159874Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5160467Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5160970Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5161473Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5162203Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5162751Z 2025-04-25T04:10:43.5186999Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5187927Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5188539Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5189049Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5189665Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5190178Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5190641Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5191358Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5191917Z 2025-04-25T04:10:43.5215566Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5216493Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5217608Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5218114Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5218760Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5219262Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5219733Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5220461Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5221008Z 2025-04-25T04:10:43.5243514Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5244420Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5245032Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5245543Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5246131Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5246603Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5247267Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5248034Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5248641Z 2025-04-25T04:10:43.5271193Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:43.5272103Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:43.5272735Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:43.5273242Z At C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1:21 char:6 2025-04-25T04:10:43.5273828Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:43.5274280Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:43.5274735Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:43.5275535Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:43.5276155Z 2025-04-25T04:10:43.7055636Z Caption CommandLine ProcessId 2025-04-25T04:10:43.7056166Z 2025-04-25T04:10:43.7056624Z System Idle Process 0 2025-04-25T04:10:43.7057060Z 2025-04-25T04:10:43.7057691Z System 4 2025-04-25T04:10:43.7058063Z 2025-04-25T04:10:43.7059075Z Registry 168 2025-04-25T04:10:43.7059542Z 2025-04-25T04:10:43.7059969Z smss.exe 408 2025-04-25T04:10:43.7060339Z 2025-04-25T04:10:43.7060861Z csrss.exe 528 2025-04-25T04:10:43.7062000Z 2025-04-25T04:10:43.7062435Z csrss.exe 604 2025-04-25T04:10:43.7062808Z 2025-04-25T04:10:43.7063222Z wininit.exe 656 2025-04-25T04:10:43.7063621Z 2025-04-25T04:10:43.7064085Z winlogon.exe winlogon.exe 676 2025-04-25T04:10:43.7064525Z 2025-04-25T04:10:43.7065176Z services.exe 748 2025-04-25T04:10:43.7065578Z 2025-04-25T04:10:43.7066873Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-04-25T04:10:43.7067374Z 2025-04-25T04:10:43.7068021Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-04-25T04:10:43.7068626Z 2025-04-25T04:10:43.7069196Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-04-25T04:10:43.7069736Z 2025-04-25T04:10:43.7070234Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-04-25T04:10:43.7070777Z 2025-04-25T04:10:43.7071278Z fontdrvhost.exe "fontdrvhost.exe" 952 2025-04-25T04:10:43.7071740Z 2025-04-25T04:10:43.7072306Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-04-25T04:10:43.7072829Z 2025-04-25T04:10:43.7073406Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-04-25T04:10:43.7074079Z 2025-04-25T04:10:43.7074668Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 824 2025-04-25T04:10:43.7075250Z 2025-04-25T04:10:43.7076004Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1104 2025-04-25T04:10:43.7076686Z 2025-04-25T04:10:43.7077082Z dwm.exe "dwm.exe" 1148 2025-04-25T04:10:43.7077459Z 2025-04-25T04:10:43.7078141Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-04-25T04:10:43.7078882Z 2025-04-25T04:10:43.7079453Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-04-25T04:10:43.7080009Z 2025-04-25T04:10:43.7080564Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1356 2025-04-25T04:10:43.7081116Z 2025-04-25T04:10:43.7081772Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1400 2025-04-25T04:10:43.7082417Z 2025-04-25T04:10:43.7083005Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-04-25T04:10:43.7083607Z 2025-04-25T04:10:43.7085473Z 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 1476 2025-04-25T04:10:43.7087352Z 2025-04-25T04:10:43.7087979Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1484 2025-04-25T04:10:43.7088621Z 2025-04-25T04:10:43.7089223Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-04-25T04:10:43.7089822Z 2025-04-25T04:10:43.7090519Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-04-25T04:10:43.7091288Z 2025-04-25T04:10:43.7091837Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-04-25T04:10:43.7092390Z 2025-04-25T04:10:43.7092969Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-04-25T04:10:43.7093512Z 2025-04-25T04:10:43.7094116Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1736 2025-04-25T04:10:43.7094878Z 2025-04-25T04:10:43.7095441Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1848 2025-04-25T04:10:43.7095985Z 2025-04-25T04:10:43.7096687Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-04-25T04:10:43.7097325Z 2025-04-25T04:10:43.7097910Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1888 2025-04-25T04:10:43.7098508Z 2025-04-25T04:10:43.7099101Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1956 2025-04-25T04:10:43.7099702Z 2025-04-25T04:10:43.7100286Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2000 2025-04-25T04:10:43.7101399Z 2025-04-25T04:10:43.7102125Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1096 2025-04-25T04:10:43.7102865Z 2025-04-25T04:10:43.7103491Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2056 2025-04-25T04:10:43.7104134Z 2025-04-25T04:10:43.7104766Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2088 2025-04-25T04:10:43.7105397Z 2025-04-25T04:10:43.7106077Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2292 2025-04-25T04:10:43.7106756Z 2025-04-25T04:10:43.7107749Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2468 2025-04-25T04:10:43.7108326Z 2025-04-25T04:10:43.7108903Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2500 2025-04-25T04:10:43.7109475Z 2025-04-25T04:10:43.7109986Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2524 2025-04-25T04:10:43.7110678Z 2025-04-25T04:10:43.7111376Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2624 2025-04-25T04:10:43.7111967Z 2025-04-25T04:10:43.7112566Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2632 2025-04-25T04:10:43.7113159Z 2025-04-25T04:10:43.7113723Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2640 2025-04-25T04:10:43.7114300Z 2025-04-25T04:10:43.7114852Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2648 2025-04-25T04:10:43.7115415Z 2025-04-25T04:10:43.7115979Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2668 2025-04-25T04:10:43.7116549Z 2025-04-25T04:10:43.7117271Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2676 2025-04-25T04:10:43.7117958Z 2025-04-25T04:10:43.7118614Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2688 2025-04-25T04:10:43.7119279Z 2025-04-25T04:10:43.7119856Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2696 2025-04-25T04:10:43.7120495Z 2025-04-25T04:10:43.7121068Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2704 2025-04-25T04:10:43.7121638Z 2025-04-25T04:10:43.7122208Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2964 2025-04-25T04:10:43.7122784Z 2025-04-25T04:10:43.7123263Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3008 2025-04-25T04:10:43.7123738Z 2025-04-25T04:10:43.7124458Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3044 2025-04-25T04:10:43.7125173Z 2025-04-25T04:10:43.7125907Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 2852 2025-04-25T04:10:43.7126639Z 2025-04-25T04:10:43.7127243Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3096 2025-04-25T04:10:43.7127834Z 2025-04-25T04:10:43.7128573Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3460 2025-04-25T04:10:43.7129278Z 2025-04-25T04:10:43.7129924Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4072 2025-04-25T04:10:43.7130664Z 2025-04-25T04:10:43.7131229Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a76055 /state1:0x41c64e6d 2760 2025-04-25T04:10:43.7131814Z 2025-04-25T04:10:43.7133574Z 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 2580 2025-04-25T04:10:43.7135339Z 2025-04-25T04:10:43.7136123Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4164 2025-04-25T04:10:43.7136931Z 2025-04-25T04:10:43.7137355Z vds.exe C:\Windows\System32\vds.exe 4236 2025-04-25T04:10:43.7137806Z 2025-04-25T04:10:43.7138518Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2728 2025-04-25T04:10:43.7139170Z 2025-04-25T04:10:43.7139960Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4252 2025-04-25T04:10:43.7140753Z 2025-04-25T04:10:43.7142413Z 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 1088 2025-04-25T04:10:43.7144056Z 2025-04-25T04:10:43.7144566Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 932 2025-04-25T04:10:43.7145129Z 2025-04-25T04:10:43.7145733Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 548 2025-04-25T04:10:43.7146329Z 2025-04-25T04:10:43.7146786Z msdtc.exe C:\Windows\System32\msdtc.exe 3468 2025-04-25T04:10:43.7147245Z 2025-04-25T04:10:43.7147884Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4732 2025-04-25T04:10:43.7148538Z 2025-04-25T04:10:43.7149069Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 3756 2025-04-25T04:10:43.7149628Z 2025-04-25T04:10:43.7150330Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 4792 2025-04-25T04:10:43.7150989Z 2025-04-25T04:10:43.7151465Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4004 2025-04-25T04:10:43.7151961Z 2025-04-25T04:10:43.7152511Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4156 2025-04-25T04:10:43.7153144Z 2025-04-25T04:10:43.7153703Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4988 2025-04-25T04:10:43.7154277Z 2025-04-25T04:10:43.7154843Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4048 2025-04-25T04:10:43.7155419Z 2025-04-25T04:10:43.7155900Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1832 2025-04-25T04:10:43.7156385Z 2025-04-25T04:10:43.7156953Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1704 2025-04-25T04:10:43.7157528Z 2025-04-25T04:10:43.7158129Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3592 2025-04-25T04:10:43.7158735Z 2025-04-25T04:10:43.7159473Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1492 2025-04-25T04:10:43.7160160Z 2025-04-25T04:10:43.7160793Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1860 2025-04-25T04:10:43.7161445Z 2025-04-25T04:10:43.7161946Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3888 2025-04-25T04:10:43.7162525Z 2025-04-25T04:10:43.7163031Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1812 2025-04-25T04:10:43.7163540Z 2025-04-25T04:10:43.7164137Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1896 2016 1648 2025-04-25T04:10:43.7164754Z 2025-04-25T04:10:43.7165224Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4748 2025-04-25T04:10:43.7165724Z 2025-04-25T04:10:43.7166590Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\14cfd43c-0309-4d62-92e6-aa06da27f14e.ps1'" 3800 2025-04-25T04:10:43.7167479Z 2025-04-25T04:10:43.7168207Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1176 2025-04-25T04:10:43.7168941Z 2025-04-25T04:10:43.7168961Z 2025-04-25T04:10:43.7168967Z 2025-04-25T04:10:43.7433292Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-04-25T04:10:43.7433720Z with: 2025-04-25T04:10:43.7434279Z github-secret: *** 2025-04-25T04:10:43.7436282Z 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-04-25T04:10:43.7438297Z activate-with-label: false 2025-04-25T04:10:43.7438539Z label: with-ssh 2025-04-25T04:10:43.7438764Z remove-existing-keys: true 2025-04-25T04:10:43.7439008Z fail-silently: true 2025-04-25T04:10:43.7439210Z env: 2025-04-25T04:10:43.7439415Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:43.7439649Z ##[endgroup] 2025-04-25T04:10:43.8956871Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-04-25T04:10:43.8958990Z ciflow reference detected, attempting to extract PR number 2025-04-25T04:10:44.2279274Z Grabbing public ssh keys from https://github.com/pytorch-bot[bot].keys 2025-04-25T04:10:44.2811657Z No SSH keys found for user pytorch-bot[bot] 2025-04-25T04:10:44.2812160Z Grabbing public ssh keys from https://github.com/laithsakka.keys 2025-04-25T04:10:44.3527449Z Public keys pulled and installed to C:\Users\runneruser\.ssh\authorized_keys 2025-04-25T04:10:44.3573460Z Login using: ssh runneruser@ec2-3-92-164-199.compute-1.amazonaws.com 2025-04-25T04:10:44.3574052Z To forward remote desktop on your local machine ssh as follows: 2025-04-25T04:10:44.3574746Z ssh -L 3389:localhost:3389 runneruser@ec2-3-92-164-199.compute-1.amazonaws.com 2025-04-25T04:10:44.3575239Z And then change password using `passwd` command. 2025-04-25T04:10:44.3575474Z 2025-04-25T04:10:44.3575754Z To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, 2025-04-25T04:10:44.3576330Z Activate miniconda and Visual Studio environment, by running: 2025-04-25T04:10:44.3576822Z call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-04-25T04:10:44.3577461Z call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-04-25T04:10:44.3823993Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-04-25T04:10:44.3824416Z with: 2025-04-25T04:10:44.3824627Z no-sudo: true 2025-04-25T04:10:44.3824832Z submodules: recursive 2025-04-25T04:10:44.3825045Z fetch-depth: 0 2025-04-25T04:10:44.3825238Z env: 2025-04-25T04:10:44.3825416Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:44.3825640Z ##[endgroup] 2025-04-25T04:10:44.3924044Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-04-25T04:10:44.3924912Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-04-25T04:10:44.3943997Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:44.3944426Z env: 2025-04-25T04:10:44.3944605Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:44.3944859Z ##[endgroup] 2025-04-25T04:10:44.4308133Z ##[group]Run # Use all available CPUs for fetching 2025-04-25T04:10:44.4308539Z # Use all available CPUs for fetching 2025-04-25T04:10:44.4308850Z cd "${GITHUB_WORKSPACE}" 2025-04-25T04:10:44.4309163Z git config --global fetch.parallel 0 2025-04-25T04:10:44.4309506Z git config --global submodule.fetchJobs 0 2025-04-25T04:10:44.4309818Z  2025-04-25T04:10:44.4310136Z # Clean workspace. The default checkout action should also do this, but 2025-04-25T04:10:44.4310579Z # do it here as well just in case 2025-04-25T04:10:44.4310862Z if [[ -d .git ]]; then 2025-04-25T04:10:44.4311119Z  if [ -z "${NO_SUDO}" ]; then 2025-04-25T04:10:44.4311414Z  sudo git clean -ffdx 2025-04-25T04:10:44.4311656Z  else 2025-04-25T04:10:44.4311859Z  git clean -ffdx 2025-04-25T04:10:44.4312079Z  fi 2025-04-25T04:10:44.4312259Z fi 2025-04-25T04:10:44.4334451Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:44.4334891Z env: 2025-04-25T04:10:44.4335073Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:44.4335304Z NO_SUDO: true 2025-04-25T04:10:44.4335489Z ##[endgroup] 2025-04-25T04:10:44.5254004Z ##[group]Run actions/checkout@v4 2025-04-25T04:10:44.5254279Z with: 2025-04-25T04:10:44.5254504Z ref: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:10:44.5254802Z fetch-depth: 0 2025-04-25T04:10:44.5255011Z submodules: recursive 2025-04-25T04:10:44.5255237Z show-progress: false 2025-04-25T04:10:44.5255462Z repository: pytorch/pytorch 2025-04-25T04:10:44.5255846Z token: *** 2025-04-25T04:10:44.5256711Z ssh-strict: true 2025-04-25T04:10:44.5256905Z ssh-user: git 2025-04-25T04:10:44.5257115Z persist-credentials: true 2025-04-25T04:10:44.5257338Z clean: true 2025-04-25T04:10:44.5257546Z sparse-checkout-cone-mode: true 2025-04-25T04:10:44.5257797Z fetch-tags: false 2025-04-25T04:10:44.5258000Z lfs: false 2025-04-25T04:10:44.5258194Z set-safe-directory: true 2025-04-25T04:10:44.5258417Z env: 2025-04-25T04:10:44.5258588Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:44.5258810Z ##[endgroup] 2025-04-25T04:10:44.6550124Z Syncing repository: pytorch/pytorch 2025-04-25T04:10:44.6551384Z ##[group]Getting Git version info 2025-04-25T04:10:44.6551783Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-04-25T04:10:44.6625714Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-04-25T04:10:44.6827392Z git version 2.47.1.windows.2 2025-04-25T04:10:44.6870811Z ##[endgroup] 2025-04-25T04:10:44.6881629Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\bfe6e1ee-17e8-4f18-9773-8fab0e4fd894\.gitconfig' 2025-04-25T04:10:44.6899395Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\bfe6e1ee-17e8-4f18-9773-8fab0e4fd894' before making global git config changes 2025-04-25T04:10:44.6901766Z Adding repository directory to the temporary git global config as a safe directory 2025-04-25T04:10:44.6908566Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:10:44.7160916Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-04-25T04:10:44.7166305Z ##[group]Initializing the repository 2025-04-25T04:10:44.7175895Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:10:44.7503834Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-04-25T04:10:44.7543832Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-04-25T04:10:44.7791889Z ##[endgroup] 2025-04-25T04:10:44.7792319Z ##[group]Disabling automatic garbage collection 2025-04-25T04:10:44.7802205Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-04-25T04:10:44.8024681Z ##[endgroup] 2025-04-25T04:10:44.8025063Z ##[group]Setting up auth 2025-04-25T04:10:44.8037013Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-04-25T04:10:44.8259319Z [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-04-25T04:10:45.2886652Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-04-25T04:10:45.3121284Z [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-04-25T04:10:45.6523747Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-04-25T04:10:45.6780304Z ##[endgroup] 2025-04-25T04:10:45.6780768Z ##[group]Fetching the repository 2025-04-25T04:10:45.6794140Z [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-04-25T04:11:37.1518773Z From https://github.com/pytorch/pytorch 2025-04-25T04:11:37.1519263Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-04-25T04:11:37.1520897Z * [new branch] Chillee-patch-1 -> origin/Chillee-patch-1 2025-04-25T04:11:37.1521449Z * [new branch] Chillee-patch-5 -> origin/Chillee-patch-5 2025-04-25T04:11:37.1521987Z * [new branch] Flamefire-patch-1 -> origin/Flamefire-patch-1 2025-04-25T04:11:37.1522951Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-04-25T04:11:37.1523642Z * [new branch] JackCaoG/add_new_lazy_counter_macro -> origin/JackCaoG/add_new_lazy_counter_macro 2025-04-25T04:11:37.1524360Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-04-25T04:11:37.1525093Z * [new branch] JackCaoG/update_xla_pin_to_skip_test -> origin/JackCaoG/update_xla_pin_to_skip_test 2025-04-25T04:11:37.1525765Z * [new branch] JackCaoG/update_xla_pin_to_skip_test2 -> origin/JackCaoG/update_xla_pin_to_skip_test2 2025-04-25T04:11:37.1526507Z * [new branch] NicolasHug-patch-2 -> origin/NicolasHug-patch-2 2025-04-25T04:11:37.1527106Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-04-25T04:11:37.1527680Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-04-25T04:11:37.1528229Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-04-25T04:11:37.1529412Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-04-25T04:11:37.1529955Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-04-25T04:11:37.1530484Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-04-25T04:11:37.1531089Z * [new branch] Valentine/flash_attention_bf16 -> origin/Valentine/flash_attention_bf16 2025-04-25T04:11:37.1531628Z * [new branch] add-assign -> origin/add-assign 2025-04-25T04:11:37.1532130Z * [new branch] add-dates -> origin/add-dates 2025-04-25T04:11:37.1532736Z * [new branch] add_broadcast_functional_collective -> origin/add_broadcast_functional_collective 2025-04-25T04:11:37.1533386Z * [new branch] add_mha_to_autocast_policy -> origin/add_mha_to_autocast_policy 2025-04-25T04:11:37.1533981Z * [new branch] add_non_parallel_model_comparison -> origin/add_non_parallel_model_comparison 2025-04-25T04:11:37.1534618Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-04-25T04:11:37.1535181Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-04-25T04:11:37.1535691Z * [new branch] addsimde -> origin/addsimde 2025-04-25T04:11:37.1536140Z * [new branch] adi/gemm_bf16f32 -> origin/adi/gemm_bf16f32 2025-04-25T04:11:37.1536627Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-04-25T04:11:37.1537163Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-04-25T04:11:37.1537750Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-04-25T04:11:37.1538320Z * [new branch] alanwaketan/pin2 -> origin/alanwaketan/pin2 2025-04-25T04:11:37.1538824Z * [new branch] albanD-patch-2 -> origin/albanD-patch-2 2025-04-25T04:11:37.1539275Z * [new branch] alt-disable -> origin/alt-disable 2025-04-25T04:11:37.1539782Z * [new branch] angelayi/aot_inductor_torch -> origin/angelayi/aot_inductor_torch 2025-04-25T04:11:37.1540374Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-04-25T04:11:37.1540945Z * [new branch] angelayi/aps_issue -> origin/angelayi/aps_issue 2025-04-25T04:11:37.1541554Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-04-25T04:11:37.1542185Z * [new branch] angelayi/constraint -> origin/angelayi/constraint 2025-04-25T04:11:37.1542832Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-04-25T04:11:37.1543367Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-04-25T04:11:37.1543965Z * [new branch] angelayi/default_serialized -> origin/angelayi/default_serialized 2025-04-25T04:11:37.1544493Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-04-25T04:11:37.1544987Z * [new branch] angelayi/distribby -> origin/angelayi/distribby 2025-04-25T04:11:37.1545506Z * [new branch] angelayi/distribution -> origin/angelayi/distribution 2025-04-25T04:11:37.1546076Z * [new branch] angelayi/draft_export_cv -> origin/angelayi/draft_export_cv 2025-04-25T04:11:37.2073635Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-04-25T04:11:37.2074264Z * [new branch] angelayi/embed_constants -> origin/angelayi/embed_constants 2025-04-25T04:11:37.2074762Z * [new branch] angelayi/fake -> origin/angelayi/fake 2025-04-25T04:11:37.2075737Z * [new branch] angelayi/filter_stacktrace -> origin/angelayi/filter_stacktrace 2025-04-25T04:11:37.2076351Z * [new branch] angelayi/fix_additional_inputs -> origin/angelayi/fix_additional_inputs 2025-04-25T04:11:37.2076932Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-04-25T04:11:37.2077446Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-04-25T04:11:37.2077936Z * [new branch] angelayi/meta_kernel -> origin/angelayi/meta_kernel 2025-04-25T04:11:37.2078468Z * [new branch] angelayi/meta_kernel_yaml2 -> origin/angelayi/meta_kernel_yaml2 2025-04-25T04:11:37.2078987Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-04-25T04:11:37.2079551Z * [new branch] angelayi/register_dataclass -> origin/angelayi/register_dataclass 2025-04-25T04:11:37.2080144Z * [new branch] angelayi/rename_generate_fake -> origin/angelayi/rename_generate_fake 2025-04-25T04:11:37.2080700Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-04-25T04:11:37.2081181Z * [new branch] angelayi/shape -> origin/angelayi/shape 2025-04-25T04:11:37.2081659Z * [new branch] angelayi/symint_help -> origin/angelayi/symint_help 2025-04-25T04:11:37.2082169Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-04-25T04:11:37.2082675Z * [new branch] angelayi/symint_input2 -> origin/angelayi/symint_input2 2025-04-25T04:11:37.2083184Z * [new branch] angelayi/test113041 -> origin/angelayi/test113041 2025-04-25T04:11:37.2083677Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-04-25T04:11:37.2084196Z * [new branch] angelayi/transpose_ -> origin/angelayi/transpose_ 2025-04-25T04:11:37.2084787Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-04-25T04:11:37.2085391Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-04-25T04:11:37.2086025Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-04-25T04:11:37.2086663Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-04-25T04:11:37.2087138Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-04-25T04:11:37.2087620Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-04-25T04:11:37.2088091Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-04-25T04:11:37.2088682Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-04-25T04:11:37.2089181Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-04-25T04:11:37.2089753Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-04-25T04:11:37.2090275Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-04-25T04:11:37.2090782Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-04-25T04:11:37.2091257Z * [new branch] base/1.5 -> origin/base/1.5 2025-04-25T04:11:37.2091718Z * [new branch] base_inductor_opt_flag -> origin/base_inductor_opt_flag 2025-04-25T04:11:37.2092297Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-04-25T04:11:37.2092884Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-04-25T04:11:37.2093635Z * [new branch] benjaminglass1/add-missing-regression-benchmarks -> origin/benjaminglass1/add-missing-regression-benchmarks 2025-04-25T04:11:37.2094920Z * [new branch] benjaminglass1/fixup-opinfo-cpu-gradient -> origin/benjaminglass1/fixup-opinfo-cpu-gradient 2025-04-25T04:11:37.2095616Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-04-25T04:11:37.2096115Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-04-25T04:11:37.2096607Z * [new branch] bf/cg-foreach-op -> origin/bf/cg-foreach-op 2025-04-25T04:11:37.2097075Z * [new branch] bf/cg-meta-tensor -> origin/bf/cg-meta-tensor 2025-04-25T04:11:37.2097562Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-04-25T04:11:37.2098129Z * [new branch] bf/cg-skip-unbacked-symint-msg -> origin/bf/cg-skip-unbacked-symint-msg 2025-04-25T04:11:37.2098682Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-04-25T04:11:37.2505471Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-04-25T04:11:37.2506451Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-04-25T04:11:37.2507316Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-04-25T04:11:37.2507881Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-04-25T04:11:37.2508416Z * [new branch] bf/fa-small-block-mask -> origin/bf/fa-small-block-mask 2025-04-25T04:11:37.2508944Z * [new branch] bf/noop-elimination -> origin/bf/noop-elimination 2025-04-25T04:11:37.2509457Z * [new branch] bf/noop-slice -> origin/bf/noop-slice 2025-04-25T04:11:37.2509961Z * [new branch] bf/padded-tensor-init -> origin/bf/padded-tensor-init 2025-04-25T04:11:37.2510475Z * [new branch] bf/partition-cg -> origin/bf/partition-cg 2025-04-25T04:11:37.2510990Z * [new branch] bf/partition-custom-op -> origin/bf/partition-custom-op 2025-04-25T04:11:37.2511521Z * [new branch] bf/partition-flaky -> origin/bf/partition-flaky 2025-04-25T04:11:37.2512015Z * [new branch] bf/partition-gc -> origin/bf/partition-gc 2025-04-25T04:11:37.2512502Z * [new branch] bf/partition-reorder -> origin/bf/partition-reorder 2025-04-25T04:11:37.2513004Z * [new branch] bf/partition-rng -> origin/bf/partition-rng 2025-04-25T04:11:37.2513493Z * [new branch] bf/partition-symint -> origin/bf/partition-symint 2025-04-25T04:11:37.2514032Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-04-25T04:11:37.2514747Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-04-25T04:11:37.2515356Z * [new branch] bf/reorder-minimal-partition -> origin/bf/reorder-minimal-partition 2025-04-25T04:11:37.2515876Z * [new branch] bik -> origin/bik 2025-04-25T04:11:37.2516357Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-04-25T04:11:37.2516926Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-04-25T04:11:37.2517470Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-04-25T04:11:37.2518020Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-04-25T04:11:37.2518560Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-04-25T04:11:37.2519093Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-04-25T04:11:37.2519651Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-04-25T04:11:37.2520562Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-04-25T04:11:37.2521139Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-04-25T04:11:37.2521699Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-04-25T04:11:37.2522239Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-04-25T04:11:37.2522767Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-04-25T04:11:37.2523314Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-04-25T04:11:37.2523897Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-04-25T04:11:37.2524456Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-04-25T04:11:37.2525010Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-04-25T04:11:37.2525560Z * [new branch] bowbao/beartype_fix_2.1.1 -> origin/bowbao/beartype_fix_2.1.1 2025-04-25T04:11:37.2526098Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-04-25T04:11:37.2526705Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-04-25T04:11:37.2527211Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-04-25T04:11:37.2527817Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-04-25T04:11:37.2528383Z * [new branch] bowenbao/docker_rocm_miniforge -> origin/bowenbao/docker_rocm_miniforge 2025-04-25T04:11:37.2528948Z * [new branch] brister/3d_broadcast -> origin/brister/3d_broadcast 2025-04-25T04:11:37.2529458Z * [new branch] brister/allclose_many -> origin/brister/allclose_many 2025-04-25T04:11:37.2530030Z * [new branch] brister/always_tiled_reduction -> origin/brister/always_tiled_reduction 2025-04-25T04:11:37.2866924Z * [new branch] brister/block_ptr_dynamic -> origin/brister/block_ptr_dynamic 2025-04-25T04:11:37.2867489Z * [new branch] brister/floordiv -> origin/brister/floordiv 2025-04-25T04:11:37.2868027Z * [new branch] brister/loop_order -> origin/brister/loop_order 2025-04-25T04:11:37.2868550Z * [new branch] brister/singleton_tiling -> origin/brister/singleton_tiling 2025-04-25T04:11:37.2869206Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-04-25T04:11:37.2869970Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-04-25T04:11:37.2870532Z * [new branch] brister/wrapper_ir_refactor -> origin/brister/wrapper_ir_refactor 2025-04-25T04:11:37.2871028Z * [new branch] bug -> origin/bug 2025-04-25T04:11:37.2871439Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-04-25T04:11:37.2871893Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-04-25T04:11:37.2872407Z * [new branch] camyllh/ff_linting_D72572050 -> origin/camyllh/ff_linting_D72572050 2025-04-25T04:11:37.2872922Z * [new branch] check-links -> origin/check-links 2025-04-25T04:11:37.2873418Z * [new branch] cherry-pick-111576 -> origin/cherry-pick-111576 2025-04-25T04:11:37.2874050Z * [new branch] cherry-pick-134515-by-pytorch_bot_bot_ -> origin/cherry-pick-134515-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2874801Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2875628Z * [new branch] cherry-pick-148070-by-pytorch_bot_bot_ -> origin/cherry-pick-148070-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2876375Z * [new branch] cherry-pick-148360-by-pytorch_bot_bot_ -> origin/cherry-pick-148360-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2877116Z * [new branch] cherry-pick-148677-by-pytorch_bot_bot_ -> origin/cherry-pick-148677-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2877836Z * [new branch] cherry-pick-148863-by-pytorch_bot_bot_ -> origin/cherry-pick-148863-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2878580Z * [new branch] cherry-pick-148912-by-pytorch_bot_bot_ -> origin/cherry-pick-148912-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2879324Z * [new branch] cherry-pick-149052-by-pytorch_bot_bot_ -> origin/cherry-pick-149052-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2880075Z * [new branch] cherry-pick-149057-by-pytorch_bot_bot_ -> origin/cherry-pick-149057-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2880833Z * [new branch] cherry-pick-149147-by-pytorch_bot_bot_ -> origin/cherry-pick-149147-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2881563Z * [new branch] cherry-pick-149208-by-pytorch_bot_bot_ -> origin/cherry-pick-149208-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2882314Z * [new branch] cherry-pick-149245-by-pytorch_bot_bot_ -> origin/cherry-pick-149245-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2883063Z * [new branch] cherry-pick-149299-by-pytorch_bot_bot_ -> origin/cherry-pick-149299-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2883796Z * [new branch] cherry-pick-149388-by-pytorch_bot_bot_ -> origin/cherry-pick-149388-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2884548Z * [new branch] cherry-pick-149437-by-pytorch_bot_bot_ -> origin/cherry-pick-149437-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2885283Z * [new branch] cherry-pick-149473-by-pytorch_bot_bot_ -> origin/cherry-pick-149473-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2886091Z * [new branch] cherry-pick-149505-by-pytorch_bot_bot_ -> origin/cherry-pick-149505-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2886936Z * [new branch] cherry-pick-149584-by-pytorch_bot_bot_ -> origin/cherry-pick-149584-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2887668Z * [new branch] cherry-pick-149672-by-pytorch_bot_bot_ -> origin/cherry-pick-149672-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2888418Z * [new branch] cherry-pick-149683-by-pytorch_bot_bot_ -> origin/cherry-pick-149683-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2889146Z * [new branch] cherry-pick-149756-by-pytorch_bot_bot_ -> origin/cherry-pick-149756-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2889987Z * [new branch] cherry-pick-149778-by-pytorch_bot_bot_ -> origin/cherry-pick-149778-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2890732Z * [new branch] cherry-pick-149808-by-pytorch_bot_bot_ -> origin/cherry-pick-149808-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2891472Z * [new branch] cherry-pick-149843-by-pytorch_bot_bot_ -> origin/cherry-pick-149843-by-pytorch_bot_bot_ 2025-04-25T04:11:37.2892250Z * [new branch] cherry-pick-149866-by-pytorch_bot_bot_ -> origin/cherry-pick-149866-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3216945Z * [new branch] cherry-pick-149947-by-pytorch_bot_bot_ -> origin/cherry-pick-149947-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3217683Z * [new branch] cherry-pick-149973-by-pytorch_bot_bot_ -> origin/cherry-pick-149973-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3218426Z * [new branch] cherry-pick-150157-by-pytorch_bot_bot_ -> origin/cherry-pick-150157-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3219162Z * [new branch] cherry-pick-150158-by-pytorch_bot_bot_ -> origin/cherry-pick-150158-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3219906Z * [new branch] cherry-pick-150185-by-pytorch_bot_bot_ -> origin/cherry-pick-150185-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3220761Z * [new branch] cherry-pick-150212-by-pytorch_bot_bot_ -> origin/cherry-pick-150212-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3221535Z * [new branch] cherry-pick-150256-by-pytorch_bot_bot_ -> origin/cherry-pick-150256-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3222321Z * [new branch] cherry-pick-150300-by-pytorch_bot_bot_ -> origin/cherry-pick-150300-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3223046Z * [new branch] cherry-pick-150324-by-pytorch_bot_bot_ -> origin/cherry-pick-150324-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3223800Z * [new branch] cherry-pick-150358-by-pytorch_bot_bot_ -> origin/cherry-pick-150358-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3224553Z * [new branch] cherry-pick-150397-by-pytorch_bot_bot_ -> origin/cherry-pick-150397-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3225289Z * [new branch] cherry-pick-150512-by-pytorch_bot_bot_ -> origin/cherry-pick-150512-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3226038Z * [new branch] cherry-pick-150640-by-pytorch_bot_bot_ -> origin/cherry-pick-150640-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3226783Z * [new branch] cherry-pick-150705-by-pytorch_bot_bot_ -> origin/cherry-pick-150705-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3227549Z * [new branch] cherry-pick-150786-by-pytorch_bot_bot_ -> origin/cherry-pick-150786-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3228331Z * [new branch] cherry-pick-150845-by-pytorch_bot_bot_ -> origin/cherry-pick-150845-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3229058Z * [new branch] cherry-pick-150931-by-pytorch_bot_bot_ -> origin/cherry-pick-150931-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3229804Z * [new branch] cherry-pick-150956-by-pytorch_bot_bot_ -> origin/cherry-pick-150956-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3230553Z * [new branch] cherry-pick-151257-by-pytorch_bot_bot_ -> origin/cherry-pick-151257-by-pytorch_bot_bot_ 2025-04-25T04:11:37.3231206Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-04-25T04:11:37.3231775Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-04-25T04:11:37.3232352Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-04-25T04:11:37.3232876Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-04-25T04:11:37.3233506Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-04-25T04:11:37.3234222Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-04-25T04:11:37.3234942Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-04-25T04:11:37.3235420Z * [new branch] copy_graph -> origin/copy_graph 2025-04-25T04:11:37.3235905Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-04-25T04:11:37.3236410Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-04-25T04:11:37.3236863Z * [new branch] csl/3proc -> origin/csl/3proc 2025-04-25T04:11:37.3237465Z * [new branch] csl/almalinux_docker_use_reusable_action -> origin/csl/almalinux_docker_use_reusable_action 2025-04-25T04:11:37.3238097Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-04-25T04:11:37.3238674Z * [new branch] csl/binary_docker_build_action -> origin/csl/binary_docker_build_action 2025-04-25T04:11:37.3239262Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-04-25T04:11:37.3239804Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-04-25T04:11:37.3240448Z * [new branch] csl/cmake-3.31.6 -> origin/csl/cmake-3.31.6 2025-04-25T04:11:37.3241044Z * [new branch] csl/disable_some_periodic_tests -> origin/csl/disable_some_periodic_tests 2025-04-25T04:11:37.3241671Z * [new branch] csl/docker_multistage -> origin/csl/docker_multistage 2025-04-25T04:11:37.3242189Z * [new branch] csl/fix_logs_again -> origin/csl/fix_logs_again 2025-04-25T04:11:37.3632994Z * [new branch] csl/hotfix_cmake_executorch -> origin/csl/hotfix_cmake_executorch 2025-04-25T04:11:37.3633569Z * [new branch] csl/katex -> origin/csl/katex 2025-04-25T04:11:37.3634051Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-04-25T04:11:37.3634686Z * [new branch] csl/libtorch_docker_ues_reusable_action -> origin/csl/libtorch_docker_ues_reusable_action 2025-04-25T04:11:37.3635460Z * [new branch] csl/manywheel_docker_reusable_action -> origin/csl/manywheel_docker_reusable_action 2025-04-25T04:11:37.3636092Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-04-25T04:11:37.3636611Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-04-25T04:11:37.3637143Z * [new branch] csl/no_protobuf_docker -> origin/csl/no_protobuf_docker 2025-04-25T04:11:37.3637654Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-04-25T04:11:37.3638203Z * [new branch] csl/remove_lite_interpreter -> origin/csl/remove_lite_interpreter 2025-04-25T04:11:37.3638714Z * [new branch] csl/rocm_drm -> origin/csl/rocm_drm 2025-04-25T04:11:37.3639178Z * [new branch] csl/system_nccl -> origin/csl/system_nccl 2025-04-25T04:11:37.3639722Z * [new branch] csl/tagged_binary_docker_builds -> origin/csl/tagged_binary_docker_builds 2025-04-25T04:11:37.3640322Z * [new branch] csl/td_on_distributed_cpu -> origin/csl/td_on_distributed_cpu 2025-04-25T04:11:37.3640915Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-04-25T04:11:37.3641566Z * [new branch] csl/test_cusparse_binary_docker -> origin/csl/test_cusparse_binary_docker 2025-04-25T04:11:37.3642190Z * [new branch] csl/test_graph_partition -> origin/csl/test_graph_partition 2025-04-25T04:11:37.3642800Z * [new branch] csl/test_new_calc_docker_image_action -> origin/csl/test_new_calc_docker_image_action 2025-04-25T04:11:37.3643409Z * [new branch] csl/test_sys_nccl_binary -> origin/csl/test_sys_nccl_binary 2025-04-25T04:11:37.3644140Z * [new branch] csl/unify_install_cuda -> origin/csl/unify_install_cuda 2025-04-25T04:11:37.3644697Z * [new branch] csl/unify_install_cusparselt -> origin/csl/unify_install_cusparselt 2025-04-25T04:11:37.3645322Z * [new branch] csl/unify_manywheel_docker_pull -> origin/csl/unify_manywheel_docker_pull 2025-04-25T04:11:37.3645896Z * [new branch] csl/where_did_the_logs_go -> origin/csl/where_did_the_logs_go 2025-04-25T04:11:37.3646488Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-04-25T04:11:37.3646986Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-04-25T04:11:37.3647488Z * [new branch] d4l3k/fsdp_wait -> origin/d4l3k/fsdp_wait 2025-04-25T04:11:37.3647996Z * [new branch] d4l3k/queue_block -> origin/d4l3k/queue_block 2025-04-25T04:11:37.3648486Z * [new branch] d4l3k/reducer_checks -> origin/d4l3k/reducer_checks 2025-04-25T04:11:37.3649034Z * [new branch] d4l3k/tcpstore_take_over -> origin/d4l3k/tcpstore_take_over 2025-04-25T04:11:37.3649610Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-04-25T04:11:37.3650753Z * [new branch] desertfire/torchgen_support_default_arg -> origin/desertfire/torchgen_support_default_arg 2025-04-25T04:11:37.3651512Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-04-25T04:11:37.3652135Z * [new branch] desertfire/update_hf_pin -> origin/desertfire/update_hf_pin 2025-04-25T04:11:37.3652698Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-04-25T04:11:37.3653277Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-04-25T04:11:37.3653822Z * [new branch] dev/joona/cachingkey -> origin/dev/joona/cachingkey 2025-04-25T04:11:37.3654372Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-04-25T04:11:37.3654944Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-04-25T04:11:37.3655502Z * [new branch] dev/joona/mps_linear -> origin/dev/joona/mps_linear 2025-04-25T04:11:37.3655998Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-04-25T04:11:37.3656475Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-04-25T04:11:37.3656939Z * [new branch] disable -> origin/disable 2025-04-25T04:11:37.3657441Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-04-25T04:11:37.3658095Z * [new branch] distributed_checkpointing_e2e_tests -> origin/distributed_checkpointing_e2e_tests 2025-04-25T04:11:37.4038858Z * [new branch] divup -> origin/divup 2025-04-25T04:11:37.4039323Z * [new branch] dropout-eval -> origin/dropout-eval 2025-04-25T04:11:37.4039832Z * [new branch] dtensor_inputoutput -> origin/dtensor_inputoutput 2025-04-25T04:11:37.4040342Z * [new branch] dtensor_select -> origin/dtensor_select 2025-04-25T04:11:37.4040802Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-04-25T04:11:37.4041347Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-04-25T04:11:37.4041929Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-04-25T04:11:37.4042494Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-04-25T04:11:37.4043067Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-04-25T04:11:37.4043820Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-04-25T04:11:37.4044403Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-04-25T04:11:37.4044920Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-04-25T04:11:37.4045384Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-04-25T04:11:37.4045829Z * [new branch] eqy-patch-20 -> origin/eqy-patch-20 2025-04-25T04:11:37.4046335Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-04-25T04:11:37.4046770Z * [new branch] eqy-patch-5 -> origin/eqy-patch-5 2025-04-25T04:11:37.4047214Z * [new branch] eqy-patch-6 -> origin/eqy-patch-6 2025-04-25T04:11:37.4047664Z * [new branch] eqy-patch-7 -> origin/eqy-patch-7 2025-04-25T04:11:37.4048183Z * [new branch] eqy-patch-8 -> origin/eqy-patch-8 2025-04-25T04:11:37.4048804Z * [new branch] error-when-setattr-over-cls-attr -> origin/error-when-setattr-over-cls-attr 2025-04-25T04:11:37.4049474Z * [new branch] et_pin_bump -> origin/et_pin_bump 2025-04-25T04:11:37.4050060Z * [new branch] exclamaforte/aten-convolution-out -> origin/exclamaforte/aten-convolution-out 2025-04-25T04:11:37.4050787Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-04-25T04:11:37.4051503Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-04-25T04:11:37.4052143Z * [new branch] exclamaforte/fix-135998 -> origin/exclamaforte/fix-135998 2025-04-25T04:11:37.4052795Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-04-25T04:11:37.4053615Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-04-25T04:11:37.4054336Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-04-25T04:11:37.4054952Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-04-25T04:11:37.4055634Z * [new branch] exclamaforte/heuristic-choices-2 -> origin/exclamaforte/heuristic-choices-2 2025-04-25T04:11:37.4056242Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-04-25T04:11:37.4056891Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-04-25T04:11:37.4057598Z * [new branch] exclamaforte/remove-desc-names -> origin/exclamaforte/remove-desc-names 2025-04-25T04:11:37.4058259Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-04-25T04:11:37.4058952Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-04-25T04:11:37.4059493Z * [new branch] exec -> origin/exec 2025-04-25T04:11:37.4059980Z * [new branch] exlamaforte/fix-mm-log -> origin/exlamaforte/fix-mm-log 2025-04-25T04:11:37.4060531Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-04-25T04:11:37.4061034Z * [new branch] export-D50544876 -> origin/export-D50544876 2025-04-25T04:11:37.4061530Z * [new branch] export-D51032385 -> origin/export-D51032385 2025-04-25T04:11:37.4061995Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-04-25T04:11:37.4062474Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-04-25T04:11:37.4063038Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-04-25T04:11:37.4063503Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-04-25T04:11:37.4063986Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-04-25T04:11:37.4459522Z * [new branch] export-D69361235 -> origin/export-D69361235 2025-04-25T04:11:37.4460035Z * [new branch] export-D69994481 -> origin/export-D69994481 2025-04-25T04:11:37.4460510Z * [new branch] export-D70193972 -> origin/export-D70193972 2025-04-25T04:11:37.4460981Z * [new branch] export-D71081192 -> origin/export-D71081192 2025-04-25T04:11:37.4461458Z * [new branch] export-D71229547 -> origin/export-D71229547 2025-04-25T04:11:37.4461925Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-04-25T04:11:37.4462411Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-04-25T04:11:37.4462922Z * [new branch] export-D71522032 -> origin/export-D71522032 2025-04-25T04:11:37.4463390Z * [new branch] export-D71692245 -> origin/export-D71692245 2025-04-25T04:11:37.4463982Z * [new branch] export-D71769231 -> origin/export-D71769231 2025-04-25T04:11:37.4464447Z * [new branch] export-D72084111 -> origin/export-D72084111 2025-04-25T04:11:37.4464939Z * [new branch] export-D72190746 -> origin/export-D72190746 2025-04-25T04:11:37.4465416Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-04-25T04:11:37.4465886Z * [new branch] export-D72486930 -> origin/export-D72486930 2025-04-25T04:11:37.4466362Z * [new branch] export-D72609835 -> origin/export-D72609835 2025-04-25T04:11:37.4466833Z * [new branch] export-D72761995 -> origin/export-D72761995 2025-04-25T04:11:37.4467312Z * [new branch] export-D72762767 -> origin/export-D72762767 2025-04-25T04:11:37.4467792Z * [new branch] export-D72789690 -> origin/export-D72789690 2025-04-25T04:11:37.4468257Z * [new branch] export-D72978020 -> origin/export-D72978020 2025-04-25T04:11:37.4468736Z * [new branch] export-D73008663 -> origin/export-D73008663 2025-04-25T04:11:37.4469200Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-04-25T04:11:37.4469685Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-04-25T04:11:37.4470290Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-04-25T04:11:37.4470877Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-04-25T04:11:37.4471339Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-04-25T04:11:37.4471817Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-04-25T04:11:37.4472228Z * [new branch] fca -> origin/fca 2025-04-25T04:11:37.4472656Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-04-25T04:11:37.4473076Z * [new branch] fca5 -> origin/fca5 2025-04-25T04:11:37.4473573Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-04-25T04:11:37.4474280Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-04-25T04:11:37.4475113Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-04-25T04:11:37.4475788Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-04-25T04:11:37.4476400Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-04-25T04:11:37.4476880Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-04-25T04:11:37.4477386Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-04-25T04:11:37.4477888Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-04-25T04:11:37.4478448Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-04-25T04:11:37.4479015Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-04-25T04:11:37.4479527Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-04-25T04:11:37.4480055Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-04-25T04:11:37.4480582Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-04-25T04:11:37.4481145Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-04-25T04:11:37.4481766Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-04-25T04:11:37.4482222Z * [new branch] fix -> origin/fix 2025-04-25T04:11:37.4482645Z * [new branch] fix-149722 -> origin/fix-149722 2025-04-25T04:11:37.4483156Z * [new branch] fix-cat-lowering-uint8-hack -> origin/fix-cat-lowering-uint8-hack 2025-04-25T04:11:37.4907733Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-04-25T04:11:37.4908403Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-04-25T04:11:37.4908895Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-04-25T04:11:37.4909375Z * [new branch] fix-links -> origin/fix-links 2025-04-25T04:11:37.4909853Z * [new branch] fix-qat-derived-qspec -> origin/fix-qat-derived-qspec 2025-04-25T04:11:37.4910399Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-04-25T04:11:37.4910929Z * [new branch] fix_avoid_record_stream -> origin/fix_avoid_record_stream 2025-04-25T04:11:37.4911491Z * [new branch] fix_e2e_fsdp_tp_pairwise -> origin/fix_e2e_fsdp_tp_pairwise 2025-04-25T04:11:37.4912020Z * [new branch] fix_partial -> origin/fix_partial 2025-04-25T04:11:37.4912469Z * [new branch] fixes-triage -> origin/fixes-triage 2025-04-25T04:11:37.4912911Z * [new branch] flash -> origin/flash 2025-04-25T04:11:37.4913342Z * [new branch] flat_apply -> origin/flat_apply 2025-04-25T04:11:37.4913860Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-04-25T04:11:37.4914484Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-04-25T04:11:37.4915189Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-04-25T04:11:37.4915951Z * [new branch] fmassa/update_pointwise_shard_strategy -> origin/fmassa/update_pointwise_shard_strategy 2025-04-25T04:11:37.4916533Z * [new branch] foo -> origin/foo 2025-04-25T04:11:37.4916976Z * [new branch] fp8_fix -> origin/fp8_fix 2025-04-25T04:11:37.4917468Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-04-25T04:11:37.4917936Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-04-25T04:11:37.4918398Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-04-25T04:11:37.4918971Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-04-25T04:11:37.4919439Z * [new branch] functorch_scan -> origin/functorch_scan 2025-04-25T04:11:37.4919912Z * [new branch] fused_qkv -> origin/fused_qkv 2025-04-25T04:11:37.4920325Z * [new branch] fx_cpp -> origin/fx_cpp 2025-04-25T04:11:37.4920764Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-04-25T04:11:37.4921177Z * [new branch] gelu-3 -> origin/gelu-3 2025-04-25T04:11:37.4921667Z * [new branch] get_state_dict_forward_fix -> origin/get_state_dict_forward_fix 2025-04-25T04:11:37.4922192Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-04-25T04:11:37.4922704Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-04-25T04:11:37.4923218Z * [new branch] gh/CaoE/47/base -> origin/gh/CaoE/47/base 2025-04-25T04:11:37.4923672Z * [new branch] gh/CaoE/47/head -> origin/gh/CaoE/47/head 2025-04-25T04:11:37.4924238Z * [new branch] gh/CaoE/47/orig -> origin/gh/CaoE/47/orig 2025-04-25T04:11:37.4924704Z * [new branch] gh/CaoE/48/base -> origin/gh/CaoE/48/base 2025-04-25T04:11:37.4925150Z * [new branch] gh/CaoE/48/head -> origin/gh/CaoE/48/head 2025-04-25T04:11:37.4925609Z * [new branch] gh/CaoE/48/orig -> origin/gh/CaoE/48/orig 2025-04-25T04:11:37.4926113Z * [new branch] gh/ColinPeppler/63/base -> origin/gh/ColinPeppler/63/base 2025-04-25T04:11:37.4926742Z * [new branch] gh/ColinPeppler/63/head -> origin/gh/ColinPeppler/63/head 2025-04-25T04:11:37.4927294Z * [new branch] gh/ColinPeppler/63/orig -> origin/gh/ColinPeppler/63/orig 2025-04-25T04:11:37.4927860Z * [new branch] gh/ColinPeppler/64/base -> origin/gh/ColinPeppler/64/base 2025-04-25T04:11:37.4928489Z * [new branch] gh/ColinPeppler/64/head -> origin/gh/ColinPeppler/64/head 2025-04-25T04:11:37.4929041Z * [new branch] gh/ColinPeppler/64/orig -> origin/gh/ColinPeppler/64/orig 2025-04-25T04:11:37.4929591Z * [new branch] gh/ColinPeppler/65/base -> origin/gh/ColinPeppler/65/base 2025-04-25T04:11:37.4930136Z * [new branch] gh/ColinPeppler/65/head -> origin/gh/ColinPeppler/65/head 2025-04-25T04:11:37.4930793Z * [new branch] gh/ColinPeppler/65/orig -> origin/gh/ColinPeppler/65/orig 2025-04-25T04:11:37.4931351Z * [new branch] gh/ColinPeppler/66/base -> origin/gh/ColinPeppler/66/base 2025-04-25T04:11:37.4931896Z * [new branch] gh/ColinPeppler/66/head -> origin/gh/ColinPeppler/66/head 2025-04-25T04:11:37.4932458Z * [new branch] gh/ColinPeppler/66/orig -> origin/gh/ColinPeppler/66/orig 2025-04-25T04:11:37.5368781Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-04-25T04:11:37.5369488Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-04-25T04:11:37.5370040Z * [new branch] gh/EikanWang/79/base -> origin/gh/EikanWang/79/base 2025-04-25T04:11:37.5370642Z * [new branch] gh/EikanWang/79/head -> origin/gh/EikanWang/79/head 2025-04-25T04:11:37.5371231Z * [new branch] gh/EikanWang/79/orig -> origin/gh/EikanWang/79/orig 2025-04-25T04:11:37.5371836Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-04-25T04:11:37.5372486Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-04-25T04:11:37.5373071Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-04-25T04:11:37.5373881Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-04-25T04:11:37.5374468Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-04-25T04:11:37.5375058Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-04-25T04:11:37.5375647Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-04-25T04:11:37.5376238Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-04-25T04:11:37.5376828Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-04-25T04:11:37.5377388Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-04-25T04:11:37.5377960Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-04-25T04:11:37.5378481Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-04-25T04:11:37.5379045Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-04-25T04:11:37.5379612Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-04-25T04:11:37.5380271Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-04-25T04:11:37.5380853Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-04-25T04:11:37.5381410Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-04-25T04:11:37.5381985Z * [new branch] gh/H-Huang/168/base -> origin/gh/H-Huang/168/base 2025-04-25T04:11:37.5382532Z * [new branch] gh/H-Huang/168/head -> origin/gh/H-Huang/168/head 2025-04-25T04:11:37.5383095Z * [new branch] gh/H-Huang/168/orig -> origin/gh/H-Huang/168/orig 2025-04-25T04:11:37.5383693Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-04-25T04:11:37.5384265Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-04-25T04:11:37.5384829Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-04-25T04:11:37.5385355Z * [new branch] gh/H-Huang/173/base -> origin/gh/H-Huang/173/base 2025-04-25T04:11:37.5385915Z * [new branch] gh/H-Huang/173/head -> origin/gh/H-Huang/173/head 2025-04-25T04:11:37.5386490Z * [new branch] gh/H-Huang/173/orig -> origin/gh/H-Huang/173/orig 2025-04-25T04:11:37.5387050Z * [new branch] gh/H-Huang/174/base -> origin/gh/H-Huang/174/base 2025-04-25T04:11:37.5387611Z * [new branch] gh/H-Huang/174/head -> origin/gh/H-Huang/174/head 2025-04-25T04:11:37.5388136Z * [new branch] gh/H-Huang/174/orig -> origin/gh/H-Huang/174/orig 2025-04-25T04:11:37.5388701Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-04-25T04:11:37.5389278Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-04-25T04:11:37.5389834Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-04-25T04:11:37.5390404Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-04-25T04:11:37.5390914Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-04-25T04:11:37.5391395Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-04-25T04:11:37.5391881Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-04-25T04:11:37.5392354Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-04-25T04:11:37.5392837Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-04-25T04:11:37.5393455Z * [new branch] gh/IvanKobzarev/100/base -> origin/gh/IvanKobzarev/100/base 2025-04-25T04:11:37.5394027Z * [new branch] gh/IvanKobzarev/100/head -> origin/gh/IvanKobzarev/100/head 2025-04-25T04:11:37.5394609Z * [new branch] gh/IvanKobzarev/100/orig -> origin/gh/IvanKobzarev/100/orig 2025-04-25T04:11:37.5395164Z * [new branch] gh/IvanKobzarev/105/base -> origin/gh/IvanKobzarev/105/base 2025-04-25T04:11:37.5807476Z * [new branch] gh/IvanKobzarev/105/head -> origin/gh/IvanKobzarev/105/head 2025-04-25T04:11:37.5808110Z * [new branch] gh/IvanKobzarev/105/orig -> origin/gh/IvanKobzarev/105/orig 2025-04-25T04:11:37.5808665Z * [new branch] gh/IvanKobzarev/106/base -> origin/gh/IvanKobzarev/106/base 2025-04-25T04:11:37.5809229Z * [new branch] gh/IvanKobzarev/106/head -> origin/gh/IvanKobzarev/106/head 2025-04-25T04:11:37.5809843Z * [new branch] gh/IvanKobzarev/106/orig -> origin/gh/IvanKobzarev/106/orig 2025-04-25T04:11:37.5810500Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-04-25T04:11:37.5811216Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-04-25T04:11:37.5811768Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-04-25T04:11:37.5812330Z * [new branch] gh/IvanKobzarev/108/base -> origin/gh/IvanKobzarev/108/base 2025-04-25T04:11:37.5812872Z * [new branch] gh/IvanKobzarev/108/head -> origin/gh/IvanKobzarev/108/head 2025-04-25T04:11:37.5813430Z * [new branch] gh/IvanKobzarev/108/orig -> origin/gh/IvanKobzarev/108/orig 2025-04-25T04:11:37.5813997Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-04-25T04:11:37.5814550Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-04-25T04:11:37.5815112Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-04-25T04:11:37.5815657Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-04-25T04:11:37.5816221Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-04-25T04:11:37.5816773Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-04-25T04:11:37.5817312Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-04-25T04:11:37.5817866Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-04-25T04:11:37.5818406Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-04-25T04:11:37.5818959Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-04-25T04:11:37.5819502Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-04-25T04:11:37.5820051Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-04-25T04:11:37.5820600Z * [new branch] gh/IvanKobzarev/94/base -> origin/gh/IvanKobzarev/94/base 2025-04-25T04:11:37.5821133Z * [new branch] gh/IvanKobzarev/94/head -> origin/gh/IvanKobzarev/94/head 2025-04-25T04:11:37.5821682Z * [new branch] gh/IvanKobzarev/94/orig -> origin/gh/IvanKobzarev/94/orig 2025-04-25T04:11:37.5822218Z * [new branch] gh/IvanKobzarev/98/base -> origin/gh/IvanKobzarev/98/base 2025-04-25T04:11:37.5822764Z * [new branch] gh/IvanKobzarev/98/head -> origin/gh/IvanKobzarev/98/head 2025-04-25T04:11:37.5823310Z * [new branch] gh/IvanKobzarev/98/orig -> origin/gh/IvanKobzarev/98/orig 2025-04-25T04:11:37.5823827Z * [new branch] gh/Lezcano/243/base -> origin/gh/Lezcano/243/base 2025-04-25T04:11:37.5824429Z * [new branch] gh/Lezcano/243/head -> origin/gh/Lezcano/243/head 2025-04-25T04:11:37.5824921Z * [new branch] gh/Lezcano/243/orig -> origin/gh/Lezcano/243/orig 2025-04-25T04:11:37.5825468Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-04-25T04:11:37.5826074Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-04-25T04:11:37.5826690Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-04-25T04:11:37.5827235Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-04-25T04:11:37.5827768Z * [new branch] gh/NikhilAPatel/3/base -> origin/gh/NikhilAPatel/3/base 2025-04-25T04:11:37.5828310Z * [new branch] gh/NikhilAPatel/3/head -> origin/gh/NikhilAPatel/3/head 2025-04-25T04:11:37.5828861Z * [new branch] gh/NikhilAPatel/3/orig -> origin/gh/NikhilAPatel/3/orig 2025-04-25T04:11:37.5829388Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-04-25T04:11:37.5830015Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-04-25T04:11:37.5830549Z * [new branch] gh/NikhilAPatel/5/base -> origin/gh/NikhilAPatel/5/base 2025-04-25T04:11:37.5831088Z * [new branch] gh/NikhilAPatel/5/head -> origin/gh/NikhilAPatel/5/head 2025-04-25T04:11:37.5831635Z * [new branch] gh/NikhilAPatel/5/orig -> origin/gh/NikhilAPatel/5/orig 2025-04-25T04:11:37.5832161Z * [new branch] gh/NikhilAPatel/6/base -> origin/gh/NikhilAPatel/6/base 2025-04-25T04:11:37.6244715Z * [new branch] gh/NikhilAPatel/6/head -> origin/gh/NikhilAPatel/6/head 2025-04-25T04:11:37.6245310Z * [new branch] gh/NikhilAPatel/6/orig -> origin/gh/NikhilAPatel/6/orig 2025-04-25T04:11:37.6245901Z * [new branch] gh/NikhilAPatel/7/base -> origin/gh/NikhilAPatel/7/base 2025-04-25T04:11:37.6246519Z * [new branch] gh/NikhilAPatel/7/head -> origin/gh/NikhilAPatel/7/head 2025-04-25T04:11:37.6247068Z * [new branch] gh/NikhilAPatel/7/orig -> origin/gh/NikhilAPatel/7/orig 2025-04-25T04:11:37.6247623Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-04-25T04:11:37.6248163Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-04-25T04:11:37.6248714Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-04-25T04:11:37.6250404Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-04-25T04:11:37.6250940Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-04-25T04:11:37.6251495Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-04-25T04:11:37.6252025Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-04-25T04:11:37.6252570Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-04-25T04:11:37.6253108Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-04-25T04:11:37.6253638Z * [new branch] gh/PaulZhang12/10/base -> origin/gh/PaulZhang12/10/base 2025-04-25T04:11:37.6254176Z * [new branch] gh/PaulZhang12/10/head -> origin/gh/PaulZhang12/10/head 2025-04-25T04:11:37.6254701Z * [new branch] gh/PaulZhang12/10/orig -> origin/gh/PaulZhang12/10/orig 2025-04-25T04:11:37.6255235Z * [new branch] gh/PaulZhang12/11/base -> origin/gh/PaulZhang12/11/base 2025-04-25T04:11:37.6255768Z * [new branch] gh/PaulZhang12/11/head -> origin/gh/PaulZhang12/11/head 2025-04-25T04:11:37.6257013Z * [new branch] gh/PaulZhang12/11/orig -> origin/gh/PaulZhang12/11/orig 2025-04-25T04:11:37.6257560Z * [new branch] gh/PaulZhang12/12/base -> origin/gh/PaulZhang12/12/base 2025-04-25T04:11:37.6258092Z * [new branch] gh/PaulZhang12/12/head -> origin/gh/PaulZhang12/12/head 2025-04-25T04:11:37.6258634Z * [new branch] gh/PaulZhang12/2/base -> origin/gh/PaulZhang12/2/base 2025-04-25T04:11:37.6259167Z * [new branch] gh/PaulZhang12/2/head -> origin/gh/PaulZhang12/2/head 2025-04-25T04:11:37.6259682Z * [new branch] gh/PaulZhang12/2/orig -> origin/gh/PaulZhang12/2/orig 2025-04-25T04:11:37.6261490Z * [new branch] gh/PaulZhang12/3/base -> origin/gh/PaulZhang12/3/base 2025-04-25T04:11:37.6262011Z * [new branch] gh/PaulZhang12/3/head -> origin/gh/PaulZhang12/3/head 2025-04-25T04:11:37.6262548Z * [new branch] gh/PaulZhang12/3/orig -> origin/gh/PaulZhang12/3/orig 2025-04-25T04:11:37.6263061Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-04-25T04:11:37.6264104Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-04-25T04:11:37.6264659Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-04-25T04:11:37.6265167Z * [new branch] gh/PaulZhang12/5/base -> origin/gh/PaulZhang12/5/base 2025-04-25T04:11:37.6265685Z * [new branch] gh/PaulZhang12/5/head -> origin/gh/PaulZhang12/5/head 2025-04-25T04:11:37.6266191Z * [new branch] gh/PaulZhang12/5/orig -> origin/gh/PaulZhang12/5/orig 2025-04-25T04:11:37.6266714Z * [new branch] gh/PaulZhang12/6/base -> origin/gh/PaulZhang12/6/base 2025-04-25T04:11:37.6267227Z * [new branch] gh/PaulZhang12/6/head -> origin/gh/PaulZhang12/6/head 2025-04-25T04:11:37.6267740Z * [new branch] gh/PaulZhang12/6/orig -> origin/gh/PaulZhang12/6/orig 2025-04-25T04:11:37.6268249Z * [new branch] gh/PaulZhang12/7/base -> origin/gh/PaulZhang12/7/base 2025-04-25T04:11:37.6268760Z * [new branch] gh/PaulZhang12/7/head -> origin/gh/PaulZhang12/7/head 2025-04-25T04:11:37.6269270Z * [new branch] gh/PaulZhang12/7/orig -> origin/gh/PaulZhang12/7/orig 2025-04-25T04:11:37.6269777Z * [new branch] gh/PaulZhang12/8/base -> origin/gh/PaulZhang12/8/base 2025-04-25T04:11:37.6270281Z * [new branch] gh/PaulZhang12/8/head -> origin/gh/PaulZhang12/8/head 2025-04-25T04:11:37.6270794Z * [new branch] gh/PaulZhang12/8/orig -> origin/gh/PaulZhang12/8/orig 2025-04-25T04:11:37.6271299Z * [new branch] gh/PaulZhang12/9/base -> origin/gh/PaulZhang12/9/base 2025-04-25T04:11:37.6271803Z * [new branch] gh/PaulZhang12/9/head -> origin/gh/PaulZhang12/9/head 2025-04-25T04:11:37.6683066Z * [new branch] gh/PaulZhang12/9/orig -> origin/gh/PaulZhang12/9/orig 2025-04-25T04:11:37.6683680Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-04-25T04:11:37.6684247Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-04-25T04:11:37.6684773Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-04-25T04:11:37.6686131Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-04-25T04:11:37.6686711Z * [new branch] gh/StrongerXi/100/base -> origin/gh/StrongerXi/100/base 2025-04-25T04:11:37.6687226Z * [new branch] gh/StrongerXi/100/head -> origin/gh/StrongerXi/100/head 2025-04-25T04:11:37.6687744Z * [new branch] gh/StrongerXi/100/orig -> origin/gh/StrongerXi/100/orig 2025-04-25T04:11:37.6688434Z * [new branch] gh/StrongerXi/101/base -> origin/gh/StrongerXi/101/base 2025-04-25T04:11:37.6688966Z * [new branch] gh/StrongerXi/101/head -> origin/gh/StrongerXi/101/head 2025-04-25T04:11:37.6689493Z * [new branch] gh/StrongerXi/101/orig -> origin/gh/StrongerXi/101/orig 2025-04-25T04:11:37.6690004Z * [new branch] gh/StrongerXi/102/base -> origin/gh/StrongerXi/102/base 2025-04-25T04:11:37.6691035Z * [new branch] gh/StrongerXi/102/head -> origin/gh/StrongerXi/102/head 2025-04-25T04:11:37.6691881Z * [new branch] gh/StrongerXi/102/orig -> origin/gh/StrongerXi/102/orig 2025-04-25T04:11:37.6692405Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-04-25T04:11:37.6692928Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-04-25T04:11:37.6693442Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-04-25T04:11:37.6693965Z * [new branch] gh/StrongerXi/104/base -> origin/gh/StrongerXi/104/base 2025-04-25T04:11:37.6694478Z * [new branch] gh/StrongerXi/104/head -> origin/gh/StrongerXi/104/head 2025-04-25T04:11:37.6695107Z * [new branch] gh/StrongerXi/104/orig -> origin/gh/StrongerXi/104/orig 2025-04-25T04:11:37.6695637Z * [new branch] gh/StrongerXi/105/base -> origin/gh/StrongerXi/105/base 2025-04-25T04:11:37.6696154Z * [new branch] gh/StrongerXi/105/head -> origin/gh/StrongerXi/105/head 2025-04-25T04:11:37.6697481Z * [new branch] gh/StrongerXi/105/orig -> origin/gh/StrongerXi/105/orig 2025-04-25T04:11:37.6697992Z * [new branch] gh/StrongerXi/63/base -> origin/gh/StrongerXi/63/base 2025-04-25T04:11:37.6698507Z * [new branch] gh/StrongerXi/63/head -> origin/gh/StrongerXi/63/head 2025-04-25T04:11:37.6699025Z * [new branch] gh/StrongerXi/63/orig -> origin/gh/StrongerXi/63/orig 2025-04-25T04:11:37.6699536Z * [new branch] gh/StrongerXi/67/base -> origin/gh/StrongerXi/67/base 2025-04-25T04:11:37.6700050Z * [new branch] gh/StrongerXi/67/head -> origin/gh/StrongerXi/67/head 2025-04-25T04:11:37.6700549Z * [new branch] gh/StrongerXi/67/orig -> origin/gh/StrongerXi/67/orig 2025-04-25T04:11:37.6701058Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-04-25T04:11:37.6701563Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-04-25T04:11:37.6702852Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-04-25T04:11:37.6703373Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-04-25T04:11:37.6703878Z * [new branch] gh/StrongerXi/94/base -> origin/gh/StrongerXi/94/base 2025-04-25T04:11:37.6704410Z * [new branch] gh/StrongerXi/94/head -> origin/gh/StrongerXi/94/head 2025-04-25T04:11:37.6704917Z * [new branch] gh/StrongerXi/94/orig -> origin/gh/StrongerXi/94/orig 2025-04-25T04:11:37.6705439Z * [new branch] gh/StrongerXi/95/base -> origin/gh/StrongerXi/95/base 2025-04-25T04:11:37.6705941Z * [new branch] gh/StrongerXi/95/head -> origin/gh/StrongerXi/95/head 2025-04-25T04:11:37.6706437Z * [new branch] gh/StrongerXi/95/orig -> origin/gh/StrongerXi/95/orig 2025-04-25T04:11:37.6706948Z * [new branch] gh/StrongerXi/96/base -> origin/gh/StrongerXi/96/base 2025-04-25T04:11:37.6707449Z * [new branch] gh/StrongerXi/96/head -> origin/gh/StrongerXi/96/head 2025-04-25T04:11:37.6708738Z * [new branch] gh/StrongerXi/96/orig -> origin/gh/StrongerXi/96/orig 2025-04-25T04:11:37.6709246Z * [new branch] gh/StrongerXi/97/base -> origin/gh/StrongerXi/97/base 2025-04-25T04:11:37.6709872Z * [new branch] gh/StrongerXi/97/head -> origin/gh/StrongerXi/97/head 2025-04-25T04:11:37.6710396Z * [new branch] gh/StrongerXi/97/orig -> origin/gh/StrongerXi/97/orig 2025-04-25T04:11:37.6710895Z * [new branch] gh/StrongerXi/98/base -> origin/gh/StrongerXi/98/base 2025-04-25T04:11:37.7134203Z * [new branch] gh/StrongerXi/98/head -> origin/gh/StrongerXi/98/head 2025-04-25T04:11:37.7134773Z * [new branch] gh/StrongerXi/98/orig -> origin/gh/StrongerXi/98/orig 2025-04-25T04:11:37.7135286Z * [new branch] gh/StrongerXi/99/base -> origin/gh/StrongerXi/99/base 2025-04-25T04:11:37.7135807Z * [new branch] gh/StrongerXi/99/head -> origin/gh/StrongerXi/99/head 2025-04-25T04:11:37.7136308Z * [new branch] gh/StrongerXi/99/orig -> origin/gh/StrongerXi/99/orig 2025-04-25T04:11:37.7136840Z * [new branch] gh/Xia-Weiwen/33/base -> origin/gh/Xia-Weiwen/33/base 2025-04-25T04:11:37.7137337Z * [new branch] gh/Xia-Weiwen/33/head -> origin/gh/Xia-Weiwen/33/head 2025-04-25T04:11:37.7137996Z * [new branch] gh/Xia-Weiwen/33/orig -> origin/gh/Xia-Weiwen/33/orig 2025-04-25T04:11:37.7138492Z * [new branch] gh/Xia-Weiwen/34/base -> origin/gh/Xia-Weiwen/34/base 2025-04-25T04:11:37.7138977Z * [new branch] gh/Xia-Weiwen/34/head -> origin/gh/Xia-Weiwen/34/head 2025-04-25T04:11:37.7139479Z * [new branch] gh/Xia-Weiwen/34/orig -> origin/gh/Xia-Weiwen/34/orig 2025-04-25T04:11:37.7139966Z * [new branch] gh/Xia-Weiwen/35/base -> origin/gh/Xia-Weiwen/35/base 2025-04-25T04:11:37.7140466Z * [new branch] gh/Xia-Weiwen/35/head -> origin/gh/Xia-Weiwen/35/head 2025-04-25T04:11:37.7140963Z * [new branch] gh/Xia-Weiwen/35/orig -> origin/gh/Xia-Weiwen/35/orig 2025-04-25T04:11:37.7141456Z * [new branch] gh/Xia-Weiwen/36/base -> origin/gh/Xia-Weiwen/36/base 2025-04-25T04:11:37.7141946Z * [new branch] gh/Xia-Weiwen/36/head -> origin/gh/Xia-Weiwen/36/head 2025-04-25T04:11:37.7142436Z * [new branch] gh/Xia-Weiwen/36/orig -> origin/gh/Xia-Weiwen/36/orig 2025-04-25T04:11:37.7142926Z * [new branch] gh/Xia-Weiwen/37/base -> origin/gh/Xia-Weiwen/37/base 2025-04-25T04:11:37.7143425Z * [new branch] gh/Xia-Weiwen/37/head -> origin/gh/Xia-Weiwen/37/head 2025-04-25T04:11:37.7143906Z * [new branch] gh/Xia-Weiwen/37/orig -> origin/gh/Xia-Weiwen/37/orig 2025-04-25T04:11:37.7144430Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-04-25T04:11:37.7144917Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-04-25T04:11:37.7145411Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-04-25T04:11:37.7145894Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-04-25T04:11:37.7146381Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-04-25T04:11:37.7146864Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-04-25T04:11:37.7147341Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-04-25T04:11:37.7147826Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-04-25T04:11:37.7148307Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-04-25T04:11:37.7148784Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-04-25T04:11:37.7149269Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-04-25T04:11:37.7149850Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-04-25T04:11:37.7150336Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-04-25T04:11:37.7150828Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-04-25T04:11:37.7151305Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-04-25T04:11:37.7151804Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-04-25T04:11:37.7152284Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-04-25T04:11:37.7152777Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-04-25T04:11:37.7153263Z * [new branch] gh/XilunWu/122/base -> origin/gh/XilunWu/122/base 2025-04-25T04:11:37.7153732Z * [new branch] gh/XilunWu/122/head -> origin/gh/XilunWu/122/head 2025-04-25T04:11:37.7154218Z * [new branch] gh/XilunWu/122/orig -> origin/gh/XilunWu/122/orig 2025-04-25T04:11:37.7154694Z * [new branch] gh/XilunWu/125/base -> origin/gh/XilunWu/125/base 2025-04-25T04:11:37.7155270Z * [new branch] gh/XilunWu/125/head -> origin/gh/XilunWu/125/head 2025-04-25T04:11:37.7155746Z * [new branch] gh/XilunWu/125/orig -> origin/gh/XilunWu/125/orig 2025-04-25T04:11:37.7156230Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-04-25T04:11:37.7156712Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-04-25T04:11:37.7157188Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-04-25T04:11:37.7558007Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-04-25T04:11:37.7558522Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-04-25T04:11:37.7559044Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-04-25T04:11:37.7559530Z * [new branch] gh/XilunWu/128/base -> origin/gh/XilunWu/128/base 2025-04-25T04:11:37.7560020Z * [new branch] gh/XilunWu/128/head -> origin/gh/XilunWu/128/head 2025-04-25T04:11:37.7560507Z * [new branch] gh/XilunWu/128/orig -> origin/gh/XilunWu/128/orig 2025-04-25T04:11:37.7560977Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-04-25T04:11:37.7561514Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-04-25T04:11:37.7562046Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-04-25T04:11:37.7562517Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-04-25T04:11:37.7563006Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-04-25T04:11:37.7563474Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-04-25T04:11:37.7563983Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-04-25T04:11:37.7564474Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-04-25T04:11:37.7564946Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-04-25T04:11:37.7565434Z * [new branch] gh/XilunWu/132/base -> origin/gh/XilunWu/132/base 2025-04-25T04:11:37.7565911Z * [new branch] gh/XilunWu/132/head -> origin/gh/XilunWu/132/head 2025-04-25T04:11:37.7566429Z * [new branch] gh/XilunWu/132/orig -> origin/gh/XilunWu/132/orig 2025-04-25T04:11:37.7566922Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-04-25T04:11:37.7567602Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-04-25T04:11:37.7568145Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-04-25T04:11:37.7568628Z * [new branch] gh/XilunWu/134/base -> origin/gh/XilunWu/134/base 2025-04-25T04:11:37.7569120Z * [new branch] gh/XilunWu/134/head -> origin/gh/XilunWu/134/head 2025-04-25T04:11:37.7569617Z * [new branch] gh/XilunWu/134/orig -> origin/gh/XilunWu/134/orig 2025-04-25T04:11:37.7570089Z * [new branch] gh/XilunWu/135/base -> origin/gh/XilunWu/135/base 2025-04-25T04:11:37.7570576Z * [new branch] gh/XilunWu/135/head -> origin/gh/XilunWu/135/head 2025-04-25T04:11:37.7599295Z * [new branch] gh/XilunWu/135/orig -> origin/gh/XilunWu/135/orig 2025-04-25T04:11:37.7599949Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-04-25T04:11:37.7600463Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-04-25T04:11:37.7600947Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-04-25T04:11:37.7601588Z * [new branch] gh/XilunWu/137/base -> origin/gh/XilunWu/137/base 2025-04-25T04:11:37.7602066Z * [new branch] gh/XilunWu/137/head -> origin/gh/XilunWu/137/head 2025-04-25T04:11:37.7602615Z * [new branch] gh/XilunWu/137/orig -> origin/gh/XilunWu/137/orig 2025-04-25T04:11:37.7603141Z * [new branch] gh/XilunWu/138/base -> origin/gh/XilunWu/138/base 2025-04-25T04:11:37.7603616Z * [new branch] gh/XilunWu/138/head -> origin/gh/XilunWu/138/head 2025-04-25T04:11:37.7604098Z * [new branch] gh/XilunWu/138/orig -> origin/gh/XilunWu/138/orig 2025-04-25T04:11:37.7604595Z * [new branch] gh/XuehaiPan/1/base -> origin/gh/XuehaiPan/1/base 2025-04-25T04:11:37.7605102Z * [new branch] gh/XuehaiPan/1/head -> origin/gh/XuehaiPan/1/head 2025-04-25T04:11:37.7605590Z * [new branch] gh/XuehaiPan/1/orig -> origin/gh/XuehaiPan/1/orig 2025-04-25T04:11:37.7606095Z * [new branch] gh/XuehaiPan/105/base -> origin/gh/XuehaiPan/105/base 2025-04-25T04:11:37.7606687Z * [new branch] gh/XuehaiPan/105/head -> origin/gh/XuehaiPan/105/head 2025-04-25T04:11:37.7607183Z * [new branch] gh/XuehaiPan/105/orig -> origin/gh/XuehaiPan/105/orig 2025-04-25T04:11:37.7607679Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-04-25T04:11:37.7608218Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-04-25T04:11:37.7608758Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-04-25T04:11:37.7609273Z * [new branch] gh/XuehaiPan/13/base -> origin/gh/XuehaiPan/13/base 2025-04-25T04:11:37.7609773Z * [new branch] gh/XuehaiPan/13/head -> origin/gh/XuehaiPan/13/head 2025-04-25T04:11:37.7981451Z * [new branch] gh/XuehaiPan/13/orig -> origin/gh/XuehaiPan/13/orig 2025-04-25T04:11:37.7981961Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-04-25T04:11:37.7982477Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-04-25T04:11:37.7982972Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-04-25T04:11:37.7983479Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-04-25T04:11:37.7984009Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-04-25T04:11:37.7984516Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-04-25T04:11:37.7985156Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-04-25T04:11:37.7985658Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-04-25T04:11:37.7986181Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-04-25T04:11:37.7986697Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-04-25T04:11:37.7987199Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-04-25T04:11:37.7987696Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-04-25T04:11:37.7988196Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-04-25T04:11:37.7988698Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-04-25T04:11:37.7989206Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-04-25T04:11:37.7989714Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-04-25T04:11:37.7990226Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-04-25T04:11:37.7990807Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-04-25T04:11:37.7991325Z * [new branch] gh/XuehaiPan/210/base -> origin/gh/XuehaiPan/210/base 2025-04-25T04:11:37.7991842Z * [new branch] gh/XuehaiPan/210/head -> origin/gh/XuehaiPan/210/head 2025-04-25T04:11:37.7992347Z * [new branch] gh/XuehaiPan/210/orig -> origin/gh/XuehaiPan/210/orig 2025-04-25T04:11:37.7992869Z * [new branch] gh/XuehaiPan/211/base -> origin/gh/XuehaiPan/211/base 2025-04-25T04:11:37.7993373Z * [new branch] gh/XuehaiPan/211/head -> origin/gh/XuehaiPan/211/head 2025-04-25T04:11:37.7993903Z * [new branch] gh/XuehaiPan/211/orig -> origin/gh/XuehaiPan/211/orig 2025-04-25T04:11:37.7994407Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-04-25T04:11:37.7994936Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-04-25T04:11:37.7995456Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-04-25T04:11:37.7995961Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-04-25T04:11:37.7996490Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-04-25T04:11:37.7996995Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-04-25T04:11:37.7997513Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-04-25T04:11:37.7998021Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-04-25T04:11:37.7998534Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-04-25T04:11:37.7999051Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-04-25T04:11:37.7999561Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-04-25T04:11:37.8000071Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-04-25T04:11:37.8000581Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-04-25T04:11:37.8001084Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-04-25T04:11:37.8001593Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-04-25T04:11:37.8002091Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-04-25T04:11:37.8002686Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-04-25T04:11:37.8003204Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-04-25T04:11:37.8003707Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-04-25T04:11:37.8004214Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-04-25T04:11:37.8004719Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-04-25T04:11:37.8398608Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-04-25T04:11:37.8399162Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-04-25T04:11:37.8399671Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-04-25T04:11:37.8400191Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-04-25T04:11:37.8400703Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-04-25T04:11:37.8401218Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-04-25T04:11:37.8401874Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-04-25T04:11:37.8402379Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-04-25T04:11:37.8402883Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-04-25T04:11:37.8403384Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-04-25T04:11:37.8403895Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-04-25T04:11:37.8404406Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-04-25T04:11:37.8404909Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-04-25T04:11:37.8405423Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-04-25T04:11:37.8405923Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-04-25T04:11:37.8406487Z * [new branch] gh/XuehaiPan/239/base -> origin/gh/XuehaiPan/239/base 2025-04-25T04:11:37.8407000Z * [new branch] gh/XuehaiPan/239/head -> origin/gh/XuehaiPan/239/head 2025-04-25T04:11:37.8407496Z * [new branch] gh/XuehaiPan/239/orig -> origin/gh/XuehaiPan/239/orig 2025-04-25T04:11:37.8408004Z * [new branch] gh/XuehaiPan/241/base -> origin/gh/XuehaiPan/241/base 2025-04-25T04:11:37.8408508Z * [new branch] gh/XuehaiPan/241/head -> origin/gh/XuehaiPan/241/head 2025-04-25T04:11:37.8409023Z * [new branch] gh/XuehaiPan/241/orig -> origin/gh/XuehaiPan/241/orig 2025-04-25T04:11:37.8409530Z * [new branch] gh/XuehaiPan/242/base -> origin/gh/XuehaiPan/242/base 2025-04-25T04:11:37.8410046Z * [new branch] gh/XuehaiPan/242/head -> origin/gh/XuehaiPan/242/head 2025-04-25T04:11:37.8410575Z * [new branch] gh/XuehaiPan/242/orig -> origin/gh/XuehaiPan/242/orig 2025-04-25T04:11:37.8411078Z * [new branch] gh/XuehaiPan/247/base -> origin/gh/XuehaiPan/247/base 2025-04-25T04:11:37.8411593Z * [new branch] gh/XuehaiPan/247/head -> origin/gh/XuehaiPan/247/head 2025-04-25T04:11:37.8412095Z * [new branch] gh/XuehaiPan/247/orig -> origin/gh/XuehaiPan/247/orig 2025-04-25T04:11:37.8412610Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-04-25T04:11:37.8413128Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-04-25T04:11:37.8413636Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-04-25T04:11:37.8414256Z * [new branch] gh/XuehaiPan/250/base -> origin/gh/XuehaiPan/250/base 2025-04-25T04:11:37.8414760Z * [new branch] gh/XuehaiPan/250/head -> origin/gh/XuehaiPan/250/head 2025-04-25T04:11:37.8415280Z * [new branch] gh/XuehaiPan/250/orig -> origin/gh/XuehaiPan/250/orig 2025-04-25T04:11:37.8415790Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-04-25T04:11:37.8416297Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-04-25T04:11:37.8416868Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-04-25T04:11:37.8417424Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-04-25T04:11:37.8417943Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-04-25T04:11:37.8418458Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-04-25T04:11:37.8418954Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-04-25T04:11:37.8419541Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-04-25T04:11:37.8420050Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-04-25T04:11:37.8420567Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-04-25T04:11:37.8421072Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-04-25T04:11:37.8421582Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-04-25T04:11:37.8422104Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-04-25T04:11:37.8837525Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-04-25T04:11:37.8838099Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-04-25T04:11:37.8838617Z * [new branch] gh/XuehaiPan/261/base -> origin/gh/XuehaiPan/261/base 2025-04-25T04:11:37.8839144Z * [new branch] gh/XuehaiPan/261/head -> origin/gh/XuehaiPan/261/head 2025-04-25T04:11:37.8839656Z * [new branch] gh/XuehaiPan/261/orig -> origin/gh/XuehaiPan/261/orig 2025-04-25T04:11:37.8840155Z * [new branch] gh/XuehaiPan/262/base -> origin/gh/XuehaiPan/262/base 2025-04-25T04:11:37.8840662Z * [new branch] gh/XuehaiPan/262/head -> origin/gh/XuehaiPan/262/head 2025-04-25T04:11:37.8841163Z * [new branch] gh/XuehaiPan/262/orig -> origin/gh/XuehaiPan/262/orig 2025-04-25T04:11:37.8841683Z * [new branch] gh/XuehaiPan/263/base -> origin/gh/XuehaiPan/263/base 2025-04-25T04:11:37.8842181Z * [new branch] gh/XuehaiPan/263/head -> origin/gh/XuehaiPan/263/head 2025-04-25T04:11:37.8842694Z * [new branch] gh/XuehaiPan/263/orig -> origin/gh/XuehaiPan/263/orig 2025-04-25T04:11:37.8843206Z * [new branch] gh/XuehaiPan/264/base -> origin/gh/XuehaiPan/264/base 2025-04-25T04:11:37.8843704Z * [new branch] gh/XuehaiPan/264/head -> origin/gh/XuehaiPan/264/head 2025-04-25T04:11:37.8844209Z * [new branch] gh/XuehaiPan/264/orig -> origin/gh/XuehaiPan/264/orig 2025-04-25T04:11:37.8844703Z * [new branch] gh/XuehaiPan/265/base -> origin/gh/XuehaiPan/265/base 2025-04-25T04:11:37.8845208Z * [new branch] gh/XuehaiPan/265/head -> origin/gh/XuehaiPan/265/head 2025-04-25T04:11:37.8845709Z * [new branch] gh/XuehaiPan/265/orig -> origin/gh/XuehaiPan/265/orig 2025-04-25T04:11:37.8846252Z * [new branch] gh/XuehaiPan/266/base -> origin/gh/XuehaiPan/266/base 2025-04-25T04:11:37.8846929Z * [new branch] gh/XuehaiPan/266/head -> origin/gh/XuehaiPan/266/head 2025-04-25T04:11:37.8847434Z * [new branch] gh/XuehaiPan/266/orig -> origin/gh/XuehaiPan/266/orig 2025-04-25T04:11:37.8847953Z * [new branch] gh/XuehaiPan/267/base -> origin/gh/XuehaiPan/267/base 2025-04-25T04:11:37.8848477Z * [new branch] gh/XuehaiPan/267/head -> origin/gh/XuehaiPan/267/head 2025-04-25T04:11:37.8848975Z * [new branch] gh/XuehaiPan/267/orig -> origin/gh/XuehaiPan/267/orig 2025-04-25T04:11:37.8849481Z * [new branch] gh/XuehaiPan/268/base -> origin/gh/XuehaiPan/268/base 2025-04-25T04:11:37.8849987Z * [new branch] gh/XuehaiPan/268/head -> origin/gh/XuehaiPan/268/head 2025-04-25T04:11:37.8850497Z * [new branch] gh/XuehaiPan/268/orig -> origin/gh/XuehaiPan/268/orig 2025-04-25T04:11:37.8851014Z * [new branch] gh/XuehaiPan/269/base -> origin/gh/XuehaiPan/269/base 2025-04-25T04:11:37.8851521Z * [new branch] gh/XuehaiPan/269/head -> origin/gh/XuehaiPan/269/head 2025-04-25T04:11:37.8852030Z * [new branch] gh/XuehaiPan/269/orig -> origin/gh/XuehaiPan/269/orig 2025-04-25T04:11:37.8852619Z * [new branch] gh/XuehaiPan/270/base -> origin/gh/XuehaiPan/270/base 2025-04-25T04:11:37.8853142Z * [new branch] gh/XuehaiPan/270/head -> origin/gh/XuehaiPan/270/head 2025-04-25T04:11:37.8853656Z * [new branch] gh/XuehaiPan/270/orig -> origin/gh/XuehaiPan/270/orig 2025-04-25T04:11:37.8854162Z * [new branch] gh/XuehaiPan/72/base -> origin/gh/XuehaiPan/72/base 2025-04-25T04:11:37.8854682Z * [new branch] gh/XuehaiPan/72/head -> origin/gh/XuehaiPan/72/head 2025-04-25T04:11:37.8855242Z * [new branch] gh/XuehaiPan/72/orig -> origin/gh/XuehaiPan/72/orig 2025-04-25T04:11:37.8855809Z * [new branch] gh/XuehaiPan/9/base -> origin/gh/XuehaiPan/9/base 2025-04-25T04:11:37.8856313Z * [new branch] gh/XuehaiPan/9/orig -> origin/gh/XuehaiPan/9/orig 2025-04-25T04:11:37.8856833Z * [new branch] gh/XuehaiPan/97/base -> origin/gh/XuehaiPan/97/base 2025-04-25T04:11:37.8857350Z * [new branch] gh/XuehaiPan/97/head -> origin/gh/XuehaiPan/97/head 2025-04-25T04:11:37.8857848Z * [new branch] gh/XuehaiPan/97/orig -> origin/gh/XuehaiPan/97/orig 2025-04-25T04:11:37.8858345Z * [new branch] gh/XuehaiPan/98/base -> origin/gh/XuehaiPan/98/base 2025-04-25T04:11:37.8858835Z * [new branch] gh/XuehaiPan/98/head -> origin/gh/XuehaiPan/98/head 2025-04-25T04:11:37.8859334Z * [new branch] gh/XuehaiPan/98/orig -> origin/gh/XuehaiPan/98/orig 2025-04-25T04:11:37.8859835Z * [new branch] gh/XuehaiPan/99/head -> origin/gh/XuehaiPan/99/head 2025-04-25T04:11:37.8860335Z * [new branch] gh/ZainRizvi/1/base -> origin/gh/ZainRizvi/1/base 2025-04-25T04:11:37.8860834Z * [new branch] gh/ZainRizvi/1/head -> origin/gh/ZainRizvi/1/head 2025-04-25T04:11:37.9283914Z * [new branch] gh/ZainRizvi/1/orig -> origin/gh/ZainRizvi/1/orig 2025-04-25T04:11:37.9284555Z * [new branch] gh/ZainRizvi/2/base -> origin/gh/ZainRizvi/2/base 2025-04-25T04:11:37.9285134Z * [new branch] gh/ZainRizvi/2/head -> origin/gh/ZainRizvi/2/head 2025-04-25T04:11:37.9285726Z * [new branch] gh/ZainRizvi/2/orig -> origin/gh/ZainRizvi/2/orig 2025-04-25T04:11:37.9286328Z * [new branch] gh/ZainRizvi/3/base -> origin/gh/ZainRizvi/3/base 2025-04-25T04:11:37.9286831Z * [new branch] gh/ZainRizvi/3/head -> origin/gh/ZainRizvi/3/head 2025-04-25T04:11:37.9287324Z * [new branch] gh/ZainRizvi/3/orig -> origin/gh/ZainRizvi/3/orig 2025-04-25T04:11:37.9287984Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-04-25T04:11:37.9288474Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-04-25T04:11:37.9288989Z * [new branch] gh/ZainRizvi/4/orig -> origin/gh/ZainRizvi/4/orig 2025-04-25T04:11:37.9289513Z * [new branch] gh/ZhiweiYan-96/32/base -> origin/gh/ZhiweiYan-96/32/base 2025-04-25T04:11:37.9290041Z * [new branch] gh/ZhiweiYan-96/32/head -> origin/gh/ZhiweiYan-96/32/head 2025-04-25T04:11:37.9290577Z * [new branch] gh/ZhiweiYan-96/32/orig -> origin/gh/ZhiweiYan-96/32/orig 2025-04-25T04:11:37.9291089Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-04-25T04:11:37.9291704Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-04-25T04:11:37.9292271Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-04-25T04:11:37.9292797Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-04-25T04:11:37.9293412Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-04-25T04:11:37.9293928Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-04-25T04:11:37.9294446Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-04-25T04:11:37.9294970Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-04-25T04:11:37.9295482Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-04-25T04:11:37.9296004Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-04-25T04:11:37.9296511Z * [new branch] gh/ZhiweiYan-96/47/base -> origin/gh/ZhiweiYan-96/47/base 2025-04-25T04:11:37.9297031Z * [new branch] gh/ZhiweiYan-96/47/head -> origin/gh/ZhiweiYan-96/47/head 2025-04-25T04:11:37.9297633Z * [new branch] gh/ZhiweiYan-96/47/orig -> origin/gh/ZhiweiYan-96/47/orig 2025-04-25T04:11:37.9298201Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-04-25T04:11:37.9298717Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-04-25T04:11:37.9299229Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-04-25T04:11:37.9299739Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-04-25T04:11:37.9300251Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-04-25T04:11:37.9300761Z * [new branch] gh/ZhiweiYan-96/57/base -> origin/gh/ZhiweiYan-96/57/base 2025-04-25T04:11:37.9301281Z * [new branch] gh/ZhiweiYan-96/57/head -> origin/gh/ZhiweiYan-96/57/head 2025-04-25T04:11:37.9301790Z * [new branch] gh/ZhiweiYan-96/57/orig -> origin/gh/ZhiweiYan-96/57/orig 2025-04-25T04:11:37.9302312Z * [new branch] gh/ZhiweiYan-96/58/base -> origin/gh/ZhiweiYan-96/58/base 2025-04-25T04:11:37.9302826Z * [new branch] gh/ZhiweiYan-96/58/head -> origin/gh/ZhiweiYan-96/58/head 2025-04-25T04:11:37.9303434Z * [new branch] gh/ZhiweiYan-96/58/orig -> origin/gh/ZhiweiYan-96/58/orig 2025-04-25T04:11:37.9303994Z * [new branch] gh/ZhiweiYan-96/59/base -> origin/gh/ZhiweiYan-96/59/base 2025-04-25T04:11:37.9304508Z * [new branch] gh/ZhiweiYan-96/59/head -> origin/gh/ZhiweiYan-96/59/head 2025-04-25T04:11:37.9305029Z * [new branch] gh/ZhiweiYan-96/59/orig -> origin/gh/ZhiweiYan-96/59/orig 2025-04-25T04:11:37.9305542Z * [new branch] gh/ZhiweiYan-96/60/base -> origin/gh/ZhiweiYan-96/60/base 2025-04-25T04:11:37.9306159Z * [new branch] gh/ZhiweiYan-96/60/head -> origin/gh/ZhiweiYan-96/60/head 2025-04-25T04:11:37.9306684Z * [new branch] gh/ZhiweiYan-96/60/orig -> origin/gh/ZhiweiYan-96/60/orig 2025-04-25T04:11:37.9307200Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-04-25T04:11:37.9307702Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-04-25T04:11:37.9308189Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-04-25T04:11:37.9731029Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-04-25T04:11:37.9731646Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-04-25T04:11:37.9732192Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-04-25T04:11:37.9732692Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-04-25T04:11:37.9733203Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-04-25T04:11:37.9733666Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-04-25T04:11:37.9734301Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-04-25T04:11:37.9735002Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-04-25T04:11:37.9735842Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-04-25T04:11:37.9736617Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-04-25T04:11:37.9737293Z * [new branch] gh/alexsamardzic/1/base -> origin/gh/alexsamardzic/1/base 2025-04-25T04:11:37.9737900Z * [new branch] gh/alexsamardzic/1/head -> origin/gh/alexsamardzic/1/head 2025-04-25T04:11:37.9738480Z * [new branch] gh/alexsamardzic/1/orig -> origin/gh/alexsamardzic/1/orig 2025-04-25T04:11:37.9739011Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-04-25T04:11:37.9739507Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-04-25T04:11:37.9739979Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-04-25T04:11:37.9740451Z * [new branch] gh/amjames/20/base -> origin/gh/amjames/20/base 2025-04-25T04:11:37.9740917Z * [new branch] gh/amjames/20/head -> origin/gh/amjames/20/head 2025-04-25T04:11:37.9741398Z * [new branch] gh/amjames/20/orig -> origin/gh/amjames/20/orig 2025-04-25T04:11:37.9741861Z * [new branch] gh/amjames/21/base -> origin/gh/amjames/21/base 2025-04-25T04:11:37.9742347Z * [new branch] gh/amjames/21/head -> origin/gh/amjames/21/head 2025-04-25T04:11:37.9742817Z * [new branch] gh/amjames/21/orig -> origin/gh/amjames/21/orig 2025-04-25T04:11:37.9743291Z * [new branch] gh/amjames/22/base -> origin/gh/amjames/22/base 2025-04-25T04:11:37.9743815Z * [new branch] gh/amjames/22/head -> origin/gh/amjames/22/head 2025-04-25T04:11:37.9744328Z * [new branch] gh/amjames/22/orig -> origin/gh/amjames/22/orig 2025-04-25T04:11:37.9744871Z * [new branch] gh/andrewlee302/1/base -> origin/gh/andrewlee302/1/base 2025-04-25T04:11:37.9745423Z * [new branch] gh/andrewlee302/1/head -> origin/gh/andrewlee302/1/head 2025-04-25T04:11:37.9745937Z * [new branch] gh/andrewlee302/3/base -> origin/gh/andrewlee302/3/base 2025-04-25T04:11:37.9746457Z * [new branch] gh/andrewlee302/3/head -> origin/gh/andrewlee302/3/head 2025-04-25T04:11:37.9747074Z * [new branch] gh/andrewlee302/3/orig -> origin/gh/andrewlee302/3/orig 2025-04-25T04:11:37.9747596Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-04-25T04:11:37.9748116Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-04-25T04:11:37.9748617Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-04-25T04:11:37.9749128Z * [new branch] gh/andrewor14/36/base -> origin/gh/andrewor14/36/base 2025-04-25T04:11:37.9749668Z * [new branch] gh/andrewor14/36/head -> origin/gh/andrewor14/36/head 2025-04-25T04:11:37.9750220Z * [new branch] gh/andrewor14/36/orig -> origin/gh/andrewor14/36/orig 2025-04-25T04:11:37.9750729Z * [new branch] gh/andrewor14/37/base -> origin/gh/andrewor14/37/base 2025-04-25T04:11:37.9751232Z * [new branch] gh/andrewor14/37/head -> origin/gh/andrewor14/37/head 2025-04-25T04:11:37.9751742Z * [new branch] gh/andrewor14/37/orig -> origin/gh/andrewor14/37/orig 2025-04-25T04:11:37.9752323Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-04-25T04:11:37.9752822Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-04-25T04:11:37.9753316Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-04-25T04:11:37.9753820Z * [new branch] gh/angelayi/78/base -> origin/gh/angelayi/78/base 2025-04-25T04:11:37.9754319Z * [new branch] gh/angelayi/78/head -> origin/gh/angelayi/78/head 2025-04-25T04:11:37.9754805Z * [new branch] gh/angelayi/78/orig -> origin/gh/angelayi/78/orig 2025-04-25T04:11:38.0177640Z * [new branch] gh/angelayi/79/base -> origin/gh/angelayi/79/base 2025-04-25T04:11:38.0178202Z * [new branch] gh/angelayi/79/head -> origin/gh/angelayi/79/head 2025-04-25T04:11:38.0178709Z * [new branch] gh/angelayi/79/orig -> origin/gh/angelayi/79/orig 2025-04-25T04:11:38.0179220Z * [new branch] gh/angelayi/80/base -> origin/gh/angelayi/80/base 2025-04-25T04:11:38.0179720Z * [new branch] gh/angelayi/80/head -> origin/gh/angelayi/80/head 2025-04-25T04:11:38.0180207Z * [new branch] gh/angelayi/80/orig -> origin/gh/angelayi/80/orig 2025-04-25T04:11:38.0180693Z * [new branch] gh/angelayi/81/base -> origin/gh/angelayi/81/base 2025-04-25T04:11:38.0181167Z * [new branch] gh/angelayi/81/head -> origin/gh/angelayi/81/head 2025-04-25T04:11:38.0181653Z * [new branch] gh/angelayi/81/orig -> origin/gh/angelayi/81/orig 2025-04-25T04:11:38.0182194Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-04-25T04:11:38.0182741Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-04-25T04:11:38.0183222Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-04-25T04:11:38.0183710Z * [new branch] gh/angelayi/83/base -> origin/gh/angelayi/83/base 2025-04-25T04:11:38.0184197Z * [new branch] gh/angelayi/83/head -> origin/gh/angelayi/83/head 2025-04-25T04:11:38.0184684Z * [new branch] gh/angelayi/83/orig -> origin/gh/angelayi/83/orig 2025-04-25T04:11:38.0185167Z * [new branch] gh/angelayi/84/base -> origin/gh/angelayi/84/base 2025-04-25T04:11:38.0185655Z * [new branch] gh/angelayi/84/head -> origin/gh/angelayi/84/head 2025-04-25T04:11:38.0186145Z * [new branch] gh/angelayi/84/orig -> origin/gh/angelayi/84/orig 2025-04-25T04:11:38.0186632Z * [new branch] gh/angelayi/85/base -> origin/gh/angelayi/85/base 2025-04-25T04:11:38.0187258Z * [new branch] gh/angelayi/85/head -> origin/gh/angelayi/85/head 2025-04-25T04:11:38.0187747Z * [new branch] gh/angelayi/85/orig -> origin/gh/angelayi/85/orig 2025-04-25T04:11:38.0188235Z * [new branch] gh/angelayi/86/base -> origin/gh/angelayi/86/base 2025-04-25T04:11:38.0188727Z * [new branch] gh/angelayi/86/head -> origin/gh/angelayi/86/head 2025-04-25T04:11:38.0189216Z * [new branch] gh/angelayi/86/orig -> origin/gh/angelayi/86/orig 2025-04-25T04:11:38.0189693Z * [new branch] gh/angelayi/87/base -> origin/gh/angelayi/87/base 2025-04-25T04:11:38.0190186Z * [new branch] gh/angelayi/87/head -> origin/gh/angelayi/87/head 2025-04-25T04:11:38.0190658Z * [new branch] gh/angelayi/87/orig -> origin/gh/angelayi/87/orig 2025-04-25T04:11:38.0191152Z * [new branch] gh/angelayi/88/base -> origin/gh/angelayi/88/base 2025-04-25T04:11:38.0191633Z * [new branch] gh/angelayi/88/head -> origin/gh/angelayi/88/head 2025-04-25T04:11:38.0192220Z * [new branch] gh/angelayi/88/orig -> origin/gh/angelayi/88/orig 2025-04-25T04:11:38.0192713Z * [new branch] gh/angelayi/89/base -> origin/gh/angelayi/89/base 2025-04-25T04:11:38.0193193Z * [new branch] gh/angelayi/89/head -> origin/gh/angelayi/89/head 2025-04-25T04:11:38.0193676Z * [new branch] gh/angelayi/89/orig -> origin/gh/angelayi/89/orig 2025-04-25T04:11:38.0194150Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-04-25T04:11:38.0194613Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-04-25T04:11:38.0195078Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-04-25T04:11:38.0195570Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-04-25T04:11:38.0196103Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-04-25T04:11:38.0196615Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-04-25T04:11:38.0197129Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-04-25T04:11:38.0197649Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-04-25T04:11:38.0198154Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-04-25T04:11:38.0198664Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-04-25T04:11:38.0199176Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-04-25T04:11:38.0199695Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-04-25T04:11:38.0200215Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-04-25T04:11:38.0200724Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-04-25T04:11:38.0600879Z * [new branch] gh/anijain2305/668/base -> origin/gh/anijain2305/668/base 2025-04-25T04:11:38.0601456Z * [new branch] gh/anijain2305/668/head -> origin/gh/anijain2305/668/head 2025-04-25T04:11:38.0601978Z * [new branch] gh/anijain2305/668/orig -> origin/gh/anijain2305/668/orig 2025-04-25T04:11:38.0602492Z * [new branch] gh/anijain2305/675/base -> origin/gh/anijain2305/675/base 2025-04-25T04:11:38.0603004Z * [new branch] gh/anijain2305/675/head -> origin/gh/anijain2305/675/head 2025-04-25T04:11:38.0603517Z * [new branch] gh/anijain2305/675/orig -> origin/gh/anijain2305/675/orig 2025-04-25T04:11:38.0604167Z * [new branch] gh/anijain2305/682/base -> origin/gh/anijain2305/682/base 2025-04-25T04:11:38.0604689Z * [new branch] gh/anijain2305/682/head -> origin/gh/anijain2305/682/head 2025-04-25T04:11:38.0605219Z * [new branch] gh/anijain2305/682/orig -> origin/gh/anijain2305/682/orig 2025-04-25T04:11:38.0605731Z * [new branch] gh/anijain2305/684/base -> origin/gh/anijain2305/684/base 2025-04-25T04:11:38.0606326Z * [new branch] gh/anijain2305/684/head -> origin/gh/anijain2305/684/head 2025-04-25T04:11:38.0606922Z * [new branch] gh/anijain2305/684/orig -> origin/gh/anijain2305/684/orig 2025-04-25T04:11:38.0607440Z * [new branch] gh/anijain2305/697/base -> origin/gh/anijain2305/697/base 2025-04-25T04:11:38.0607965Z * [new branch] gh/anijain2305/697/head -> origin/gh/anijain2305/697/head 2025-04-25T04:11:38.0608473Z * [new branch] gh/anijain2305/697/orig -> origin/gh/anijain2305/697/orig 2025-04-25T04:11:38.0608998Z * [new branch] gh/anijain2305/700/base -> origin/gh/anijain2305/700/base 2025-04-25T04:11:38.0609504Z * [new branch] gh/anijain2305/700/head -> origin/gh/anijain2305/700/head 2025-04-25T04:11:38.0610119Z * [new branch] gh/anijain2305/700/orig -> origin/gh/anijain2305/700/orig 2025-04-25T04:11:38.0610637Z * [new branch] gh/anijain2305/704/base -> origin/gh/anijain2305/704/base 2025-04-25T04:11:38.0611154Z * [new branch] gh/anijain2305/704/head -> origin/gh/anijain2305/704/head 2025-04-25T04:11:38.0611672Z * [new branch] gh/anijain2305/704/orig -> origin/gh/anijain2305/704/orig 2025-04-25T04:11:38.0612229Z * [new branch] gh/anijain2305/706/base -> origin/gh/anijain2305/706/base 2025-04-25T04:11:38.0612790Z * [new branch] gh/anijain2305/706/head -> origin/gh/anijain2305/706/head 2025-04-25T04:11:38.0613314Z * [new branch] gh/anijain2305/706/orig -> origin/gh/anijain2305/706/orig 2025-04-25T04:11:38.0613815Z * [new branch] gh/anijain2305/707/base -> origin/gh/anijain2305/707/base 2025-04-25T04:11:38.0614344Z * [new branch] gh/anijain2305/707/head -> origin/gh/anijain2305/707/head 2025-04-25T04:11:38.0614850Z * [new branch] gh/anijain2305/707/orig -> origin/gh/anijain2305/707/orig 2025-04-25T04:11:38.0615367Z * [new branch] gh/anijain2305/708/base -> origin/gh/anijain2305/708/base 2025-04-25T04:11:38.0615881Z * [new branch] gh/anijain2305/708/head -> origin/gh/anijain2305/708/head 2025-04-25T04:11:38.0616390Z * [new branch] gh/anijain2305/708/orig -> origin/gh/anijain2305/708/orig 2025-04-25T04:11:38.0616908Z * [new branch] gh/anijain2305/709/base -> origin/gh/anijain2305/709/base 2025-04-25T04:11:38.0617414Z * [new branch] gh/anijain2305/709/head -> origin/gh/anijain2305/709/head 2025-04-25T04:11:38.0617975Z * [new branch] gh/anijain2305/709/orig -> origin/gh/anijain2305/709/orig 2025-04-25T04:11:38.0618546Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-04-25T04:11:38.0619057Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-04-25T04:11:38.0619574Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-04-25T04:11:38.0620078Z * [new branch] gh/anijain2305/711/base -> origin/gh/anijain2305/711/base 2025-04-25T04:11:38.0620599Z * [new branch] gh/anijain2305/711/head -> origin/gh/anijain2305/711/head 2025-04-25T04:11:38.0621118Z * [new branch] gh/anijain2305/711/orig -> origin/gh/anijain2305/711/orig 2025-04-25T04:11:38.0621626Z * [new branch] gh/anijain2305/712/base -> origin/gh/anijain2305/712/base 2025-04-25T04:11:38.0622241Z * [new branch] gh/anijain2305/712/head -> origin/gh/anijain2305/712/head 2025-04-25T04:11:38.0622748Z * [new branch] gh/anijain2305/712/orig -> origin/gh/anijain2305/712/orig 2025-04-25T04:11:38.0623322Z * [new branch] gh/anijain2305/713/base -> origin/gh/anijain2305/713/base 2025-04-25T04:11:38.0623869Z * [new branch] gh/anijain2305/713/head -> origin/gh/anijain2305/713/head 2025-04-25T04:11:38.0624385Z * [new branch] gh/anijain2305/713/orig -> origin/gh/anijain2305/713/orig 2025-04-25T04:11:38.1024924Z * [new branch] gh/anijain2305/714/base -> origin/gh/anijain2305/714/base 2025-04-25T04:11:38.1025493Z * [new branch] gh/anijain2305/714/head -> origin/gh/anijain2305/714/head 2025-04-25T04:11:38.1026028Z * [new branch] gh/anijain2305/714/orig -> origin/gh/anijain2305/714/orig 2025-04-25T04:11:38.1026563Z * [new branch] gh/anijain2305/715/base -> origin/gh/anijain2305/715/base 2025-04-25T04:11:38.1027092Z * [new branch] gh/anijain2305/715/head -> origin/gh/anijain2305/715/head 2025-04-25T04:11:38.1027764Z * [new branch] gh/anijain2305/715/orig -> origin/gh/anijain2305/715/orig 2025-04-25T04:11:38.1028286Z * [new branch] gh/anijain2305/716/base -> origin/gh/anijain2305/716/base 2025-04-25T04:11:38.1028809Z * [new branch] gh/anijain2305/716/head -> origin/gh/anijain2305/716/head 2025-04-25T04:11:38.1029379Z * [new branch] gh/anijain2305/716/orig -> origin/gh/anijain2305/716/orig 2025-04-25T04:11:38.1029988Z * [new branch] gh/anijain2305/717/base -> origin/gh/anijain2305/717/base 2025-04-25T04:11:38.1030590Z * [new branch] gh/anijain2305/717/head -> origin/gh/anijain2305/717/head 2025-04-25T04:11:38.1031192Z * [new branch] gh/anijain2305/717/orig -> origin/gh/anijain2305/717/orig 2025-04-25T04:11:38.1031796Z * [new branch] gh/anijain2305/718/base -> origin/gh/anijain2305/718/base 2025-04-25T04:11:38.1032408Z * [new branch] gh/anijain2305/718/head -> origin/gh/anijain2305/718/head 2025-04-25T04:11:38.1033013Z * [new branch] gh/anijain2305/718/orig -> origin/gh/anijain2305/718/orig 2025-04-25T04:11:38.1033621Z * [new branch] gh/anijain2305/719/base -> origin/gh/anijain2305/719/base 2025-04-25T04:11:38.1034211Z * [new branch] gh/anijain2305/719/head -> origin/gh/anijain2305/719/head 2025-04-25T04:11:38.1034813Z * [new branch] gh/anijain2305/719/orig -> origin/gh/anijain2305/719/orig 2025-04-25T04:11:38.1035415Z * [new branch] gh/anijain2305/720/base -> origin/gh/anijain2305/720/base 2025-04-25T04:11:38.1035990Z * [new branch] gh/anijain2305/720/head -> origin/gh/anijain2305/720/head 2025-04-25T04:11:38.1036594Z * [new branch] gh/anijain2305/720/orig -> origin/gh/anijain2305/720/orig 2025-04-25T04:11:38.1037172Z * [new branch] gh/anijain2305/721/base -> origin/gh/anijain2305/721/base 2025-04-25T04:11:38.1037775Z * [new branch] gh/anijain2305/721/head -> origin/gh/anijain2305/721/head 2025-04-25T04:11:38.1038350Z * [new branch] gh/anijain2305/721/orig -> origin/gh/anijain2305/721/orig 2025-04-25T04:11:38.1038863Z * [new branch] gh/anijain2305/722/base -> origin/gh/anijain2305/722/base 2025-04-25T04:11:38.1039383Z * [new branch] gh/anijain2305/722/head -> origin/gh/anijain2305/722/head 2025-04-25T04:11:38.1039890Z * [new branch] gh/anijain2305/722/orig -> origin/gh/anijain2305/722/orig 2025-04-25T04:11:38.1040427Z * [new branch] gh/anijain2305/723/base -> origin/gh/anijain2305/723/base 2025-04-25T04:11:38.1040932Z * [new branch] gh/anijain2305/723/head -> origin/gh/anijain2305/723/head 2025-04-25T04:11:38.1041560Z * [new branch] gh/anijain2305/723/orig -> origin/gh/anijain2305/723/orig 2025-04-25T04:11:38.1042077Z * [new branch] gh/anijain2305/724/base -> origin/gh/anijain2305/724/base 2025-04-25T04:11:38.1042591Z * [new branch] gh/anijain2305/724/head -> origin/gh/anijain2305/724/head 2025-04-25T04:11:38.1043158Z * [new branch] gh/anijain2305/724/orig -> origin/gh/anijain2305/724/orig 2025-04-25T04:11:38.1043751Z * [new branch] gh/anijain2305/725/base -> origin/gh/anijain2305/725/base 2025-04-25T04:11:38.1044349Z * [new branch] gh/anijain2305/725/head -> origin/gh/anijain2305/725/head 2025-04-25T04:11:38.1044945Z * [new branch] gh/anijain2305/725/orig -> origin/gh/anijain2305/725/orig 2025-04-25T04:11:38.1045497Z * [new branch] gh/anijain2305/726/base -> origin/gh/anijain2305/726/base 2025-04-25T04:11:38.1046099Z * [new branch] gh/anijain2305/726/head -> origin/gh/anijain2305/726/head 2025-04-25T04:11:38.1046759Z * [new branch] gh/anijain2305/726/orig -> origin/gh/anijain2305/726/orig 2025-04-25T04:11:38.1047500Z * [new branch] gh/anijain2305/727/base -> origin/gh/anijain2305/727/base 2025-04-25T04:11:38.1048117Z * [new branch] gh/anijain2305/727/head -> origin/gh/anijain2305/727/head 2025-04-25T04:11:38.1048714Z * [new branch] gh/anijain2305/727/orig -> origin/gh/anijain2305/727/orig 2025-04-25T04:11:38.1049332Z * [new branch] gh/anijain2305/728/base -> origin/gh/anijain2305/728/base 2025-04-25T04:11:38.1049883Z * [new branch] gh/anijain2305/728/head -> origin/gh/anijain2305/728/head 2025-04-25T04:11:38.1050484Z * [new branch] gh/anijain2305/728/orig -> origin/gh/anijain2305/728/orig 2025-04-25T04:11:38.1458980Z * [new branch] gh/anijain2305/729/base -> origin/gh/anijain2305/729/base 2025-04-25T04:11:38.1459564Z * [new branch] gh/anijain2305/729/head -> origin/gh/anijain2305/729/head 2025-04-25T04:11:38.1460085Z * [new branch] gh/anijain2305/729/orig -> origin/gh/anijain2305/729/orig 2025-04-25T04:11:38.1460612Z * [new branch] gh/anijain2305/730/base -> origin/gh/anijain2305/730/base 2025-04-25T04:11:38.1461120Z * [new branch] gh/anijain2305/730/head -> origin/gh/anijain2305/730/head 2025-04-25T04:11:38.1461631Z * [new branch] gh/anijain2305/730/orig -> origin/gh/anijain2305/730/orig 2025-04-25T04:11:38.1462138Z * [new branch] gh/anijain2305/731/base -> origin/gh/anijain2305/731/base 2025-04-25T04:11:38.1462649Z * [new branch] gh/anijain2305/731/head -> origin/gh/anijain2305/731/head 2025-04-25T04:11:38.1463163Z * [new branch] gh/anijain2305/731/orig -> origin/gh/anijain2305/731/orig 2025-04-25T04:11:38.1463677Z * [new branch] gh/anijain2305/732/base -> origin/gh/anijain2305/732/base 2025-04-25T04:11:38.1464187Z * [new branch] gh/anijain2305/732/head -> origin/gh/anijain2305/732/head 2025-04-25T04:11:38.1464701Z * [new branch] gh/anijain2305/732/orig -> origin/gh/anijain2305/732/orig 2025-04-25T04:11:38.1465221Z * [new branch] gh/anijain2305/733/base -> origin/gh/anijain2305/733/base 2025-04-25T04:11:38.1465725Z * [new branch] gh/anijain2305/733/head -> origin/gh/anijain2305/733/head 2025-04-25T04:11:38.1466236Z * [new branch] gh/anijain2305/733/orig -> origin/gh/anijain2305/733/orig 2025-04-25T04:11:38.1466754Z * [new branch] gh/anijain2305/734/base -> origin/gh/anijain2305/734/base 2025-04-25T04:11:38.1467261Z * [new branch] gh/anijain2305/734/head -> origin/gh/anijain2305/734/head 2025-04-25T04:11:38.1467779Z * [new branch] gh/anijain2305/734/orig -> origin/gh/anijain2305/734/orig 2025-04-25T04:11:38.1468921Z * [new branch] gh/anijain2305/735/base -> origin/gh/anijain2305/735/base 2025-04-25T04:11:38.1469445Z * [new branch] gh/anijain2305/735/head -> origin/gh/anijain2305/735/head 2025-04-25T04:11:38.1469965Z * [new branch] gh/anijain2305/735/orig -> origin/gh/anijain2305/735/orig 2025-04-25T04:11:38.1470478Z * [new branch] gh/anijain2305/736/base -> origin/gh/anijain2305/736/base 2025-04-25T04:11:38.1470988Z * [new branch] gh/anijain2305/736/head -> origin/gh/anijain2305/736/head 2025-04-25T04:11:38.1471492Z * [new branch] gh/anijain2305/736/orig -> origin/gh/anijain2305/736/orig 2025-04-25T04:11:38.1472009Z * [new branch] gh/anijain2305/737/base -> origin/gh/anijain2305/737/base 2025-04-25T04:11:38.1472523Z * [new branch] gh/anijain2305/737/head -> origin/gh/anijain2305/737/head 2025-04-25T04:11:38.1473035Z * [new branch] gh/anijain2305/737/orig -> origin/gh/anijain2305/737/orig 2025-04-25T04:11:38.1473548Z * [new branch] gh/anijain2305/738/base -> origin/gh/anijain2305/738/base 2025-04-25T04:11:38.1474496Z * [new branch] gh/anijain2305/738/head -> origin/gh/anijain2305/738/head 2025-04-25T04:11:38.1475024Z * [new branch] gh/anijain2305/738/orig -> origin/gh/anijain2305/738/orig 2025-04-25T04:11:38.1475553Z * [new branch] gh/anijain2305/739/base -> origin/gh/anijain2305/739/base 2025-04-25T04:11:38.1476064Z * [new branch] gh/anijain2305/739/head -> origin/gh/anijain2305/739/head 2025-04-25T04:11:38.1476589Z * [new branch] gh/anijain2305/739/orig -> origin/gh/anijain2305/739/orig 2025-04-25T04:11:38.1477100Z * [new branch] gh/anijain2305/740/base -> origin/gh/anijain2305/740/base 2025-04-25T04:11:38.1477624Z * [new branch] gh/anijain2305/740/head -> origin/gh/anijain2305/740/head 2025-04-25T04:11:38.1478144Z * [new branch] gh/anijain2305/740/orig -> origin/gh/anijain2305/740/orig 2025-04-25T04:11:38.1478650Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-04-25T04:11:38.1479159Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-04-25T04:11:38.1479646Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-04-25T04:11:38.1480141Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-04-25T04:11:38.1480630Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-04-25T04:11:38.1481133Z * [new branch] gh/aorenste/222/base -> origin/gh/aorenste/222/base 2025-04-25T04:11:38.1481638Z * [new branch] gh/aorenste/222/head -> origin/gh/aorenste/222/head 2025-04-25T04:11:38.1482126Z * [new branch] gh/aorenste/222/orig -> origin/gh/aorenste/222/orig 2025-04-25T04:11:38.1482621Z * [new branch] gh/aorenste/223/base -> origin/gh/aorenste/223/base 2025-04-25T04:11:38.1916171Z * [new branch] gh/aorenste/223/head -> origin/gh/aorenste/223/head 2025-04-25T04:11:38.1916723Z * [new branch] gh/aorenste/223/orig -> origin/gh/aorenste/223/orig 2025-04-25T04:11:38.1917224Z * [new branch] gh/aorenste/224/base -> origin/gh/aorenste/224/base 2025-04-25T04:11:38.1917715Z * [new branch] gh/aorenste/224/head -> origin/gh/aorenste/224/head 2025-04-25T04:11:38.1918212Z * [new branch] gh/aorenste/224/orig -> origin/gh/aorenste/224/orig 2025-04-25T04:11:38.1918750Z * [new branch] gh/avikchaudhuri/59/base -> origin/gh/avikchaudhuri/59/base 2025-04-25T04:11:38.1919298Z * [new branch] gh/avikchaudhuri/59/head -> origin/gh/avikchaudhuri/59/head 2025-04-25T04:11:38.1919988Z * [new branch] gh/avikchaudhuri/59/orig -> origin/gh/avikchaudhuri/59/orig 2025-04-25T04:11:38.1920514Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-04-25T04:11:38.1921020Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-04-25T04:11:38.1921505Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-04-25T04:11:38.1921983Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-04-25T04:11:38.1922467Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-04-25T04:11:38.1922941Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-04-25T04:11:38.1923423Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-04-25T04:11:38.1923906Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-04-25T04:11:38.1924386Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-04-25T04:11:38.1924867Z * [new branch] gh/bdhirsh/648/base -> origin/gh/bdhirsh/648/base 2025-04-25T04:11:38.1925444Z * [new branch] gh/bdhirsh/648/head -> origin/gh/bdhirsh/648/head 2025-04-25T04:11:38.1925934Z * [new branch] gh/bdhirsh/648/orig -> origin/gh/bdhirsh/648/orig 2025-04-25T04:11:38.1926466Z * [new branch] gh/bdhirsh/649/base -> origin/gh/bdhirsh/649/base 2025-04-25T04:11:38.1926953Z * [new branch] gh/bdhirsh/649/head -> origin/gh/bdhirsh/649/head 2025-04-25T04:11:38.1927437Z * [new branch] gh/bdhirsh/649/orig -> origin/gh/bdhirsh/649/orig 2025-04-25T04:11:38.1927922Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-04-25T04:11:38.1928411Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-04-25T04:11:38.1928889Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-04-25T04:11:38.1929381Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-04-25T04:11:38.1929864Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-04-25T04:11:38.1930338Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-04-25T04:11:38.1930821Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-04-25T04:11:38.1931301Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-04-25T04:11:38.1931786Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-04-25T04:11:38.1932266Z * [new branch] gh/bdhirsh/653/base -> origin/gh/bdhirsh/653/base 2025-04-25T04:11:38.1932744Z * [new branch] gh/bdhirsh/653/head -> origin/gh/bdhirsh/653/head 2025-04-25T04:11:38.1933221Z * [new branch] gh/bdhirsh/653/orig -> origin/gh/bdhirsh/653/orig 2025-04-25T04:11:38.1933701Z * [new branch] gh/bdhirsh/654/base -> origin/gh/bdhirsh/654/base 2025-04-25T04:11:38.1934189Z * [new branch] gh/bdhirsh/654/head -> origin/gh/bdhirsh/654/head 2025-04-25T04:11:38.1934668Z * [new branch] gh/bdhirsh/654/orig -> origin/gh/bdhirsh/654/orig 2025-04-25T04:11:38.1935142Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-04-25T04:11:38.1935696Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-04-25T04:11:38.1936174Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-04-25T04:11:38.1936705Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-04-25T04:11:38.1937357Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-04-25T04:11:38.1937919Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-04-25T04:11:38.1938484Z * [new branch] gh/benjaminglass1/67/base -> origin/gh/benjaminglass1/67/base 2025-04-25T04:11:38.1939029Z * [new branch] gh/benjaminglass1/67/head -> origin/gh/benjaminglass1/67/head 2025-04-25T04:11:38.1939584Z * [new branch] gh/benjaminglass1/67/orig -> origin/gh/benjaminglass1/67/orig 2025-04-25T04:11:38.2358857Z * [new branch] gh/benjaminglass1/72/base -> origin/gh/benjaminglass1/72/base 2025-04-25T04:11:38.2359485Z * [new branch] gh/benjaminglass1/72/head -> origin/gh/benjaminglass1/72/head 2025-04-25T04:11:38.2360046Z * [new branch] gh/benjaminglass1/72/orig -> origin/gh/benjaminglass1/72/orig 2025-04-25T04:11:38.2360616Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-04-25T04:11:38.2361172Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-04-25T04:11:38.2361867Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-04-25T04:11:38.2362429Z * [new branch] gh/benjaminglass1/78/base -> origin/gh/benjaminglass1/78/base 2025-04-25T04:11:38.2362987Z * [new branch] gh/benjaminglass1/78/head -> origin/gh/benjaminglass1/78/head 2025-04-25T04:11:38.2363526Z * [new branch] gh/benjaminglass1/78/orig -> origin/gh/benjaminglass1/78/orig 2025-04-25T04:11:38.2364079Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-04-25T04:11:38.2364632Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-04-25T04:11:38.2365181Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-04-25T04:11:38.2365729Z * [new branch] gh/benjaminglass1/80/base -> origin/gh/benjaminglass1/80/base 2025-04-25T04:11:38.2366335Z * [new branch] gh/benjaminglass1/80/head -> origin/gh/benjaminglass1/80/head 2025-04-25T04:11:38.2366891Z * [new branch] gh/benjaminglass1/80/orig -> origin/gh/benjaminglass1/80/orig 2025-04-25T04:11:38.2367446Z * [new branch] gh/benjaminglass1/81/base -> origin/gh/benjaminglass1/81/base 2025-04-25T04:11:38.2367991Z * [new branch] gh/benjaminglass1/81/head -> origin/gh/benjaminglass1/81/head 2025-04-25T04:11:38.2368544Z * [new branch] gh/benjaminglass1/81/orig -> origin/gh/benjaminglass1/81/orig 2025-04-25T04:11:38.2369251Z * [new branch] gh/benjaminglass1/82/base -> origin/gh/benjaminglass1/82/base 2025-04-25T04:11:38.2369808Z * [new branch] gh/benjaminglass1/82/head -> origin/gh/benjaminglass1/82/head 2025-04-25T04:11:38.2370367Z * [new branch] gh/benjaminglass1/82/orig -> origin/gh/benjaminglass1/82/orig 2025-04-25T04:11:38.2370909Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-04-25T04:11:38.2371505Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-04-25T04:11:38.2372136Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-04-25T04:11:38.2372686Z * [new branch] gh/bertmaher/1/base -> origin/gh/bertmaher/1/base 2025-04-25T04:11:38.2373191Z * [new branch] gh/bertmaher/1/head -> origin/gh/bertmaher/1/head 2025-04-25T04:11:38.2373689Z * [new branch] gh/bertmaher/1/orig -> origin/gh/bertmaher/1/orig 2025-04-25T04:11:38.2374183Z * [new branch] gh/bertmaher/2/base -> origin/gh/bertmaher/2/base 2025-04-25T04:11:38.2374782Z * [new branch] gh/bertmaher/2/head -> origin/gh/bertmaher/2/head 2025-04-25T04:11:38.2375285Z * [new branch] gh/bertmaher/2/orig -> origin/gh/bertmaher/2/orig 2025-04-25T04:11:38.2375794Z * [new branch] gh/bobrenjc93/207/base -> origin/gh/bobrenjc93/207/base 2025-04-25T04:11:38.2376325Z * [new branch] gh/bobrenjc93/207/head -> origin/gh/bobrenjc93/207/head 2025-04-25T04:11:38.2376847Z * [new branch] gh/bobrenjc93/207/orig -> origin/gh/bobrenjc93/207/orig 2025-04-25T04:11:38.2377352Z * [new branch] gh/bobrenjc93/270/base -> origin/gh/bobrenjc93/270/base 2025-04-25T04:11:38.2377873Z * [new branch] gh/bobrenjc93/270/head -> origin/gh/bobrenjc93/270/head 2025-04-25T04:11:38.2378377Z * [new branch] gh/bobrenjc93/270/orig -> origin/gh/bobrenjc93/270/orig 2025-04-25T04:11:38.2378886Z * [new branch] gh/bobrenjc93/273/base -> origin/gh/bobrenjc93/273/base 2025-04-25T04:11:38.2379399Z * [new branch] gh/bobrenjc93/273/head -> origin/gh/bobrenjc93/273/head 2025-04-25T04:11:38.2379907Z * [new branch] gh/bobrenjc93/273/orig -> origin/gh/bobrenjc93/273/orig 2025-04-25T04:11:38.2380496Z * [new branch] gh/bobrenjc93/276/base -> origin/gh/bobrenjc93/276/base 2025-04-25T04:11:38.2380999Z * [new branch] gh/bobrenjc93/276/head -> origin/gh/bobrenjc93/276/head 2025-04-25T04:11:38.2381506Z * [new branch] gh/bobrenjc93/276/orig -> origin/gh/bobrenjc93/276/orig 2025-04-25T04:11:38.2382018Z * [new branch] gh/bobrenjc93/300/base -> origin/gh/bobrenjc93/300/base 2025-04-25T04:11:38.2382518Z * [new branch] gh/bobrenjc93/300/head -> origin/gh/bobrenjc93/300/head 2025-04-25T04:11:38.2383033Z * [new branch] gh/bobrenjc93/300/orig -> origin/gh/bobrenjc93/300/orig 2025-04-25T04:11:38.2784778Z * [new branch] gh/bobrenjc93/301/base -> origin/gh/bobrenjc93/301/base 2025-04-25T04:11:38.2785356Z * [new branch] gh/bobrenjc93/301/head -> origin/gh/bobrenjc93/301/head 2025-04-25T04:11:38.2785900Z * [new branch] gh/bobrenjc93/301/orig -> origin/gh/bobrenjc93/301/orig 2025-04-25T04:11:38.2786413Z * [new branch] gh/bobrenjc93/302/base -> origin/gh/bobrenjc93/302/base 2025-04-25T04:11:38.2786933Z * [new branch] gh/bobrenjc93/302/head -> origin/gh/bobrenjc93/302/head 2025-04-25T04:11:38.2787443Z * [new branch] gh/bobrenjc93/302/orig -> origin/gh/bobrenjc93/302/orig 2025-04-25T04:11:38.2787946Z * [new branch] gh/bobrenjc93/303/base -> origin/gh/bobrenjc93/303/base 2025-04-25T04:11:38.2788459Z * [new branch] gh/bobrenjc93/303/head -> origin/gh/bobrenjc93/303/head 2025-04-25T04:11:38.2788960Z * [new branch] gh/bobrenjc93/303/orig -> origin/gh/bobrenjc93/303/orig 2025-04-25T04:11:38.2789477Z * [new branch] gh/bobrenjc93/304/base -> origin/gh/bobrenjc93/304/base 2025-04-25T04:11:38.2789978Z * [new branch] gh/bobrenjc93/304/head -> origin/gh/bobrenjc93/304/head 2025-04-25T04:11:38.2790493Z * [new branch] gh/bobrenjc93/304/orig -> origin/gh/bobrenjc93/304/orig 2025-04-25T04:11:38.2791006Z * [new branch] gh/bobrenjc93/305/base -> origin/gh/bobrenjc93/305/base 2025-04-25T04:11:38.2791509Z * [new branch] gh/bobrenjc93/305/head -> origin/gh/bobrenjc93/305/head 2025-04-25T04:11:38.2792012Z * [new branch] gh/bobrenjc93/305/orig -> origin/gh/bobrenjc93/305/orig 2025-04-25T04:11:38.2792511Z * [new branch] gh/bobrenjc93/306/base -> origin/gh/bobrenjc93/306/base 2025-04-25T04:11:38.2793020Z * [new branch] gh/bobrenjc93/306/head -> origin/gh/bobrenjc93/306/head 2025-04-25T04:11:38.2793677Z * [new branch] gh/bobrenjc93/306/orig -> origin/gh/bobrenjc93/306/orig 2025-04-25T04:11:38.2794178Z * [new branch] gh/bobrenjc93/307/base -> origin/gh/bobrenjc93/307/base 2025-04-25T04:11:38.2794699Z * [new branch] gh/bobrenjc93/307/head -> origin/gh/bobrenjc93/307/head 2025-04-25T04:11:38.2795203Z * [new branch] gh/bobrenjc93/307/orig -> origin/gh/bobrenjc93/307/orig 2025-04-25T04:11:38.2795719Z * [new branch] gh/bobrenjc93/308/base -> origin/gh/bobrenjc93/308/base 2025-04-25T04:11:38.2796282Z * [new branch] gh/bobrenjc93/308/head -> origin/gh/bobrenjc93/308/head 2025-04-25T04:11:38.2796888Z * [new branch] gh/bobrenjc93/308/orig -> origin/gh/bobrenjc93/308/orig 2025-04-25T04:11:38.2797421Z * [new branch] gh/bobrenjc93/309/base -> origin/gh/bobrenjc93/309/base 2025-04-25T04:11:38.2797936Z * [new branch] gh/bobrenjc93/309/head -> origin/gh/bobrenjc93/309/head 2025-04-25T04:11:38.2798461Z * [new branch] gh/bobrenjc93/309/orig -> origin/gh/bobrenjc93/309/orig 2025-04-25T04:11:38.2798970Z * [new branch] gh/bobrenjc93/310/base -> origin/gh/bobrenjc93/310/base 2025-04-25T04:11:38.2799599Z * [new branch] gh/bobrenjc93/310/head -> origin/gh/bobrenjc93/310/head 2025-04-25T04:11:38.2800212Z * [new branch] gh/bobrenjc93/310/orig -> origin/gh/bobrenjc93/310/orig 2025-04-25T04:11:38.2800845Z * [new branch] gh/bobrenjc93/311/base -> origin/gh/bobrenjc93/311/base 2025-04-25T04:11:38.2801415Z * [new branch] gh/bobrenjc93/311/head -> origin/gh/bobrenjc93/311/head 2025-04-25T04:11:38.2802095Z * [new branch] gh/bobrenjc93/311/orig -> origin/gh/bobrenjc93/311/orig 2025-04-25T04:11:38.2802699Z * [new branch] gh/bobrenjc93/312/base -> origin/gh/bobrenjc93/312/base 2025-04-25T04:11:38.2803531Z * [new branch] gh/bobrenjc93/312/head -> origin/gh/bobrenjc93/312/head 2025-04-25T04:11:38.2804127Z * [new branch] gh/bobrenjc93/312/orig -> origin/gh/bobrenjc93/312/orig 2025-04-25T04:11:38.2804872Z * [new branch] gh/bobrenjc93/313/base -> origin/gh/bobrenjc93/313/base 2025-04-25T04:11:38.2805526Z * [new branch] gh/bobrenjc93/313/head -> origin/gh/bobrenjc93/313/head 2025-04-25T04:11:38.2806187Z * [new branch] gh/bobrenjc93/313/orig -> origin/gh/bobrenjc93/313/orig 2025-04-25T04:11:38.2807014Z * [new branch] gh/bobrenjc93/314/base -> origin/gh/bobrenjc93/314/base 2025-04-25T04:11:38.2807609Z * [new branch] gh/bobrenjc93/314/head -> origin/gh/bobrenjc93/314/head 2025-04-25T04:11:38.2808126Z * [new branch] gh/bobrenjc93/314/orig -> origin/gh/bobrenjc93/314/orig 2025-04-25T04:11:38.2808635Z * [new branch] gh/bobrenjc93/315/base -> origin/gh/bobrenjc93/315/base 2025-04-25T04:11:38.2809138Z * [new branch] gh/bobrenjc93/315/head -> origin/gh/bobrenjc93/315/head 2025-04-25T04:11:38.2809646Z * [new branch] gh/bobrenjc93/315/orig -> origin/gh/bobrenjc93/315/orig 2025-04-25T04:11:38.3246034Z * [new branch] gh/bobrenjc93/316/base -> origin/gh/bobrenjc93/316/base 2025-04-25T04:11:38.3246663Z * [new branch] gh/bobrenjc93/316/head -> origin/gh/bobrenjc93/316/head 2025-04-25T04:11:38.3247185Z * [new branch] gh/bobrenjc93/316/orig -> origin/gh/bobrenjc93/316/orig 2025-04-25T04:11:38.3247696Z * [new branch] gh/bobrenjc93/317/base -> origin/gh/bobrenjc93/317/base 2025-04-25T04:11:38.3248202Z * [new branch] gh/bobrenjc93/317/head -> origin/gh/bobrenjc93/317/head 2025-04-25T04:11:38.3248714Z * [new branch] gh/bobrenjc93/317/orig -> origin/gh/bobrenjc93/317/orig 2025-04-25T04:11:38.3249222Z * [new branch] gh/bobrenjc93/318/base -> origin/gh/bobrenjc93/318/base 2025-04-25T04:11:38.3249904Z * [new branch] gh/bobrenjc93/318/head -> origin/gh/bobrenjc93/318/head 2025-04-25T04:11:38.3250402Z * [new branch] gh/bobrenjc93/318/orig -> origin/gh/bobrenjc93/318/orig 2025-04-25T04:11:38.3250924Z * [new branch] gh/bobrenjc93/319/base -> origin/gh/bobrenjc93/319/base 2025-04-25T04:11:38.3251469Z * [new branch] gh/bobrenjc93/319/head -> origin/gh/bobrenjc93/319/head 2025-04-25T04:11:38.3252056Z * [new branch] gh/bobrenjc93/319/orig -> origin/gh/bobrenjc93/319/orig 2025-04-25T04:11:38.3252564Z * [new branch] gh/bobrenjc93/320/base -> origin/gh/bobrenjc93/320/base 2025-04-25T04:11:38.3253071Z * [new branch] gh/bobrenjc93/320/head -> origin/gh/bobrenjc93/320/head 2025-04-25T04:11:38.3253580Z * [new branch] gh/bobrenjc93/320/orig -> origin/gh/bobrenjc93/320/orig 2025-04-25T04:11:38.3254097Z * [new branch] gh/bobrenjc93/321/base -> origin/gh/bobrenjc93/321/base 2025-04-25T04:11:38.3254600Z * [new branch] gh/bobrenjc93/321/head -> origin/gh/bobrenjc93/321/head 2025-04-25T04:11:38.3255201Z * [new branch] gh/bobrenjc93/321/orig -> origin/gh/bobrenjc93/321/orig 2025-04-25T04:11:38.3255714Z * [new branch] gh/bobrenjc93/322/base -> origin/gh/bobrenjc93/322/base 2025-04-25T04:11:38.3256226Z * [new branch] gh/bobrenjc93/322/head -> origin/gh/bobrenjc93/322/head 2025-04-25T04:11:38.3256736Z * [new branch] gh/bobrenjc93/322/orig -> origin/gh/bobrenjc93/322/orig 2025-04-25T04:11:38.3257243Z * [new branch] gh/bobrenjc93/323/base -> origin/gh/bobrenjc93/323/base 2025-04-25T04:11:38.3257788Z * [new branch] gh/bobrenjc93/323/head -> origin/gh/bobrenjc93/323/head 2025-04-25T04:11:38.3258322Z * [new branch] gh/bobrenjc93/323/orig -> origin/gh/bobrenjc93/323/orig 2025-04-25T04:11:38.3258838Z * [new branch] gh/bobrenjc93/324/base -> origin/gh/bobrenjc93/324/base 2025-04-25T04:11:38.3259345Z * [new branch] gh/bobrenjc93/324/head -> origin/gh/bobrenjc93/324/head 2025-04-25T04:11:38.3259858Z * [new branch] gh/bobrenjc93/324/orig -> origin/gh/bobrenjc93/324/orig 2025-04-25T04:11:38.3260373Z * [new branch] gh/bobrenjc93/325/base -> origin/gh/bobrenjc93/325/base 2025-04-25T04:11:38.3260871Z * [new branch] gh/bobrenjc93/325/head -> origin/gh/bobrenjc93/325/head 2025-04-25T04:11:38.3261386Z * [new branch] gh/bobrenjc93/325/orig -> origin/gh/bobrenjc93/325/orig 2025-04-25T04:11:38.3261917Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-04-25T04:11:38.3262455Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-04-25T04:11:38.3262957Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-04-25T04:11:38.3263443Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-04-25T04:11:38.3263931Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-04-25T04:11:38.3264371Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-04-25T04:11:38.3264816Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-04-25T04:11:38.3265270Z * [new branch] gh/c00w/43/base -> origin/gh/c00w/43/base 2025-04-25T04:11:38.3265701Z * [new branch] gh/c00w/43/head -> origin/gh/c00w/43/head 2025-04-25T04:11:38.3266143Z * [new branch] gh/c00w/43/orig -> origin/gh/c00w/43/orig 2025-04-25T04:11:38.3266578Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-04-25T04:11:38.3267115Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-04-25T04:11:38.3267564Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-04-25T04:11:38.3268050Z * [new branch] gh/chenyang78/1/base -> origin/gh/chenyang78/1/base 2025-04-25T04:11:38.3268562Z * [new branch] gh/chenyang78/1/head -> origin/gh/chenyang78/1/head 2025-04-25T04:11:38.3269054Z * [new branch] gh/chenyang78/1/orig -> origin/gh/chenyang78/1/orig 2025-04-25T04:11:38.3269593Z * [new branch] gh/chillee/376/base -> origin/gh/chillee/376/base 2025-04-25T04:11:38.3680737Z * [new branch] gh/chillee/376/head -> origin/gh/chillee/376/head 2025-04-25T04:11:38.3681248Z * [new branch] gh/chillee/376/orig -> origin/gh/chillee/376/orig 2025-04-25T04:11:38.3681736Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-04-25T04:11:38.3682294Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-04-25T04:11:38.3682777Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-04-25T04:11:38.3683395Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-04-25T04:11:38.3683899Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-04-25T04:11:38.3684400Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-04-25T04:11:38.3684886Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-04-25T04:11:38.3685374Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-04-25T04:11:38.3685861Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-04-25T04:11:38.3686368Z * [new branch] gh/clee2000/4/base -> origin/gh/clee2000/4/base 2025-04-25T04:11:38.3686846Z * [new branch] gh/clee2000/4/head -> origin/gh/clee2000/4/head 2025-04-25T04:11:38.3687307Z * [new branch] gh/clee2000/4/orig -> origin/gh/clee2000/4/orig 2025-04-25T04:11:38.3687822Z * [new branch] gh/clee2000/5/base -> origin/gh/clee2000/5/base 2025-04-25T04:11:38.3688327Z * [new branch] gh/clee2000/5/head -> origin/gh/clee2000/5/head 2025-04-25T04:11:38.3688787Z * [new branch] gh/clee2000/5/orig -> origin/gh/clee2000/5/orig 2025-04-25T04:11:38.3689258Z * [new branch] gh/clee2000/6/base -> origin/gh/clee2000/6/base 2025-04-25T04:11:38.3689718Z * [new branch] gh/clee2000/6/head -> origin/gh/clee2000/6/head 2025-04-25T04:11:38.3690184Z * [new branch] gh/clee2000/6/orig -> origin/gh/clee2000/6/orig 2025-04-25T04:11:38.3690662Z * [new branch] gh/clee2000/7/base -> origin/gh/clee2000/7/base 2025-04-25T04:11:38.3691129Z * [new branch] gh/clee2000/7/head -> origin/gh/clee2000/7/head 2025-04-25T04:11:38.3691601Z * [new branch] gh/clee2000/7/orig -> origin/gh/clee2000/7/orig 2025-04-25T04:11:38.3692064Z * [new branch] gh/clee2000/8/base -> origin/gh/clee2000/8/base 2025-04-25T04:11:38.3692535Z * [new branch] gh/clee2000/8/head -> origin/gh/clee2000/8/head 2025-04-25T04:11:38.3693004Z * [new branch] gh/clee2000/8/orig -> origin/gh/clee2000/8/orig 2025-04-25T04:11:38.3693593Z * [new branch] gh/davidberard98/230/base -> origin/gh/davidberard98/230/base 2025-04-25T04:11:38.3694162Z * [new branch] gh/davidberard98/230/head -> origin/gh/davidberard98/230/head 2025-04-25T04:11:38.3694706Z * [new branch] gh/davidberard98/230/orig -> origin/gh/davidberard98/230/orig 2025-04-25T04:11:38.3695361Z * [new branch] gh/davidberard98/335/base -> origin/gh/davidberard98/335/base 2025-04-25T04:11:38.3695902Z * [new branch] gh/davidberard98/335/head -> origin/gh/davidberard98/335/head 2025-04-25T04:11:38.3696466Z * [new branch] gh/davidberard98/335/orig -> origin/gh/davidberard98/335/orig 2025-04-25T04:11:38.3697023Z * [new branch] gh/davidberard98/343/base -> origin/gh/davidberard98/343/base 2025-04-25T04:11:38.3697566Z * [new branch] gh/davidberard98/343/head -> origin/gh/davidberard98/343/head 2025-04-25T04:11:38.3698115Z * [new branch] gh/davidberard98/343/orig -> origin/gh/davidberard98/343/orig 2025-04-25T04:11:38.3698665Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-04-25T04:11:38.3699289Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-04-25T04:11:38.3699834Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-04-25T04:11:38.3700376Z * [new branch] gh/davidberard98/348/base -> origin/gh/davidberard98/348/base 2025-04-25T04:11:38.3701009Z * [new branch] gh/davidberard98/348/head -> origin/gh/davidberard98/348/head 2025-04-25T04:11:38.3701553Z * [new branch] gh/davidberard98/348/orig -> origin/gh/davidberard98/348/orig 2025-04-25T04:11:38.3702098Z * [new branch] gh/davidberard98/349/base -> origin/gh/davidberard98/349/base 2025-04-25T04:11:38.3702645Z * [new branch] gh/davidberard98/349/head -> origin/gh/davidberard98/349/head 2025-04-25T04:11:38.3703187Z * [new branch] gh/davidberard98/349/orig -> origin/gh/davidberard98/349/orig 2025-04-25T04:11:38.3703737Z * [new branch] gh/davidberard98/350/base -> origin/gh/davidberard98/350/base 2025-04-25T04:11:38.4132221Z * [new branch] gh/davidberard98/350/head -> origin/gh/davidberard98/350/head 2025-04-25T04:11:38.4132884Z * [new branch] gh/davidberard98/350/orig -> origin/gh/davidberard98/350/orig 2025-04-25T04:11:38.4133435Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-04-25T04:11:38.4133990Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-04-25T04:11:38.4134584Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-04-25T04:11:38.4135165Z * [new branch] gh/davidberard98/352/base -> origin/gh/davidberard98/352/base 2025-04-25T04:11:38.4135716Z * [new branch] gh/davidberard98/352/head -> origin/gh/davidberard98/352/head 2025-04-25T04:11:38.4136263Z * [new branch] gh/davidberard98/352/orig -> origin/gh/davidberard98/352/orig 2025-04-25T04:11:38.4136815Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-04-25T04:11:38.4137370Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-04-25T04:11:38.4137923Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-04-25T04:11:38.4138454Z * [new branch] gh/desertfire/535/base -> origin/gh/desertfire/535/base 2025-04-25T04:11:38.4138983Z * [new branch] gh/desertfire/535/head -> origin/gh/desertfire/535/head 2025-04-25T04:11:38.4139493Z * [new branch] gh/desertfire/535/orig -> origin/gh/desertfire/535/orig 2025-04-25T04:11:38.4140052Z * [new branch] gh/desertfire/542/base -> origin/gh/desertfire/542/base 2025-04-25T04:11:38.4140603Z * [new branch] gh/desertfire/542/head -> origin/gh/desertfire/542/head 2025-04-25T04:11:38.4141119Z * [new branch] gh/desertfire/542/orig -> origin/gh/desertfire/542/orig 2025-04-25T04:11:38.4141633Z * [new branch] gh/desertfire/547/base -> origin/gh/desertfire/547/base 2025-04-25T04:11:38.4142292Z * [new branch] gh/desertfire/547/head -> origin/gh/desertfire/547/head 2025-04-25T04:11:38.4142804Z * [new branch] gh/desertfire/547/orig -> origin/gh/desertfire/547/orig 2025-04-25T04:11:38.4143317Z * [new branch] gh/desertfire/551/base -> origin/gh/desertfire/551/base 2025-04-25T04:11:38.4143834Z * [new branch] gh/desertfire/551/head -> origin/gh/desertfire/551/head 2025-04-25T04:11:38.4144348Z * [new branch] gh/desertfire/551/orig -> origin/gh/desertfire/551/orig 2025-04-25T04:11:38.4144858Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-04-25T04:11:38.4145384Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-04-25T04:11:38.4145977Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-04-25T04:11:38.4146500Z * [new branch] gh/desertfire/560/base -> origin/gh/desertfire/560/base 2025-04-25T04:11:38.4147018Z * [new branch] gh/desertfire/560/head -> origin/gh/desertfire/560/head 2025-04-25T04:11:38.4147620Z * [new branch] gh/desertfire/560/orig -> origin/gh/desertfire/560/orig 2025-04-25T04:11:38.4148137Z * [new branch] gh/desertfire/561/base -> origin/gh/desertfire/561/base 2025-04-25T04:11:38.4148650Z * [new branch] gh/desertfire/561/head -> origin/gh/desertfire/561/head 2025-04-25T04:11:38.4149168Z * [new branch] gh/desertfire/561/orig -> origin/gh/desertfire/561/orig 2025-04-25T04:11:38.4149701Z * [new branch] gh/desertfire/562/base -> origin/gh/desertfire/562/base 2025-04-25T04:11:38.4150214Z * [new branch] gh/desertfire/562/head -> origin/gh/desertfire/562/head 2025-04-25T04:11:38.4150729Z * [new branch] gh/desertfire/562/orig -> origin/gh/desertfire/562/orig 2025-04-25T04:11:38.4151290Z * [new branch] gh/desertfire/563/base -> origin/gh/desertfire/563/base 2025-04-25T04:11:38.4151850Z * [new branch] gh/desertfire/563/head -> origin/gh/desertfire/563/head 2025-04-25T04:11:38.4152360Z * [new branch] gh/desertfire/563/orig -> origin/gh/desertfire/563/orig 2025-04-25T04:11:38.4152876Z * [new branch] gh/desertfire/564/base -> origin/gh/desertfire/564/base 2025-04-25T04:11:38.4153392Z * [new branch] gh/desertfire/564/head -> origin/gh/desertfire/564/head 2025-04-25T04:11:38.4153901Z * [new branch] gh/desertfire/564/orig -> origin/gh/desertfire/564/orig 2025-04-25T04:11:38.4154421Z * [new branch] gh/desertfire/565/base -> origin/gh/desertfire/565/base 2025-04-25T04:11:38.4154935Z * [new branch] gh/desertfire/565/head -> origin/gh/desertfire/565/head 2025-04-25T04:11:38.4155463Z * [new branch] gh/desertfire/565/orig -> origin/gh/desertfire/565/orig 2025-04-25T04:11:38.4155973Z * [new branch] gh/desertfire/566/base -> origin/gh/desertfire/566/base 2025-04-25T04:11:38.4156490Z * [new branch] gh/desertfire/566/head -> origin/gh/desertfire/566/head 2025-04-25T04:11:38.4579016Z * [new branch] gh/desertfire/566/orig -> origin/gh/desertfire/566/orig 2025-04-25T04:11:38.4579611Z * [new branch] gh/desertfire/567/base -> origin/gh/desertfire/567/base 2025-04-25T04:11:38.4580135Z * [new branch] gh/desertfire/567/head -> origin/gh/desertfire/567/head 2025-04-25T04:11:38.4580660Z * [new branch] gh/desertfire/567/orig -> origin/gh/desertfire/567/orig 2025-04-25T04:11:38.4581168Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-04-25T04:11:38.4581655Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-04-25T04:11:38.4582296Z * [new branch] gh/dharakk/2/base -> origin/gh/dharakk/2/base 2025-04-25T04:11:38.4582765Z * [new branch] gh/dharakk/2/head -> origin/gh/dharakk/2/head 2025-04-25T04:11:38.4583254Z * [new branch] gh/dharakk/2/orig -> origin/gh/dharakk/2/orig 2025-04-25T04:11:38.4583734Z * [new branch] gh/dharakk/3/base -> origin/gh/dharakk/3/base 2025-04-25T04:11:38.4584207Z * [new branch] gh/dharakk/3/head -> origin/gh/dharakk/3/head 2025-04-25T04:11:38.4584685Z * [new branch] gh/dharakk/3/orig -> origin/gh/dharakk/3/orig 2025-04-25T04:11:38.4585166Z * [new branch] gh/drisspg/103/base -> origin/gh/drisspg/103/base 2025-04-25T04:11:38.4585666Z * [new branch] gh/drisspg/103/head -> origin/gh/drisspg/103/head 2025-04-25T04:11:38.4586156Z * [new branch] gh/drisspg/103/orig -> origin/gh/drisspg/103/orig 2025-04-25T04:11:38.4586652Z * [new branch] gh/drisspg/104/base -> origin/gh/drisspg/104/base 2025-04-25T04:11:38.4587132Z * [new branch] gh/drisspg/104/head -> origin/gh/drisspg/104/head 2025-04-25T04:11:38.4587717Z * [new branch] gh/drisspg/104/orig -> origin/gh/drisspg/104/orig 2025-04-25T04:11:38.4588218Z * [new branch] gh/drisspg/111/base -> origin/gh/drisspg/111/base 2025-04-25T04:11:38.4588699Z * [new branch] gh/drisspg/111/head -> origin/gh/drisspg/111/head 2025-04-25T04:11:38.4589190Z * [new branch] gh/drisspg/111/orig -> origin/gh/drisspg/111/orig 2025-04-25T04:11:38.4589673Z * [new branch] gh/drisspg/119/base -> origin/gh/drisspg/119/base 2025-04-25T04:11:38.4590170Z * [new branch] gh/drisspg/119/head -> origin/gh/drisspg/119/head 2025-04-25T04:11:38.4590655Z * [new branch] gh/drisspg/119/orig -> origin/gh/drisspg/119/orig 2025-04-25T04:11:38.4591146Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-04-25T04:11:38.4591635Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-04-25T04:11:38.4592117Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-04-25T04:11:38.4592621Z * [new branch] gh/drisspg/137/base -> origin/gh/drisspg/137/base 2025-04-25T04:11:38.4593103Z * [new branch] gh/drisspg/137/head -> origin/gh/drisspg/137/head 2025-04-25T04:11:38.4593587Z * [new branch] gh/drisspg/137/orig -> origin/gh/drisspg/137/orig 2025-04-25T04:11:38.4594073Z * [new branch] gh/drisspg/138/base -> origin/gh/drisspg/138/base 2025-04-25T04:11:38.4594555Z * [new branch] gh/drisspg/138/head -> origin/gh/drisspg/138/head 2025-04-25T04:11:38.4595041Z * [new branch] gh/drisspg/138/orig -> origin/gh/drisspg/138/orig 2025-04-25T04:11:38.4595523Z * [new branch] gh/drisspg/139/base -> origin/gh/drisspg/139/base 2025-04-25T04:11:38.4596011Z * [new branch] gh/drisspg/139/head -> origin/gh/drisspg/139/head 2025-04-25T04:11:38.4596486Z * [new branch] gh/drisspg/139/orig -> origin/gh/drisspg/139/orig 2025-04-25T04:11:38.4596973Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-04-25T04:11:38.4597461Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-04-25T04:11:38.4597940Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-04-25T04:11:38.4598425Z * [new branch] gh/drisspg/141/base -> origin/gh/drisspg/141/base 2025-04-25T04:11:38.4598904Z * [new branch] gh/drisspg/141/head -> origin/gh/drisspg/141/head 2025-04-25T04:11:38.4599480Z * [new branch] gh/drisspg/141/orig -> origin/gh/drisspg/141/orig 2025-04-25T04:11:38.4599974Z * [new branch] gh/drisspg/142/base -> origin/gh/drisspg/142/base 2025-04-25T04:11:38.4600457Z * [new branch] gh/drisspg/142/head -> origin/gh/drisspg/142/head 2025-04-25T04:11:38.4600949Z * [new branch] gh/drisspg/142/orig -> origin/gh/drisspg/142/orig 2025-04-25T04:11:38.4601433Z * [new branch] gh/drisspg/143/base -> origin/gh/drisspg/143/base 2025-04-25T04:11:38.4601923Z * [new branch] gh/drisspg/143/head -> origin/gh/drisspg/143/head 2025-04-25T04:11:38.5878287Z * [new branch] gh/drisspg/143/orig -> origin/gh/drisspg/143/orig 2025-04-25T04:11:38.5878848Z * [new branch] gh/drisspg/144/base -> origin/gh/drisspg/144/base 2025-04-25T04:11:38.5879347Z * [new branch] gh/drisspg/144/head -> origin/gh/drisspg/144/head 2025-04-25T04:11:38.5879853Z * [new branch] gh/drisspg/144/orig -> origin/gh/drisspg/144/orig 2025-04-25T04:11:38.5880340Z * [new branch] gh/drisspg/145/base -> origin/gh/drisspg/145/base 2025-04-25T04:11:38.5881005Z * [new branch] gh/drisspg/145/head -> origin/gh/drisspg/145/head 2025-04-25T04:11:38.5881489Z * [new branch] gh/drisspg/145/orig -> origin/gh/drisspg/145/orig 2025-04-25T04:11:38.5881978Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-04-25T04:11:38.5882481Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-04-25T04:11:38.5882957Z * [new branch] gh/dsjohns2/2/base -> origin/gh/dsjohns2/2/base 2025-04-25T04:11:38.5883441Z * [new branch] gh/dsjohns2/2/head -> origin/gh/dsjohns2/2/head 2025-04-25T04:11:38.5883919Z * [new branch] gh/dsjohns2/2/orig -> origin/gh/dsjohns2/2/orig 2025-04-25T04:11:38.5884413Z * [new branch] gh/eellison/555/base -> origin/gh/eellison/555/base 2025-04-25T04:11:38.5884909Z * [new branch] gh/eellison/555/head -> origin/gh/eellison/555/head 2025-04-25T04:11:38.5885409Z * [new branch] gh/eellison/555/orig -> origin/gh/eellison/555/orig 2025-04-25T04:11:38.5885904Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-04-25T04:11:38.5886458Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-04-25T04:11:38.5886949Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-04-25T04:11:38.5887441Z * [new branch] gh/eellison/761/base -> origin/gh/eellison/761/base 2025-04-25T04:11:38.5887950Z * [new branch] gh/eellison/761/head -> origin/gh/eellison/761/head 2025-04-25T04:11:38.5888451Z * [new branch] gh/eellison/761/orig -> origin/gh/eellison/761/orig 2025-04-25T04:11:38.5888934Z * [new branch] gh/eellison/764/base -> origin/gh/eellison/764/base 2025-04-25T04:11:38.5889434Z * [new branch] gh/eellison/764/head -> origin/gh/eellison/764/head 2025-04-25T04:11:38.5889917Z * [new branch] gh/eellison/764/orig -> origin/gh/eellison/764/orig 2025-04-25T04:11:38.5890403Z * [new branch] gh/eellison/767/base -> origin/gh/eellison/767/base 2025-04-25T04:11:38.5890961Z * [new branch] gh/eellison/767/head -> origin/gh/eellison/767/head 2025-04-25T04:11:38.5891531Z * [new branch] gh/eellison/767/orig -> origin/gh/eellison/767/orig 2025-04-25T04:11:38.5892030Z * [new branch] gh/eellison/773/base -> origin/gh/eellison/773/base 2025-04-25T04:11:38.5892519Z * [new branch] gh/eellison/773/head -> origin/gh/eellison/773/head 2025-04-25T04:11:38.5893132Z * [new branch] gh/eellison/773/orig -> origin/gh/eellison/773/orig 2025-04-25T04:11:38.5893619Z * [new branch] gh/eellison/774/base -> origin/gh/eellison/774/base 2025-04-25T04:11:38.5894124Z * [new branch] gh/eellison/774/head -> origin/gh/eellison/774/head 2025-04-25T04:11:38.5894623Z * [new branch] gh/eellison/775/base -> origin/gh/eellison/775/base 2025-04-25T04:11:38.5895110Z * [new branch] gh/eellison/775/head -> origin/gh/eellison/775/head 2025-04-25T04:11:38.5895618Z * [new branch] gh/eellison/775/orig -> origin/gh/eellison/775/orig 2025-04-25T04:11:38.5896102Z * [new branch] gh/eellison/776/base -> origin/gh/eellison/776/base 2025-04-25T04:11:38.5896599Z * [new branch] gh/eellison/776/head -> origin/gh/eellison/776/head 2025-04-25T04:11:38.5897087Z * [new branch] gh/eellison/776/orig -> origin/gh/eellison/776/orig 2025-04-25T04:11:38.5897577Z * [new branch] gh/eellison/777/base -> origin/gh/eellison/777/base 2025-04-25T04:11:38.5898082Z * [new branch] gh/eellison/777/head -> origin/gh/eellison/777/head 2025-04-25T04:11:38.5898656Z * [new branch] gh/eellison/777/orig -> origin/gh/eellison/777/orig 2025-04-25T04:11:38.5899171Z * [new branch] gh/eellison/778/base -> origin/gh/eellison/778/base 2025-04-25T04:11:38.5899680Z * [new branch] gh/eellison/778/head -> origin/gh/eellison/778/head 2025-04-25T04:11:38.5900166Z * [new branch] gh/eellison/778/orig -> origin/gh/eellison/778/orig 2025-04-25T04:11:38.5900680Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-04-25T04:11:38.5901167Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-04-25T04:11:38.6332231Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-04-25T04:11:38.6332871Z * [new branch] gh/eellison/780/base -> origin/gh/eellison/780/base 2025-04-25T04:11:38.6333433Z * [new branch] gh/eellison/780/head -> origin/gh/eellison/780/head 2025-04-25T04:11:38.6333940Z * [new branch] gh/eellison/780/orig -> origin/gh/eellison/780/orig 2025-04-25T04:11:38.6334440Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-04-25T04:11:38.6334928Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-04-25T04:11:38.6335428Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-04-25T04:11:38.6335923Z * [new branch] gh/eellison/782/base -> origin/gh/eellison/782/base 2025-04-25T04:11:38.6336416Z * [new branch] gh/eellison/782/head -> origin/gh/eellison/782/head 2025-04-25T04:11:38.6336914Z * [new branch] gh/eellison/782/orig -> origin/gh/eellison/782/orig 2025-04-25T04:11:38.6337406Z * [new branch] gh/eellison/783/base -> origin/gh/eellison/783/base 2025-04-25T04:11:38.6337913Z * [new branch] gh/eellison/783/head -> origin/gh/eellison/783/head 2025-04-25T04:11:38.6338441Z * [new branch] gh/eellison/783/orig -> origin/gh/eellison/783/orig 2025-04-25T04:11:38.6339008Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-04-25T04:11:38.6339498Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-04-25T04:11:38.6339987Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-04-25T04:11:38.6340486Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-04-25T04:11:38.6340973Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-04-25T04:11:38.6341632Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-04-25T04:11:38.6342109Z * [new branch] gh/etaf/112/base -> origin/gh/etaf/112/base 2025-04-25T04:11:38.6342581Z * [new branch] gh/etaf/112/head -> origin/gh/etaf/112/head 2025-04-25T04:11:38.6343053Z * [new branch] gh/etaf/112/orig -> origin/gh/etaf/112/orig 2025-04-25T04:11:38.6343507Z * [new branch] gh/etaf/113/base -> origin/gh/etaf/113/base 2025-04-25T04:11:38.6343971Z * [new branch] gh/etaf/113/head -> origin/gh/etaf/113/head 2025-04-25T04:11:38.6344494Z * [new branch] gh/etaf/113/orig -> origin/gh/etaf/113/orig 2025-04-25T04:11:38.6371865Z * [new branch] gh/etaf/114/base -> origin/gh/etaf/114/base 2025-04-25T04:11:38.6372805Z * [new branch] gh/etaf/114/head -> origin/gh/etaf/114/head 2025-04-25T04:11:38.6373354Z * [new branch] gh/etaf/115/base -> origin/gh/etaf/115/base 2025-04-25T04:11:38.6373959Z * [new branch] gh/etaf/116/base -> origin/gh/etaf/116/base 2025-04-25T04:11:38.6374626Z * [new branch] gh/etaf/116/head -> origin/gh/etaf/116/head 2025-04-25T04:11:38.6375338Z * [new branch] gh/etaf/116/orig -> origin/gh/etaf/116/orig 2025-04-25T04:11:38.6375844Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-04-25T04:11:38.6376434Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-04-25T04:11:38.6376927Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-04-25T04:11:38.6377387Z * [new branch] gh/etaf/118/base -> origin/gh/etaf/118/base 2025-04-25T04:11:38.6377916Z * [new branch] gh/etaf/118/head -> origin/gh/etaf/118/head 2025-04-25T04:11:38.6378466Z * [new branch] gh/etaf/118/orig -> origin/gh/etaf/118/orig 2025-04-25T04:11:38.6378932Z * [new branch] gh/etaf/119/base -> origin/gh/etaf/119/base 2025-04-25T04:11:38.6379389Z * [new branch] gh/etaf/119/head -> origin/gh/etaf/119/head 2025-04-25T04:11:38.6379846Z * [new branch] gh/etaf/119/orig -> origin/gh/etaf/119/orig 2025-04-25T04:11:38.6380317Z * [new branch] gh/etaf/68/base -> origin/gh/etaf/68/base 2025-04-25T04:11:38.6380983Z * [new branch] gh/etaf/68/head -> origin/gh/etaf/68/head 2025-04-25T04:11:38.6381445Z * [new branch] gh/etaf/68/orig -> origin/gh/etaf/68/orig 2025-04-25T04:11:38.6381885Z * [new branch] gh/etaf/69/base -> origin/gh/etaf/69/base 2025-04-25T04:11:38.6382333Z * [new branch] gh/etaf/69/head -> origin/gh/etaf/69/head 2025-04-25T04:11:38.6382793Z * [new branch] gh/etaf/69/orig -> origin/gh/etaf/69/orig 2025-04-25T04:11:38.6383236Z * [new branch] gh/etaf/84/base -> origin/gh/etaf/84/base 2025-04-25T04:11:38.6383699Z * [new branch] gh/etaf/84/head -> origin/gh/etaf/84/head 2025-04-25T04:11:38.8249563Z * [new branch] gh/etaf/84/orig -> origin/gh/etaf/84/orig 2025-04-25T04:11:38.8250396Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-04-25T04:11:38.8251164Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-04-25T04:11:38.8251935Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-04-25T04:11:38.8252725Z * [new branch] gh/ezyang/2449/orig -> origin/gh/ezyang/2449/orig 2025-04-25T04:11:38.8253493Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-04-25T04:11:38.8254207Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-04-25T04:11:38.8254708Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-04-25T04:11:38.8255310Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-04-25T04:11:38.8255844Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-04-25T04:11:38.8256334Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-04-25T04:11:38.8256809Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-04-25T04:11:38.8257287Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-04-25T04:11:38.8257782Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-04-25T04:11:38.8258257Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-04-25T04:11:38.8258741Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-04-25T04:11:38.8259329Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-04-25T04:11:38.8259825Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-04-25T04:11:38.8260311Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-04-25T04:11:38.8260834Z * [new branch] gh/fduwjj/116/base -> origin/gh/fduwjj/116/base 2025-04-25T04:11:38.8261357Z * [new branch] gh/fduwjj/116/head -> origin/gh/fduwjj/116/head 2025-04-25T04:11:38.8261831Z * [new branch] gh/fduwjj/116/orig -> origin/gh/fduwjj/116/orig 2025-04-25T04:11:38.8262313Z * [new branch] gh/fduwjj/117/base -> origin/gh/fduwjj/117/base 2025-04-25T04:11:38.8262791Z * [new branch] gh/fduwjj/117/head -> origin/gh/fduwjj/117/head 2025-04-25T04:11:38.8263257Z * [new branch] gh/fduwjj/117/orig -> origin/gh/fduwjj/117/orig 2025-04-25T04:11:38.8263739Z * [new branch] gh/fduwjj/118/base -> origin/gh/fduwjj/118/base 2025-04-25T04:11:38.8264209Z * [new branch] gh/fduwjj/118/head -> origin/gh/fduwjj/118/head 2025-04-25T04:11:38.8264691Z * [new branch] gh/fduwjj/118/orig -> origin/gh/fduwjj/118/orig 2025-04-25T04:11:38.8265162Z * [new branch] gh/fduwjj/119/base -> origin/gh/fduwjj/119/base 2025-04-25T04:11:38.8265644Z * [new branch] gh/fduwjj/119/head -> origin/gh/fduwjj/119/head 2025-04-25T04:11:38.8266127Z * [new branch] gh/fduwjj/119/orig -> origin/gh/fduwjj/119/orig 2025-04-25T04:11:38.8266659Z * [new branch] gh/fduwjj/120/base -> origin/gh/fduwjj/120/base 2025-04-25T04:11:38.8267190Z * [new branch] gh/fduwjj/120/head -> origin/gh/fduwjj/120/head 2025-04-25T04:11:38.8267661Z * [new branch] gh/fduwjj/120/orig -> origin/gh/fduwjj/120/orig 2025-04-25T04:11:38.8268147Z * [new branch] gh/fduwjj/121/base -> origin/gh/fduwjj/121/base 2025-04-25T04:11:38.8268630Z * [new branch] gh/fduwjj/121/head -> origin/gh/fduwjj/121/head 2025-04-25T04:11:38.8269100Z * [new branch] gh/fduwjj/121/orig -> origin/gh/fduwjj/121/orig 2025-04-25T04:11:38.8269592Z * [new branch] gh/fduwjj/122/base -> origin/gh/fduwjj/122/base 2025-04-25T04:11:38.8270064Z * [new branch] gh/fduwjj/122/head -> origin/gh/fduwjj/122/head 2025-04-25T04:11:38.8270543Z * [new branch] gh/fduwjj/122/orig -> origin/gh/fduwjj/122/orig 2025-04-25T04:11:38.8271025Z * [new branch] gh/fduwjj/123/base -> origin/gh/fduwjj/123/base 2025-04-25T04:11:38.8271592Z * [new branch] gh/fduwjj/123/head -> origin/gh/fduwjj/123/head 2025-04-25T04:11:38.8272129Z * [new branch] gh/fduwjj/123/orig -> origin/gh/fduwjj/123/orig 2025-04-25T04:11:38.8272652Z * [new branch] gh/fduwjj/124/base -> origin/gh/fduwjj/124/base 2025-04-25T04:11:38.8273138Z * [new branch] gh/fduwjj/124/head -> origin/gh/fduwjj/124/head 2025-04-25T04:11:38.8273608Z * [new branch] gh/fduwjj/124/orig -> origin/gh/fduwjj/124/orig 2025-04-25T04:11:38.8274088Z * [new branch] gh/fduwjj/125/base -> origin/gh/fduwjj/125/base 2025-04-25T04:11:38.8274572Z * [new branch] gh/fduwjj/125/head -> origin/gh/fduwjj/125/head 2025-04-25T04:11:38.8695249Z * [new branch] gh/fduwjj/125/orig -> origin/gh/fduwjj/125/orig 2025-04-25T04:11:38.8695787Z * [new branch] gh/fduwjj/126/base -> origin/gh/fduwjj/126/base 2025-04-25T04:11:38.8696319Z * [new branch] gh/fduwjj/126/head -> origin/gh/fduwjj/126/head 2025-04-25T04:11:38.8696799Z * [new branch] gh/fduwjj/126/orig -> origin/gh/fduwjj/126/orig 2025-04-25T04:11:38.8697453Z * [new branch] gh/fduwjj/127/base -> origin/gh/fduwjj/127/base 2025-04-25T04:11:38.8697969Z * [new branch] gh/fduwjj/127/head -> origin/gh/fduwjj/127/head 2025-04-25T04:11:38.8698487Z * [new branch] gh/fduwjj/127/orig -> origin/gh/fduwjj/127/orig 2025-04-25T04:11:38.8698973Z * [new branch] gh/fduwjj/128/base -> origin/gh/fduwjj/128/base 2025-04-25T04:11:38.8699442Z * [new branch] gh/fduwjj/128/head -> origin/gh/fduwjj/128/head 2025-04-25T04:11:38.8699918Z * [new branch] gh/fduwjj/128/orig -> origin/gh/fduwjj/128/orig 2025-04-25T04:11:38.8700392Z * [new branch] gh/fduwjj/129/base -> origin/gh/fduwjj/129/base 2025-04-25T04:11:38.8700879Z * [new branch] gh/fduwjj/129/head -> origin/gh/fduwjj/129/head 2025-04-25T04:11:38.8701371Z * [new branch] gh/fduwjj/129/orig -> origin/gh/fduwjj/129/orig 2025-04-25T04:11:38.8701838Z * [new branch] gh/fduwjj/130/base -> origin/gh/fduwjj/130/base 2025-04-25T04:11:38.8702325Z * [new branch] gh/fduwjj/130/head -> origin/gh/fduwjj/130/head 2025-04-25T04:11:38.8702790Z * [new branch] gh/fduwjj/130/orig -> origin/gh/fduwjj/130/orig 2025-04-25T04:11:38.8703312Z * [new branch] gh/fduwjj/131/base -> origin/gh/fduwjj/131/base 2025-04-25T04:11:38.8703820Z * [new branch] gh/fduwjj/131/head -> origin/gh/fduwjj/131/head 2025-04-25T04:11:38.8704299Z * [new branch] gh/fduwjj/131/orig -> origin/gh/fduwjj/131/orig 2025-04-25T04:11:38.8704776Z * [new branch] gh/fduwjj/132/base -> origin/gh/fduwjj/132/base 2025-04-25T04:11:38.8705241Z * [new branch] gh/fduwjj/132/head -> origin/gh/fduwjj/132/head 2025-04-25T04:11:38.8705720Z * [new branch] gh/fduwjj/132/orig -> origin/gh/fduwjj/132/orig 2025-04-25T04:11:38.8706193Z * [new branch] gh/fduwjj/133/base -> origin/gh/fduwjj/133/base 2025-04-25T04:11:38.8706670Z * [new branch] gh/fduwjj/133/head -> origin/gh/fduwjj/133/head 2025-04-25T04:11:38.8707143Z * [new branch] gh/fduwjj/133/orig -> origin/gh/fduwjj/133/orig 2025-04-25T04:11:38.8707607Z * [new branch] gh/fegin/169/base -> origin/gh/fegin/169/base 2025-04-25T04:11:38.8708077Z * [new branch] gh/fegin/169/head -> origin/gh/fegin/169/head 2025-04-25T04:11:38.8708533Z * [new branch] gh/fegin/169/orig -> origin/gh/fegin/169/orig 2025-04-25T04:11:38.8709149Z * [new branch] gh/fegin/171/base -> origin/gh/fegin/171/base 2025-04-25T04:11:38.8709657Z * [new branch] gh/fegin/171/head -> origin/gh/fegin/171/head 2025-04-25T04:11:38.8710133Z * [new branch] gh/fegin/171/orig -> origin/gh/fegin/171/orig 2025-04-25T04:11:38.8710610Z * [new branch] gh/fegin/172/base -> origin/gh/fegin/172/base 2025-04-25T04:11:38.8711067Z * [new branch] gh/fegin/172/head -> origin/gh/fegin/172/head 2025-04-25T04:11:38.8711541Z * [new branch] gh/fegin/172/orig -> origin/gh/fegin/172/orig 2025-04-25T04:11:38.8711999Z * [new branch] gh/fegin/294/base -> origin/gh/fegin/294/base 2025-04-25T04:11:38.8712473Z * [new branch] gh/fegin/294/head -> origin/gh/fegin/294/head 2025-04-25T04:11:38.8712944Z * [new branch] gh/fegin/294/orig -> origin/gh/fegin/294/orig 2025-04-25T04:11:38.8713410Z * [new branch] gh/fegin/297/base -> origin/gh/fegin/297/base 2025-04-25T04:11:38.8713887Z * [new branch] gh/fegin/297/head -> origin/gh/fegin/297/head 2025-04-25T04:11:38.8714435Z * [new branch] gh/fegin/297/orig -> origin/gh/fegin/297/orig 2025-04-25T04:11:38.8714987Z * [new branch] gh/fegin/298/base -> origin/gh/fegin/298/base 2025-04-25T04:11:38.8715465Z * [new branch] gh/fegin/298/head -> origin/gh/fegin/298/head 2025-04-25T04:11:38.8715932Z * [new branch] gh/fegin/298/orig -> origin/gh/fegin/298/orig 2025-04-25T04:11:38.8716406Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-04-25T04:11:38.8716873Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-04-25T04:11:38.8717343Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-04-25T04:11:38.8717819Z * [new branch] gh/fffrog/44/base -> origin/gh/fffrog/44/base 2025-04-25T04:11:38.8718286Z * [new branch] gh/fffrog/44/head -> origin/gh/fffrog/44/head 2025-04-25T04:11:38.9141580Z * [new branch] gh/fffrog/44/orig -> origin/gh/fffrog/44/orig 2025-04-25T04:11:38.9142131Z * [new branch] gh/fffrog/47/base -> origin/gh/fffrog/47/base 2025-04-25T04:11:38.9142599Z * [new branch] gh/fffrog/47/head -> origin/gh/fffrog/47/head 2025-04-25T04:11:38.9143066Z * [new branch] gh/fffrog/47/orig -> origin/gh/fffrog/47/orig 2025-04-25T04:11:38.9143533Z * [new branch] gh/fffrog/48/base -> origin/gh/fffrog/48/base 2025-04-25T04:11:38.9144003Z * [new branch] gh/fffrog/48/head -> origin/gh/fffrog/48/head 2025-04-25T04:11:38.9144477Z * [new branch] gh/fffrog/48/orig -> origin/gh/fffrog/48/orig 2025-04-25T04:11:38.9144949Z * [new branch] gh/fffrog/49/base -> origin/gh/fffrog/49/base 2025-04-25T04:11:38.9145409Z * [new branch] gh/fffrog/49/head -> origin/gh/fffrog/49/head 2025-04-25T04:11:38.9145875Z * [new branch] gh/fffrog/49/orig -> origin/gh/fffrog/49/orig 2025-04-25T04:11:38.9146370Z * [new branch] gh/fffrog/53/base -> origin/gh/fffrog/53/base 2025-04-25T04:11:38.9146885Z * [new branch] gh/fffrog/53/head -> origin/gh/fffrog/53/head 2025-04-25T04:11:38.9147365Z * [new branch] gh/fffrog/53/orig -> origin/gh/fffrog/53/orig 2025-04-25T04:11:38.9147831Z * [new branch] gh/fffrog/54/base -> origin/gh/fffrog/54/base 2025-04-25T04:11:38.9148300Z * [new branch] gh/fffrog/54/head -> origin/gh/fffrog/54/head 2025-04-25T04:11:38.9148766Z * [new branch] gh/fffrog/54/orig -> origin/gh/fffrog/54/orig 2025-04-25T04:11:38.9150008Z * [new branch] gh/fffrog/55/base -> origin/gh/fffrog/55/base 2025-04-25T04:11:38.9150469Z * [new branch] gh/fffrog/55/head -> origin/gh/fffrog/55/head 2025-04-25T04:11:38.9150947Z * [new branch] gh/fffrog/55/orig -> origin/gh/fffrog/55/orig 2025-04-25T04:11:38.9151417Z * [new branch] gh/fffrog/56/base -> origin/gh/fffrog/56/base 2025-04-25T04:11:38.9151881Z * [new branch] gh/fffrog/56/head -> origin/gh/fffrog/56/head 2025-04-25T04:11:38.9152394Z * [new branch] gh/fffrog/56/orig -> origin/gh/fffrog/56/orig 2025-04-25T04:11:38.9152903Z * [new branch] gh/fffrog/57/base -> origin/gh/fffrog/57/base 2025-04-25T04:11:38.9153379Z * [new branch] gh/fffrog/57/head -> origin/gh/fffrog/57/head 2025-04-25T04:11:38.9153840Z * [new branch] gh/fffrog/57/orig -> origin/gh/fffrog/57/orig 2025-04-25T04:11:38.9154332Z * [new branch] gh/fffrog/58/base -> origin/gh/fffrog/58/base 2025-04-25T04:11:38.9154789Z * [new branch] gh/fffrog/58/head -> origin/gh/fffrog/58/head 2025-04-25T04:11:38.9155737Z * [new branch] gh/fffrog/58/orig -> origin/gh/fffrog/58/orig 2025-04-25T04:11:38.9156218Z * [new branch] gh/fffrog/59/base -> origin/gh/fffrog/59/base 2025-04-25T04:11:38.9156689Z * [new branch] gh/fffrog/59/head -> origin/gh/fffrog/59/head 2025-04-25T04:11:38.9157154Z * [new branch] gh/fffrog/59/orig -> origin/gh/fffrog/59/orig 2025-04-25T04:11:38.9157612Z * [new branch] gh/fffrog/60/base -> origin/gh/fffrog/60/base 2025-04-25T04:11:38.9158091Z * [new branch] gh/fffrog/60/head -> origin/gh/fffrog/60/head 2025-04-25T04:11:38.9158610Z * [new branch] gh/fffrog/60/orig -> origin/gh/fffrog/60/orig 2025-04-25T04:11:38.9159125Z * [new branch] gh/fffrog/61/base -> origin/gh/fffrog/61/base 2025-04-25T04:11:38.9159595Z * [new branch] gh/fffrog/61/head -> origin/gh/fffrog/61/head 2025-04-25T04:11:38.9160064Z * [new branch] gh/fffrog/61/orig -> origin/gh/fffrog/61/orig 2025-04-25T04:11:38.9160529Z * [new branch] gh/fffrog/62/base -> origin/gh/fffrog/62/base 2025-04-25T04:11:38.9160989Z * [new branch] gh/fffrog/62/head -> origin/gh/fffrog/62/head 2025-04-25T04:11:38.9161456Z * [new branch] gh/fffrog/62/orig -> origin/gh/fffrog/62/orig 2025-04-25T04:11:38.9161923Z * [new branch] gh/fffrog/63/base -> origin/gh/fffrog/63/base 2025-04-25T04:11:38.9162387Z * [new branch] gh/fffrog/63/head -> origin/gh/fffrog/63/head 2025-04-25T04:11:38.9162863Z * [new branch] gh/fffrog/63/orig -> origin/gh/fffrog/63/orig 2025-04-25T04:11:38.9163326Z * [new branch] gh/fffrog/64/base -> origin/gh/fffrog/64/base 2025-04-25T04:11:38.9163806Z * [new branch] gh/fffrog/64/head -> origin/gh/fffrog/64/head 2025-04-25T04:11:38.9164317Z * [new branch] gh/fffrog/64/orig -> origin/gh/fffrog/64/orig 2025-04-25T04:11:38.9164816Z * [new branch] gh/fffrog/65/base -> origin/gh/fffrog/65/base 2025-04-25T04:11:38.9165282Z * [new branch] gh/fffrog/65/head -> origin/gh/fffrog/65/head 2025-04-25T04:11:38.9574870Z * [new branch] gh/fffrog/65/orig -> origin/gh/fffrog/65/orig 2025-04-25T04:11:38.9575400Z * [new branch] gh/fffrog/66/base -> origin/gh/fffrog/66/base 2025-04-25T04:11:38.9575892Z * [new branch] gh/fffrog/66/head -> origin/gh/fffrog/66/head 2025-04-25T04:11:38.9576511Z * [new branch] gh/fffrog/66/orig -> origin/gh/fffrog/66/orig 2025-04-25T04:11:38.9576989Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-04-25T04:11:38.9577469Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-04-25T04:11:38.9577949Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-04-25T04:11:38.9578434Z * [new branch] gh/fffrog/68/base -> origin/gh/fffrog/68/base 2025-04-25T04:11:38.9578905Z * [new branch] gh/fffrog/68/head -> origin/gh/fffrog/68/head 2025-04-25T04:11:38.9579383Z * [new branch] gh/fffrog/68/orig -> origin/gh/fffrog/68/orig 2025-04-25T04:11:38.9579841Z * [new branch] gh/fffrog/69/base -> origin/gh/fffrog/69/base 2025-04-25T04:11:38.9580355Z * [new branch] gh/fffrog/69/head -> origin/gh/fffrog/69/head 2025-04-25T04:11:38.9580870Z * [new branch] gh/fffrog/69/orig -> origin/gh/fffrog/69/orig 2025-04-25T04:11:38.9581334Z * [new branch] gh/fffrog/70/base -> origin/gh/fffrog/70/base 2025-04-25T04:11:38.9581918Z * [new branch] gh/fffrog/70/head -> origin/gh/fffrog/70/head 2025-04-25T04:11:38.9582392Z * [new branch] gh/fffrog/70/orig -> origin/gh/fffrog/70/orig 2025-04-25T04:11:38.9582853Z * [new branch] gh/fffrog/71/base -> origin/gh/fffrog/71/base 2025-04-25T04:11:38.9583336Z * [new branch] gh/fffrog/71/head -> origin/gh/fffrog/71/head 2025-04-25T04:11:38.9583791Z * [new branch] gh/fffrog/71/orig -> origin/gh/fffrog/71/orig 2025-04-25T04:11:38.9584267Z * [new branch] gh/fffrog/72/base -> origin/gh/fffrog/72/base 2025-04-25T04:11:38.9584725Z * [new branch] gh/fffrog/72/head -> origin/gh/fffrog/72/head 2025-04-25T04:11:38.9585203Z * [new branch] gh/fffrog/72/orig -> origin/gh/fffrog/72/orig 2025-04-25T04:11:38.9585686Z * [new branch] gh/fffrog/73/base -> origin/gh/fffrog/73/base 2025-04-25T04:11:38.9586196Z * [new branch] gh/fffrog/73/head -> origin/gh/fffrog/73/head 2025-04-25T04:11:38.9586700Z * [new branch] gh/fffrog/73/orig -> origin/gh/fffrog/73/orig 2025-04-25T04:11:38.9587151Z * [new branch] gh/fffrog/74/base -> origin/gh/fffrog/74/base 2025-04-25T04:11:38.9587618Z * [new branch] gh/fffrog/74/head -> origin/gh/fffrog/74/head 2025-04-25T04:11:38.9588093Z * [new branch] gh/fffrog/74/orig -> origin/gh/fffrog/74/orig 2025-04-25T04:11:38.9588548Z * [new branch] gh/fffrog/75/base -> origin/gh/fffrog/75/base 2025-04-25T04:11:38.9589024Z * [new branch] gh/fffrog/75/head -> origin/gh/fffrog/75/head 2025-04-25T04:11:38.9589487Z * [new branch] gh/fffrog/75/orig -> origin/gh/fffrog/75/orig 2025-04-25T04:11:38.9589960Z * [new branch] gh/fffrog/76/base -> origin/gh/fffrog/76/base 2025-04-25T04:11:38.9590430Z * [new branch] gh/fffrog/76/head -> origin/gh/fffrog/76/head 2025-04-25T04:11:38.9590884Z * [new branch] gh/fffrog/76/orig -> origin/gh/fffrog/76/orig 2025-04-25T04:11:38.9591356Z * [new branch] gh/fffrog/77/base -> origin/gh/fffrog/77/base 2025-04-25T04:11:38.9591852Z * [new branch] gh/fffrog/77/head -> origin/gh/fffrog/77/head 2025-04-25T04:11:38.9592323Z * [new branch] gh/fffrog/77/orig -> origin/gh/fffrog/77/orig 2025-04-25T04:11:38.9592824Z * [new branch] gh/fffrog/78/base -> origin/gh/fffrog/78/base 2025-04-25T04:11:38.9593287Z * [new branch] gh/fffrog/78/head -> origin/gh/fffrog/78/head 2025-04-25T04:11:38.9593860Z * [new branch] gh/fffrog/78/orig -> origin/gh/fffrog/78/orig 2025-04-25T04:11:38.9594323Z * [new branch] gh/fffrog/79/base -> origin/gh/fffrog/79/base 2025-04-25T04:11:38.9594811Z * [new branch] gh/fffrog/79/head -> origin/gh/fffrog/79/head 2025-04-25T04:11:38.9595270Z * [new branch] gh/fffrog/79/orig -> origin/gh/fffrog/79/orig 2025-04-25T04:11:38.9595750Z * [new branch] gh/fffrog/80/base -> origin/gh/fffrog/80/base 2025-04-25T04:11:38.9596218Z * [new branch] gh/fffrog/80/head -> origin/gh/fffrog/80/head 2025-04-25T04:11:38.9596678Z * [new branch] gh/fffrog/80/orig -> origin/gh/fffrog/80/orig 2025-04-25T04:11:38.9597155Z * [new branch] gh/fffrog/81/base -> origin/gh/fffrog/81/base 2025-04-25T04:11:38.9597618Z * [new branch] gh/fffrog/81/head -> origin/gh/fffrog/81/head 2025-04-25T04:11:39.0298771Z * [new branch] gh/fffrog/81/orig -> origin/gh/fffrog/81/orig 2025-04-25T04:11:39.0299311Z * [new branch] gh/fffrog/82/base -> origin/gh/fffrog/82/base 2025-04-25T04:11:39.0299940Z * [new branch] gh/fffrog/82/head -> origin/gh/fffrog/82/head 2025-04-25T04:11:39.0300420Z * [new branch] gh/fffrog/82/orig -> origin/gh/fffrog/82/orig 2025-04-25T04:11:39.0300893Z * [new branch] gh/fffrog/83/base -> origin/gh/fffrog/83/base 2025-04-25T04:11:39.0301373Z * [new branch] gh/fffrog/83/head -> origin/gh/fffrog/83/head 2025-04-25T04:11:39.0301848Z * [new branch] gh/fffrog/83/orig -> origin/gh/fffrog/83/orig 2025-04-25T04:11:39.0302312Z * [new branch] gh/fffrog/84/base -> origin/gh/fffrog/84/base 2025-04-25T04:11:39.0302797Z * [new branch] gh/fffrog/84/head -> origin/gh/fffrog/84/head 2025-04-25T04:11:39.0303265Z * [new branch] gh/fffrog/84/orig -> origin/gh/fffrog/84/orig 2025-04-25T04:11:39.0303730Z * [new branch] gh/fffrog/85/base -> origin/gh/fffrog/85/base 2025-04-25T04:11:39.0304211Z * [new branch] gh/fffrog/85/head -> origin/gh/fffrog/85/head 2025-04-25T04:11:39.0304737Z * [new branch] gh/fffrog/85/orig -> origin/gh/fffrog/85/orig 2025-04-25T04:11:39.0305214Z * [new branch] gh/fffrog/86/base -> origin/gh/fffrog/86/base 2025-04-25T04:11:39.0305671Z * [new branch] gh/fffrog/86/head -> origin/gh/fffrog/86/head 2025-04-25T04:11:39.0306133Z * [new branch] gh/fffrog/86/orig -> origin/gh/fffrog/86/orig 2025-04-25T04:11:39.0306596Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-04-25T04:11:39.0307079Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-04-25T04:11:39.0307561Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-04-25T04:11:39.0308038Z * [new branch] gh/guangyey/118/base -> origin/gh/guangyey/118/base 2025-04-25T04:11:39.0308547Z * [new branch] gh/guangyey/118/head -> origin/gh/guangyey/118/head 2025-04-25T04:11:39.0309043Z * [new branch] gh/guangyey/118/orig -> origin/gh/guangyey/118/orig 2025-04-25T04:11:39.0309524Z * [new branch] gh/guangyey/125/base -> origin/gh/guangyey/125/base 2025-04-25T04:11:39.0310070Z * [new branch] gh/guangyey/125/head -> origin/gh/guangyey/125/head 2025-04-25T04:11:39.0310589Z * [new branch] gh/guangyey/125/orig -> origin/gh/guangyey/125/orig 2025-04-25T04:11:39.0311091Z * [new branch] gh/guangyey/126/base -> origin/gh/guangyey/126/base 2025-04-25T04:11:39.0311680Z * [new branch] gh/guangyey/126/head -> origin/gh/guangyey/126/head 2025-04-25T04:11:39.0312185Z * [new branch] gh/guangyey/126/orig -> origin/gh/guangyey/126/orig 2025-04-25T04:11:39.0312688Z * [new branch] gh/guangyey/127/base -> origin/gh/guangyey/127/base 2025-04-25T04:11:39.0313172Z * [new branch] gh/guangyey/127/head -> origin/gh/guangyey/127/head 2025-04-25T04:11:39.0313672Z * [new branch] gh/guangyey/127/orig -> origin/gh/guangyey/127/orig 2025-04-25T04:11:39.0314169Z * [new branch] gh/guangyey/128/base -> origin/gh/guangyey/128/base 2025-04-25T04:11:39.0314675Z * [new branch] gh/guangyey/128/head -> origin/gh/guangyey/128/head 2025-04-25T04:11:39.0315163Z * [new branch] gh/guangyey/128/orig -> origin/gh/guangyey/128/orig 2025-04-25T04:11:39.0315693Z * [new branch] gh/guangyey/129/base -> origin/gh/guangyey/129/base 2025-04-25T04:11:39.0316239Z * [new branch] gh/guangyey/129/head -> origin/gh/guangyey/129/head 2025-04-25T04:11:39.0316726Z * [new branch] gh/guangyey/129/orig -> origin/gh/guangyey/129/orig 2025-04-25T04:11:39.0317303Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-04-25T04:11:39.0317805Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-04-25T04:11:39.0318295Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-04-25T04:11:39.0318801Z * [new branch] gh/guangyey/131/base -> origin/gh/guangyey/131/base 2025-04-25T04:11:39.0319296Z * [new branch] gh/guangyey/131/head -> origin/gh/guangyey/131/head 2025-04-25T04:11:39.0319798Z * [new branch] gh/guangyey/131/orig -> origin/gh/guangyey/131/orig 2025-04-25T04:11:39.0320296Z * [new branch] gh/guangyey/132/base -> origin/gh/guangyey/132/base 2025-04-25T04:11:39.0320787Z * [new branch] gh/guangyey/132/head -> origin/gh/guangyey/132/head 2025-04-25T04:11:39.0321318Z * [new branch] gh/guangyey/132/orig -> origin/gh/guangyey/132/orig 2025-04-25T04:11:39.0321841Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-04-25T04:11:39.0714229Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-04-25T04:11:39.0714736Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-04-25T04:11:39.0715244Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-04-25T04:11:39.0715770Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-04-25T04:11:39.0716265Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-04-25T04:11:39.0716779Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-04-25T04:11:39.0717278Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-04-25T04:11:39.0717771Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-04-25T04:11:39.0718271Z * [new branch] gh/guangyey/136/base -> origin/gh/guangyey/136/base 2025-04-25T04:11:39.0718759Z * [new branch] gh/guangyey/136/head -> origin/gh/guangyey/136/head 2025-04-25T04:11:39.0719268Z * [new branch] gh/guangyey/136/orig -> origin/gh/guangyey/136/orig 2025-04-25T04:11:39.0719773Z * [new branch] gh/guangyey/137/base -> origin/gh/guangyey/137/base 2025-04-25T04:11:39.0720266Z * [new branch] gh/guangyey/137/head -> origin/gh/guangyey/137/head 2025-04-25T04:11:39.0720764Z * [new branch] gh/guangyey/137/orig -> origin/gh/guangyey/137/orig 2025-04-25T04:11:39.0721388Z * [new branch] gh/guangyey/138/base -> origin/gh/guangyey/138/base 2025-04-25T04:11:39.0721891Z * [new branch] gh/guangyey/138/head -> origin/gh/guangyey/138/head 2025-04-25T04:11:39.0722394Z * [new branch] gh/guangyey/138/orig -> origin/gh/guangyey/138/orig 2025-04-25T04:11:39.0722886Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-04-25T04:11:39.0723390Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-04-25T04:11:39.0723875Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-04-25T04:11:39.0724367Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-04-25T04:11:39.0724855Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-04-25T04:11:39.0725355Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-04-25T04:11:39.0725857Z * [new branch] gh/guangyey/141/base -> origin/gh/guangyey/141/base 2025-04-25T04:11:39.0726405Z * [new branch] gh/guangyey/141/head -> origin/gh/guangyey/141/head 2025-04-25T04:11:39.0726994Z * [new branch] gh/guangyey/141/orig -> origin/gh/guangyey/141/orig 2025-04-25T04:11:39.0727493Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-04-25T04:11:39.0727992Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-04-25T04:11:39.0728488Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-04-25T04:11:39.0728980Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-04-25T04:11:39.0729482Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-04-25T04:11:39.0729975Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-04-25T04:11:39.0730463Z * [new branch] gh/guangyey/87/base -> origin/gh/guangyey/87/base 2025-04-25T04:11:39.0730958Z * [new branch] gh/guangyey/87/head -> origin/gh/guangyey/87/head 2025-04-25T04:11:39.0731447Z * [new branch] gh/guangyey/87/orig -> origin/gh/guangyey/87/orig 2025-04-25T04:11:39.0731929Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-04-25T04:11:39.0732407Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-04-25T04:11:39.0732898Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-04-25T04:11:39.0733436Z * [new branch] gh/guilhermeleobas/101/base -> origin/gh/guilhermeleobas/101/base 2025-04-25T04:11:39.0734017Z * [new branch] gh/guilhermeleobas/101/head -> origin/gh/guilhermeleobas/101/head 2025-04-25T04:11:39.0734614Z * [new branch] gh/guilhermeleobas/101/orig -> origin/gh/guilhermeleobas/101/orig 2025-04-25T04:11:39.0735191Z * [new branch] gh/guilhermeleobas/102/base -> origin/gh/guilhermeleobas/102/base 2025-04-25T04:11:39.0735775Z * [new branch] gh/guilhermeleobas/102/head -> origin/gh/guilhermeleobas/102/head 2025-04-25T04:11:39.0736345Z * [new branch] gh/guilhermeleobas/102/orig -> origin/gh/guilhermeleobas/102/orig 2025-04-25T04:11:39.0736915Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-04-25T04:11:39.0737490Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-04-25T04:11:39.1126137Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-04-25T04:11:39.1126818Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-04-25T04:11:39.1127547Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-04-25T04:11:39.1128125Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-04-25T04:11:39.1128712Z * [new branch] gh/guilhermeleobas/109/base -> origin/gh/guilhermeleobas/109/base 2025-04-25T04:11:39.1129278Z * [new branch] gh/guilhermeleobas/109/head -> origin/gh/guilhermeleobas/109/head 2025-04-25T04:11:39.1129860Z * [new branch] gh/guilhermeleobas/109/orig -> origin/gh/guilhermeleobas/109/orig 2025-04-25T04:11:39.1130446Z * [new branch] gh/guilhermeleobas/11/base -> origin/gh/guilhermeleobas/11/base 2025-04-25T04:11:39.1131017Z * [new branch] gh/guilhermeleobas/11/head -> origin/gh/guilhermeleobas/11/head 2025-04-25T04:11:39.1131592Z * [new branch] gh/guilhermeleobas/11/orig -> origin/gh/guilhermeleobas/11/orig 2025-04-25T04:11:39.1132165Z * [new branch] gh/guilhermeleobas/111/base -> origin/gh/guilhermeleobas/111/base 2025-04-25T04:11:39.1132740Z * [new branch] gh/guilhermeleobas/111/head -> origin/gh/guilhermeleobas/111/head 2025-04-25T04:11:39.1133407Z * [new branch] gh/guilhermeleobas/111/orig -> origin/gh/guilhermeleobas/111/orig 2025-04-25T04:11:39.1133980Z * [new branch] gh/guilhermeleobas/113/base -> origin/gh/guilhermeleobas/113/base 2025-04-25T04:11:39.1134557Z * [new branch] gh/guilhermeleobas/113/head -> origin/gh/guilhermeleobas/113/head 2025-04-25T04:11:39.1135125Z * [new branch] gh/guilhermeleobas/113/orig -> origin/gh/guilhermeleobas/113/orig 2025-04-25T04:11:39.1135709Z * [new branch] gh/guilhermeleobas/114/base -> origin/gh/guilhermeleobas/114/base 2025-04-25T04:11:39.1136299Z * [new branch] gh/guilhermeleobas/114/head -> origin/gh/guilhermeleobas/114/head 2025-04-25T04:11:39.1136872Z * [new branch] gh/guilhermeleobas/114/orig -> origin/gh/guilhermeleobas/114/orig 2025-04-25T04:11:39.1137459Z * [new branch] gh/guilhermeleobas/115/base -> origin/gh/guilhermeleobas/115/base 2025-04-25T04:11:39.1138034Z * [new branch] gh/guilhermeleobas/115/head -> origin/gh/guilhermeleobas/115/head 2025-04-25T04:11:39.1138608Z * [new branch] gh/guilhermeleobas/115/orig -> origin/gh/guilhermeleobas/115/orig 2025-04-25T04:11:39.1139183Z * [new branch] gh/guilhermeleobas/116/base -> origin/gh/guilhermeleobas/116/base 2025-04-25T04:11:39.1139748Z * [new branch] gh/guilhermeleobas/116/head -> origin/gh/guilhermeleobas/116/head 2025-04-25T04:11:39.1140321Z * [new branch] gh/guilhermeleobas/116/orig -> origin/gh/guilhermeleobas/116/orig 2025-04-25T04:11:39.1140888Z * [new branch] gh/guilhermeleobas/117/base -> origin/gh/guilhermeleobas/117/base 2025-04-25T04:11:39.1141475Z * [new branch] gh/guilhermeleobas/117/head -> origin/gh/guilhermeleobas/117/head 2025-04-25T04:11:39.1142073Z * [new branch] gh/guilhermeleobas/117/orig -> origin/gh/guilhermeleobas/117/orig 2025-04-25T04:11:39.1142638Z * [new branch] gh/guilhermeleobas/118/base -> origin/gh/guilhermeleobas/118/base 2025-04-25T04:11:39.1143228Z * [new branch] gh/guilhermeleobas/118/head -> origin/gh/guilhermeleobas/118/head 2025-04-25T04:11:39.1143794Z * [new branch] gh/guilhermeleobas/118/orig -> origin/gh/guilhermeleobas/118/orig 2025-04-25T04:11:39.1144373Z * [new branch] gh/guilhermeleobas/119/base -> origin/gh/guilhermeleobas/119/base 2025-04-25T04:11:39.1144954Z * [new branch] gh/guilhermeleobas/119/head -> origin/gh/guilhermeleobas/119/head 2025-04-25T04:11:39.1145524Z * [new branch] gh/guilhermeleobas/119/orig -> origin/gh/guilhermeleobas/119/orig 2025-04-25T04:11:39.1146110Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-04-25T04:11:39.1146764Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-04-25T04:11:39.1147359Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-04-25T04:11:39.1147951Z * [new branch] gh/guilhermeleobas/121/base -> origin/gh/guilhermeleobas/121/base 2025-04-25T04:11:39.1148519Z * [new branch] gh/guilhermeleobas/121/head -> origin/gh/guilhermeleobas/121/head 2025-04-25T04:11:39.1149102Z * [new branch] gh/guilhermeleobas/121/orig -> origin/gh/guilhermeleobas/121/orig 2025-04-25T04:11:39.1149682Z * [new branch] gh/guilhermeleobas/122/base -> origin/gh/guilhermeleobas/122/base 2025-04-25T04:11:39.1150260Z * [new branch] gh/guilhermeleobas/122/head -> origin/gh/guilhermeleobas/122/head 2025-04-25T04:11:39.1150833Z * [new branch] gh/guilhermeleobas/122/orig -> origin/gh/guilhermeleobas/122/orig 2025-04-25T04:11:39.1537518Z * [new branch] gh/guilhermeleobas/123/base -> origin/gh/guilhermeleobas/123/base 2025-04-25T04:11:39.1538157Z * [new branch] gh/guilhermeleobas/123/head -> origin/gh/guilhermeleobas/123/head 2025-04-25T04:11:39.1538926Z * [new branch] gh/guilhermeleobas/123/orig -> origin/gh/guilhermeleobas/123/orig 2025-04-25T04:11:39.1539515Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-04-25T04:11:39.1540112Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-04-25T04:11:39.1540690Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-04-25T04:11:39.1541323Z * [new branch] gh/guilhermeleobas/125/base -> origin/gh/guilhermeleobas/125/base 2025-04-25T04:11:39.1541936Z * [new branch] gh/guilhermeleobas/125/head -> origin/gh/guilhermeleobas/125/head 2025-04-25T04:11:39.1542535Z * [new branch] gh/guilhermeleobas/125/orig -> origin/gh/guilhermeleobas/125/orig 2025-04-25T04:11:39.1543113Z * [new branch] gh/guilhermeleobas/126/base -> origin/gh/guilhermeleobas/126/base 2025-04-25T04:11:39.1543688Z * [new branch] gh/guilhermeleobas/126/head -> origin/gh/guilhermeleobas/126/head 2025-04-25T04:11:39.1544266Z * [new branch] gh/guilhermeleobas/126/orig -> origin/gh/guilhermeleobas/126/orig 2025-04-25T04:11:39.1544837Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-04-25T04:11:39.1545413Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-04-25T04:11:39.1545989Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-04-25T04:11:39.1546560Z * [new branch] gh/guilhermeleobas/128/base -> origin/gh/guilhermeleobas/128/base 2025-04-25T04:11:39.1547175Z * [new branch] gh/guilhermeleobas/128/head -> origin/gh/guilhermeleobas/128/head 2025-04-25T04:11:39.1547794Z * [new branch] gh/guilhermeleobas/128/orig -> origin/gh/guilhermeleobas/128/orig 2025-04-25T04:11:39.1548383Z * [new branch] gh/guilhermeleobas/129/base -> origin/gh/guilhermeleobas/129/base 2025-04-25T04:11:39.1548960Z * [new branch] gh/guilhermeleobas/129/head -> origin/gh/guilhermeleobas/129/head 2025-04-25T04:11:39.1549530Z * [new branch] gh/guilhermeleobas/129/orig -> origin/gh/guilhermeleobas/129/orig 2025-04-25T04:11:39.1550113Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-04-25T04:11:39.1550683Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-04-25T04:11:39.1551266Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-04-25T04:11:39.1551838Z * [new branch] gh/henrylhtsang/13/base -> origin/gh/henrylhtsang/13/base 2025-04-25T04:11:39.1552468Z * [new branch] gh/henrylhtsang/13/head -> origin/gh/henrylhtsang/13/head 2025-04-25T04:11:39.1553084Z * [new branch] gh/henrylhtsang/13/orig -> origin/gh/henrylhtsang/13/orig 2025-04-25T04:11:39.1553617Z * [new branch] gh/henrylhtsang/31/base -> origin/gh/henrylhtsang/31/base 2025-04-25T04:11:39.1554143Z * [new branch] gh/henrylhtsang/31/head -> origin/gh/henrylhtsang/31/head 2025-04-25T04:11:39.1554664Z * [new branch] gh/henrylhtsang/31/orig -> origin/gh/henrylhtsang/31/orig 2025-04-25T04:11:39.1555185Z * [new branch] gh/henrylhtsang/32/base -> origin/gh/henrylhtsang/32/base 2025-04-25T04:11:39.1555717Z * [new branch] gh/henrylhtsang/32/head -> origin/gh/henrylhtsang/32/head 2025-04-25T04:11:39.1556236Z * [new branch] gh/henrylhtsang/32/orig -> origin/gh/henrylhtsang/32/orig 2025-04-25T04:11:39.1556769Z * [new branch] gh/henrylhtsang/35/base -> origin/gh/henrylhtsang/35/base 2025-04-25T04:11:39.1557298Z * [new branch] gh/henrylhtsang/35/head -> origin/gh/henrylhtsang/35/head 2025-04-25T04:11:39.1557896Z * [new branch] gh/henrylhtsang/35/orig -> origin/gh/henrylhtsang/35/orig 2025-04-25T04:11:39.1558472Z * [new branch] gh/henrylhtsang/36/base -> origin/gh/henrylhtsang/36/base 2025-04-25T04:11:39.1559032Z * [new branch] gh/henrylhtsang/36/head -> origin/gh/henrylhtsang/36/head 2025-04-25T04:11:39.1559578Z * [new branch] gh/henrylhtsang/36/orig -> origin/gh/henrylhtsang/36/orig 2025-04-25T04:11:39.1560104Z * [new branch] gh/henrylhtsang/37/base -> origin/gh/henrylhtsang/37/base 2025-04-25T04:11:39.1560633Z * [new branch] gh/henrylhtsang/37/head -> origin/gh/henrylhtsang/37/head 2025-04-25T04:11:39.1561161Z * [new branch] gh/henrylhtsang/37/orig -> origin/gh/henrylhtsang/37/orig 2025-04-25T04:11:39.1561689Z * [new branch] gh/henrylhtsang/43/base -> origin/gh/henrylhtsang/43/base 2025-04-25T04:11:39.1562216Z * [new branch] gh/henrylhtsang/43/head -> origin/gh/henrylhtsang/43/head 2025-04-25T04:11:39.1952779Z * [new branch] gh/henrylhtsang/43/orig -> origin/gh/henrylhtsang/43/orig 2025-04-25T04:11:39.1953311Z * [new branch] gh/henrylhtsang/44/base -> origin/gh/henrylhtsang/44/base 2025-04-25T04:11:39.1953850Z * [new branch] gh/henrylhtsang/44/head -> origin/gh/henrylhtsang/44/head 2025-04-25T04:11:39.1954373Z * [new branch] gh/henrylhtsang/44/orig -> origin/gh/henrylhtsang/44/orig 2025-04-25T04:11:39.1954906Z * [new branch] gh/henrylhtsang/45/base -> origin/gh/henrylhtsang/45/base 2025-04-25T04:11:39.1955438Z * [new branch] gh/henrylhtsang/45/head -> origin/gh/henrylhtsang/45/head 2025-04-25T04:11:39.1955966Z * [new branch] gh/henrylhtsang/45/orig -> origin/gh/henrylhtsang/45/orig 2025-04-25T04:11:39.1956503Z * [new branch] gh/henrylhtsang/46/base -> origin/gh/henrylhtsang/46/base 2025-04-25T04:11:39.1957031Z * [new branch] gh/henrylhtsang/46/head -> origin/gh/henrylhtsang/46/head 2025-04-25T04:11:39.1957560Z * [new branch] gh/henrylhtsang/46/orig -> origin/gh/henrylhtsang/46/orig 2025-04-25T04:11:39.1958089Z * [new branch] gh/henrylhtsang/47/base -> origin/gh/henrylhtsang/47/base 2025-04-25T04:11:39.1958616Z * [new branch] gh/henrylhtsang/47/head -> origin/gh/henrylhtsang/47/head 2025-04-25T04:11:39.1959142Z * [new branch] gh/henrylhtsang/47/orig -> origin/gh/henrylhtsang/47/orig 2025-04-25T04:11:39.1959683Z * [new branch] gh/henrylhtsang/48/base -> origin/gh/henrylhtsang/48/base 2025-04-25T04:11:39.1960208Z * [new branch] gh/henrylhtsang/48/head -> origin/gh/henrylhtsang/48/head 2025-04-25T04:11:39.1960867Z * [new branch] gh/henrylhtsang/48/orig -> origin/gh/henrylhtsang/48/orig 2025-04-25T04:11:39.1961393Z * [new branch] gh/henrylhtsang/49/base -> origin/gh/henrylhtsang/49/base 2025-04-25T04:11:39.1961936Z * [new branch] gh/henrylhtsang/49/head -> origin/gh/henrylhtsang/49/head 2025-04-25T04:11:39.1962464Z * [new branch] gh/henrylhtsang/49/orig -> origin/gh/henrylhtsang/49/orig 2025-04-25T04:11:39.1963001Z * [new branch] gh/henrylhtsang/50/base -> origin/gh/henrylhtsang/50/base 2025-04-25T04:11:39.1963535Z * [new branch] gh/henrylhtsang/50/head -> origin/gh/henrylhtsang/50/head 2025-04-25T04:11:39.1964057Z * [new branch] gh/henrylhtsang/50/orig -> origin/gh/henrylhtsang/50/orig 2025-04-25T04:11:39.1964584Z * [new branch] gh/henrylhtsang/51/base -> origin/gh/henrylhtsang/51/base 2025-04-25T04:11:39.1965111Z * [new branch] gh/henrylhtsang/51/head -> origin/gh/henrylhtsang/51/head 2025-04-25T04:11:39.1965641Z * [new branch] gh/henrylhtsang/52/base -> origin/gh/henrylhtsang/52/base 2025-04-25T04:11:39.1966294Z * [new branch] gh/henrylhtsang/52/head -> origin/gh/henrylhtsang/52/head 2025-04-25T04:11:39.1966840Z * [new branch] gh/henrylhtsang/52/orig -> origin/gh/henrylhtsang/52/orig 2025-04-25T04:11:39.1967428Z * [new branch] gh/henrylhtsang/53/base -> origin/gh/henrylhtsang/53/base 2025-04-25T04:11:39.1967990Z * [new branch] gh/henrylhtsang/53/head -> origin/gh/henrylhtsang/53/head 2025-04-25T04:11:39.1968526Z * [new branch] gh/henrylhtsang/53/orig -> origin/gh/henrylhtsang/53/orig 2025-04-25T04:11:39.1969050Z * [new branch] gh/henrylhtsang/54/base -> origin/gh/henrylhtsang/54/base 2025-04-25T04:11:39.1969580Z * [new branch] gh/henrylhtsang/54/head -> origin/gh/henrylhtsang/54/head 2025-04-25T04:11:39.1970121Z * [new branch] gh/henrylhtsang/54/orig -> origin/gh/henrylhtsang/54/orig 2025-04-25T04:11:39.1970642Z * [new branch] gh/henrylhtsang/55/base -> origin/gh/henrylhtsang/55/base 2025-04-25T04:11:39.1971181Z * [new branch] gh/henrylhtsang/55/head -> origin/gh/henrylhtsang/55/head 2025-04-25T04:11:39.1971699Z * [new branch] gh/henrylhtsang/55/orig -> origin/gh/henrylhtsang/55/orig 2025-04-25T04:11:39.1972228Z * [new branch] gh/henrylhtsang/56/base -> origin/gh/henrylhtsang/56/base 2025-04-25T04:11:39.1972756Z * [new branch] gh/henrylhtsang/56/head -> origin/gh/henrylhtsang/56/head 2025-04-25T04:11:39.1973278Z * [new branch] gh/henrylhtsang/56/orig -> origin/gh/henrylhtsang/56/orig 2025-04-25T04:11:39.1973808Z * [new branch] gh/henrylhtsang/57/base -> origin/gh/henrylhtsang/57/base 2025-04-25T04:11:39.1974339Z * [new branch] gh/henrylhtsang/57/head -> origin/gh/henrylhtsang/57/head 2025-04-25T04:11:39.1974865Z * [new branch] gh/henrylhtsang/57/orig -> origin/gh/henrylhtsang/57/orig 2025-04-25T04:11:39.1975393Z * [new branch] gh/henrylhtsang/58/base -> origin/gh/henrylhtsang/58/base 2025-04-25T04:11:39.1975915Z * [new branch] gh/henrylhtsang/58/head -> origin/gh/henrylhtsang/58/head 2025-04-25T04:11:39.1976443Z * [new branch] gh/henrylhtsang/58/orig -> origin/gh/henrylhtsang/58/orig 2025-04-25T04:11:39.2404374Z * [new branch] gh/henrylhtsang/59/base -> origin/gh/henrylhtsang/59/base 2025-04-25T04:11:39.2405010Z * [new branch] gh/henrylhtsang/59/head -> origin/gh/henrylhtsang/59/head 2025-04-25T04:11:39.2405562Z * [new branch] gh/henrylhtsang/60/base -> origin/gh/henrylhtsang/60/base 2025-04-25T04:11:39.2406094Z * [new branch] gh/henrylhtsang/60/head -> origin/gh/henrylhtsang/60/head 2025-04-25T04:11:39.2406840Z * [new branch] gh/henrylhtsang/60/orig -> origin/gh/henrylhtsang/60/orig 2025-04-25T04:11:39.2407388Z * [new branch] gh/henrylhtsang/61/base -> origin/gh/henrylhtsang/61/base 2025-04-25T04:11:39.2407917Z * [new branch] gh/henrylhtsang/61/head -> origin/gh/henrylhtsang/61/head 2025-04-25T04:11:39.2408451Z * [new branch] gh/henrylhtsang/61/orig -> origin/gh/henrylhtsang/61/orig 2025-04-25T04:11:39.2408973Z * [new branch] gh/henrylhtsang/62/base -> origin/gh/henrylhtsang/62/base 2025-04-25T04:11:39.2409497Z * [new branch] gh/henrylhtsang/62/head -> origin/gh/henrylhtsang/62/head 2025-04-25T04:11:39.2410017Z * [new branch] gh/henrylhtsang/62/orig -> origin/gh/henrylhtsang/62/orig 2025-04-25T04:11:39.2410513Z * [new branch] gh/int3/36/base -> origin/gh/int3/36/base 2025-04-25T04:11:39.2410980Z * [new branch] gh/int3/36/head -> origin/gh/int3/36/head 2025-04-25T04:11:39.2411423Z * [new branch] gh/int3/36/orig -> origin/gh/int3/36/orig 2025-04-25T04:11:39.2411958Z * [new branch] gh/int3/45/base -> origin/gh/int3/45/base 2025-04-25T04:11:39.2412413Z * [new branch] gh/int3/45/head -> origin/gh/int3/45/head 2025-04-25T04:11:39.2412874Z * [new branch] gh/int3/45/orig -> origin/gh/int3/45/orig 2025-04-25T04:11:39.2413325Z * [new branch] gh/int3/46/base -> origin/gh/int3/46/base 2025-04-25T04:11:39.2413765Z * [new branch] gh/int3/46/head -> origin/gh/int3/46/head 2025-04-25T04:11:39.2414216Z * [new branch] gh/int3/46/orig -> origin/gh/int3/46/orig 2025-04-25T04:11:39.2414652Z * [new branch] gh/int3/47/base -> origin/gh/int3/47/base 2025-04-25T04:11:39.2415102Z * [new branch] gh/int3/47/head -> origin/gh/int3/47/head 2025-04-25T04:11:39.2415556Z * [new branch] gh/int3/47/orig -> origin/gh/int3/47/orig 2025-04-25T04:11:39.2416002Z * [new branch] gh/int3/55/base -> origin/gh/int3/55/base 2025-04-25T04:11:39.2416454Z * [new branch] gh/int3/55/head -> origin/gh/int3/55/head 2025-04-25T04:11:39.2416889Z * [new branch] gh/int3/55/orig -> origin/gh/int3/55/orig 2025-04-25T04:11:39.2417335Z * [new branch] gh/int3/79/base -> origin/gh/int3/79/base 2025-04-25T04:11:39.2417770Z * [new branch] gh/int3/79/head -> origin/gh/int3/79/head 2025-04-25T04:11:39.2418216Z * [new branch] gh/int3/79/orig -> origin/gh/int3/79/orig 2025-04-25T04:11:39.2418663Z * [new branch] gh/int3/94/base -> origin/gh/int3/94/base 2025-04-25T04:11:39.2419106Z * [new branch] gh/int3/94/head -> origin/gh/int3/94/head 2025-04-25T04:11:39.2419562Z * [new branch] gh/int3/94/orig -> origin/gh/int3/94/orig 2025-04-25T04:11:39.2420012Z * [new branch] gh/int3/95/base -> origin/gh/int3/95/base 2025-04-25T04:11:39.2420458Z * [new branch] gh/int3/95/head -> origin/gh/int3/95/head 2025-04-25T04:11:39.2420908Z * [new branch] gh/int3/95/orig -> origin/gh/int3/95/orig 2025-04-25T04:11:39.2421343Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-04-25T04:11:39.2421785Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-04-25T04:11:39.2422248Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-04-25T04:11:39.2422728Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-04-25T04:11:39.2423314Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-04-25T04:11:39.2423785Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-04-25T04:11:39.2424269Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-04-25T04:11:39.2424745Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-04-25T04:11:39.2425218Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-04-25T04:11:39.2425683Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-04-25T04:11:39.2426160Z * [new branch] gh/isuruf/112/base -> origin/gh/isuruf/112/base 2025-04-25T04:11:39.2426635Z * [new branch] gh/isuruf/112/head -> origin/gh/isuruf/112/head 2025-04-25T04:11:39.2427098Z * [new branch] gh/isuruf/112/orig -> origin/gh/isuruf/112/orig 2025-04-25T04:11:39.2849464Z * [new branch] gh/isuruf/115/base -> origin/gh/isuruf/115/base 2025-04-25T04:11:39.2850114Z * [new branch] gh/isuruf/115/head -> origin/gh/isuruf/115/head 2025-04-25T04:11:39.2850857Z * [new branch] gh/isuruf/115/orig -> origin/gh/isuruf/115/orig 2025-04-25T04:11:39.2851447Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-04-25T04:11:39.2852018Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-04-25T04:11:39.2852577Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-04-25T04:11:39.2853097Z * [new branch] gh/isuruf/119/base -> origin/gh/isuruf/119/base 2025-04-25T04:11:39.2853650Z * [new branch] gh/isuruf/119/head -> origin/gh/isuruf/119/head 2025-04-25T04:11:39.2854213Z * [new branch] gh/isuruf/119/orig -> origin/gh/isuruf/119/orig 2025-04-25T04:11:39.2854776Z * [new branch] gh/isuruf/120/base -> origin/gh/isuruf/120/base 2025-04-25T04:11:39.2855342Z * [new branch] gh/isuruf/120/head -> origin/gh/isuruf/120/head 2025-04-25T04:11:39.2855864Z * [new branch] gh/isuruf/120/orig -> origin/gh/isuruf/120/orig 2025-04-25T04:11:39.2856414Z * [new branch] gh/isuruf/122/base -> origin/gh/isuruf/122/base 2025-04-25T04:11:39.2856973Z * [new branch] gh/isuruf/122/head -> origin/gh/isuruf/122/head 2025-04-25T04:11:39.2857526Z * [new branch] gh/isuruf/122/orig -> origin/gh/isuruf/122/orig 2025-04-25T04:11:39.2858040Z * [new branch] gh/isuruf/125/base -> origin/gh/isuruf/125/base 2025-04-25T04:11:39.2858592Z * [new branch] gh/isuruf/125/head -> origin/gh/isuruf/125/head 2025-04-25T04:11:39.2859160Z * [new branch] gh/isuruf/125/orig -> origin/gh/isuruf/125/orig 2025-04-25T04:11:39.2859732Z * [new branch] gh/isuruf/126/base -> origin/gh/isuruf/126/base 2025-04-25T04:11:39.2860281Z * [new branch] gh/isuruf/126/head -> origin/gh/isuruf/126/head 2025-04-25T04:11:39.2860812Z * [new branch] gh/isuruf/126/orig -> origin/gh/isuruf/126/orig 2025-04-25T04:11:39.2861365Z * [new branch] gh/isuruf/127/base -> origin/gh/isuruf/127/base 2025-04-25T04:11:39.2861922Z * [new branch] gh/isuruf/127/head -> origin/gh/isuruf/127/head 2025-04-25T04:11:39.2862486Z * [new branch] gh/isuruf/127/orig -> origin/gh/isuruf/127/orig 2025-04-25T04:11:39.2863027Z * [new branch] gh/isuruf/128/base -> origin/gh/isuruf/128/base 2025-04-25T04:11:39.2863555Z * [new branch] gh/isuruf/128/head -> origin/gh/isuruf/128/head 2025-04-25T04:11:39.2864221Z * [new branch] gh/isuruf/128/orig -> origin/gh/isuruf/128/orig 2025-04-25T04:11:39.2864787Z * [new branch] gh/isuruf/130/base -> origin/gh/isuruf/130/base 2025-04-25T04:11:39.2865362Z * [new branch] gh/isuruf/130/head -> origin/gh/isuruf/130/head 2025-04-25T04:11:39.2865920Z * [new branch] gh/isuruf/130/orig -> origin/gh/isuruf/130/orig 2025-04-25T04:11:39.2866487Z * [new branch] gh/isuruf/132/base -> origin/gh/isuruf/132/base 2025-04-25T04:11:39.2867030Z * [new branch] gh/isuruf/132/head -> origin/gh/isuruf/132/head 2025-04-25T04:11:39.2867562Z * [new branch] gh/isuruf/132/orig -> origin/gh/isuruf/132/orig 2025-04-25T04:11:39.2868115Z * [new branch] gh/isuruf/133/base -> origin/gh/isuruf/133/base 2025-04-25T04:11:39.2868685Z * [new branch] gh/isuruf/133/head -> origin/gh/isuruf/133/head 2025-04-25T04:11:39.2869245Z * [new branch] gh/isuruf/133/orig -> origin/gh/isuruf/133/orig 2025-04-25T04:11:39.2869752Z * [new branch] gh/isuruf/135/base -> origin/gh/isuruf/135/base 2025-04-25T04:11:39.2870403Z * [new branch] gh/isuruf/135/head -> origin/gh/isuruf/135/head 2025-04-25T04:11:39.2870971Z * [new branch] gh/isuruf/135/orig -> origin/gh/isuruf/135/orig 2025-04-25T04:11:39.2871540Z * [new branch] gh/isuruf/136/base -> origin/gh/isuruf/136/base 2025-04-25T04:11:39.2872097Z * [new branch] gh/isuruf/136/head -> origin/gh/isuruf/136/head 2025-04-25T04:11:39.2872657Z * [new branch] gh/isuruf/136/orig -> origin/gh/isuruf/136/orig 2025-04-25T04:11:39.2873178Z * [new branch] gh/isuruf/137/base -> origin/gh/isuruf/137/base 2025-04-25T04:11:39.2873736Z * [new branch] gh/isuruf/137/head -> origin/gh/isuruf/137/head 2025-04-25T04:11:39.2874266Z * [new branch] gh/isuruf/137/orig -> origin/gh/isuruf/137/orig 2025-04-25T04:11:39.2874747Z * [new branch] gh/isuruf/138/base -> origin/gh/isuruf/138/base 2025-04-25T04:11:39.2875216Z * [new branch] gh/isuruf/138/head -> origin/gh/isuruf/138/head 2025-04-25T04:11:39.2875690Z * [new branch] gh/isuruf/138/orig -> origin/gh/isuruf/138/orig 2025-04-25T04:11:39.3300526Z * [new branch] gh/isuruf/139/base -> origin/gh/isuruf/139/base 2025-04-25T04:11:39.3301150Z * [new branch] gh/isuruf/139/head -> origin/gh/isuruf/139/head 2025-04-25T04:11:39.3301643Z * [new branch] gh/isuruf/139/orig -> origin/gh/isuruf/139/orig 2025-04-25T04:11:39.3302135Z * [new branch] gh/isuruf/140/base -> origin/gh/isuruf/140/base 2025-04-25T04:11:39.3302619Z * [new branch] gh/isuruf/140/head -> origin/gh/isuruf/140/head 2025-04-25T04:11:39.3303108Z * [new branch] gh/isuruf/140/orig -> origin/gh/isuruf/140/orig 2025-04-25T04:11:39.3303577Z * [new branch] gh/isuruf/39/base -> origin/gh/isuruf/39/base 2025-04-25T04:11:39.3304058Z * [new branch] gh/isuruf/39/head -> origin/gh/isuruf/39/head 2025-04-25T04:11:39.3304527Z * [new branch] gh/isuruf/39/orig -> origin/gh/isuruf/39/orig 2025-04-25T04:11:39.3305024Z * [new branch] gh/jamesjwu/100/base -> origin/gh/jamesjwu/100/base 2025-04-25T04:11:39.3305522Z * [new branch] gh/jamesjwu/100/head -> origin/gh/jamesjwu/100/head 2025-04-25T04:11:39.3306010Z * [new branch] gh/jamesjwu/100/orig -> origin/gh/jamesjwu/100/orig 2025-04-25T04:11:39.3306550Z * [new branch] gh/jamesjwu/102/base -> origin/gh/jamesjwu/102/base 2025-04-25T04:11:39.3307074Z * [new branch] gh/jamesjwu/102/head -> origin/gh/jamesjwu/102/head 2025-04-25T04:11:39.3307730Z * [new branch] gh/jamesjwu/105/base -> origin/gh/jamesjwu/105/base 2025-04-25T04:11:39.3308240Z * [new branch] gh/jamesjwu/105/head -> origin/gh/jamesjwu/105/head 2025-04-25T04:11:39.3308748Z * [new branch] gh/jamesjwu/105/orig -> origin/gh/jamesjwu/105/orig 2025-04-25T04:11:39.3309231Z * [new branch] gh/jamesjwu/108/base -> origin/gh/jamesjwu/108/base 2025-04-25T04:11:39.3309727Z * [new branch] gh/jamesjwu/108/head -> origin/gh/jamesjwu/108/head 2025-04-25T04:11:39.3310213Z * [new branch] gh/jamesjwu/108/orig -> origin/gh/jamesjwu/108/orig 2025-04-25T04:11:39.3310707Z * [new branch] gh/jamesjwu/111/base -> origin/gh/jamesjwu/111/base 2025-04-25T04:11:39.3311199Z * [new branch] gh/jamesjwu/111/head -> origin/gh/jamesjwu/111/head 2025-04-25T04:11:39.3311685Z * [new branch] gh/jamesjwu/111/orig -> origin/gh/jamesjwu/111/orig 2025-04-25T04:11:39.3312212Z * [new branch] gh/jamesjwu/113/base -> origin/gh/jamesjwu/113/base 2025-04-25T04:11:39.3312823Z * [new branch] gh/jamesjwu/113/head -> origin/gh/jamesjwu/113/head 2025-04-25T04:11:39.3313322Z * [new branch] gh/jamesjwu/113/orig -> origin/gh/jamesjwu/113/orig 2025-04-25T04:11:39.3313823Z * [new branch] gh/jamesjwu/114/base -> origin/gh/jamesjwu/114/base 2025-04-25T04:11:39.3314305Z * [new branch] gh/jamesjwu/114/head -> origin/gh/jamesjwu/114/head 2025-04-25T04:11:39.3314804Z * [new branch] gh/jamesjwu/114/orig -> origin/gh/jamesjwu/114/orig 2025-04-25T04:11:39.3315292Z * [new branch] gh/jamesjwu/120/base -> origin/gh/jamesjwu/120/base 2025-04-25T04:11:39.3315796Z * [new branch] gh/jamesjwu/120/head -> origin/gh/jamesjwu/120/head 2025-04-25T04:11:39.3316290Z * [new branch] gh/jamesjwu/120/orig -> origin/gh/jamesjwu/120/orig 2025-04-25T04:11:39.3316781Z * [new branch] gh/jamesjwu/122/base -> origin/gh/jamesjwu/122/base 2025-04-25T04:11:39.3317289Z * [new branch] gh/jamesjwu/122/head -> origin/gh/jamesjwu/122/head 2025-04-25T04:11:39.3317808Z * [new branch] gh/jamesjwu/122/orig -> origin/gh/jamesjwu/122/orig 2025-04-25T04:11:39.3318332Z * [new branch] gh/jamesjwu/123/base -> origin/gh/jamesjwu/123/base 2025-04-25T04:11:39.3318814Z * [new branch] gh/jamesjwu/123/head -> origin/gh/jamesjwu/123/head 2025-04-25T04:11:39.3319312Z * [new branch] gh/jamesjwu/123/orig -> origin/gh/jamesjwu/123/orig 2025-04-25T04:11:39.3319814Z * [new branch] gh/jamesjwu/124/base -> origin/gh/jamesjwu/124/base 2025-04-25T04:11:39.3320305Z * [new branch] gh/jamesjwu/124/head -> origin/gh/jamesjwu/124/head 2025-04-25T04:11:39.3320806Z * [new branch] gh/jamesjwu/124/orig -> origin/gh/jamesjwu/124/orig 2025-04-25T04:11:39.3321292Z * [new branch] gh/jamesjwu/125/base -> origin/gh/jamesjwu/125/base 2025-04-25T04:11:39.3321798Z * [new branch] gh/jamesjwu/125/head -> origin/gh/jamesjwu/125/head 2025-04-25T04:11:39.3322290Z * [new branch] gh/jamesjwu/125/orig -> origin/gh/jamesjwu/125/orig 2025-04-25T04:11:39.3322773Z * [new branch] gh/jamesjwu/127/base -> origin/gh/jamesjwu/127/base 2025-04-25T04:11:39.3323305Z * [new branch] gh/jamesjwu/127/head -> origin/gh/jamesjwu/127/head 2025-04-25T04:11:39.3323824Z * [new branch] gh/jamesjwu/127/orig -> origin/gh/jamesjwu/127/orig 2025-04-25T04:11:39.3730790Z * [new branch] gh/jamesjwu/128/base -> origin/gh/jamesjwu/128/base 2025-04-25T04:11:39.3731534Z * [new branch] gh/jamesjwu/128/head -> origin/gh/jamesjwu/128/head 2025-04-25T04:11:39.3732037Z * [new branch] gh/jamesjwu/128/orig -> origin/gh/jamesjwu/128/orig 2025-04-25T04:11:39.3732556Z * [new branch] gh/jamesjwu/129/base -> origin/gh/jamesjwu/129/base 2025-04-25T04:11:39.3733084Z * [new branch] gh/jamesjwu/129/head -> origin/gh/jamesjwu/129/head 2025-04-25T04:11:39.3733616Z * [new branch] gh/jamesjwu/129/orig -> origin/gh/jamesjwu/129/orig 2025-04-25T04:11:39.3734113Z * [new branch] gh/jamesjwu/130/base -> origin/gh/jamesjwu/130/base 2025-04-25T04:11:39.3734606Z * [new branch] gh/jamesjwu/130/head -> origin/gh/jamesjwu/130/head 2025-04-25T04:11:39.3735097Z * [new branch] gh/jamesjwu/130/orig -> origin/gh/jamesjwu/130/orig 2025-04-25T04:11:39.3735580Z * [new branch] gh/jamesjwu/131/base -> origin/gh/jamesjwu/131/base 2025-04-25T04:11:39.3736079Z * [new branch] gh/jamesjwu/131/head -> origin/gh/jamesjwu/131/head 2025-04-25T04:11:39.3736570Z * [new branch] gh/jamesjwu/131/orig -> origin/gh/jamesjwu/131/orig 2025-04-25T04:11:39.3737159Z * [new branch] gh/jamesjwu/132/base -> origin/gh/jamesjwu/132/base 2025-04-25T04:11:39.3737667Z * [new branch] gh/jamesjwu/132/head -> origin/gh/jamesjwu/132/head 2025-04-25T04:11:39.3738149Z * [new branch] gh/jamesjwu/132/orig -> origin/gh/jamesjwu/132/orig 2025-04-25T04:11:39.3738691Z * [new branch] gh/jamesjwu/133/base -> origin/gh/jamesjwu/133/base 2025-04-25T04:11:39.3739222Z * [new branch] gh/jamesjwu/133/head -> origin/gh/jamesjwu/133/head 2025-04-25T04:11:39.3739727Z * [new branch] gh/jamesjwu/133/orig -> origin/gh/jamesjwu/133/orig 2025-04-25T04:11:39.3740216Z * [new branch] gh/jamesjwu/134/base -> origin/gh/jamesjwu/134/base 2025-04-25T04:11:39.3740711Z * [new branch] gh/jamesjwu/134/head -> origin/gh/jamesjwu/134/head 2025-04-25T04:11:39.3741210Z * [new branch] gh/jamesjwu/134/orig -> origin/gh/jamesjwu/134/orig 2025-04-25T04:11:39.3741699Z * [new branch] gh/jamesjwu/135/base -> origin/gh/jamesjwu/135/base 2025-04-25T04:11:39.3742197Z * [new branch] gh/jamesjwu/135/head -> origin/gh/jamesjwu/135/head 2025-04-25T04:11:39.3742691Z * [new branch] gh/jamesjwu/135/orig -> origin/gh/jamesjwu/135/orig 2025-04-25T04:11:39.3743171Z * [new branch] gh/jamesjwu/136/base -> origin/gh/jamesjwu/136/base 2025-04-25T04:11:39.3743659Z * [new branch] gh/jamesjwu/136/head -> origin/gh/jamesjwu/136/head 2025-04-25T04:11:39.3744169Z * [new branch] gh/jamesjwu/136/orig -> origin/gh/jamesjwu/136/orig 2025-04-25T04:11:39.3744712Z * [new branch] gh/jamesjwu/137/base -> origin/gh/jamesjwu/137/base 2025-04-25T04:11:39.3745198Z * [new branch] gh/jamesjwu/137/head -> origin/gh/jamesjwu/137/head 2025-04-25T04:11:39.3745689Z * [new branch] gh/jamesjwu/137/orig -> origin/gh/jamesjwu/137/orig 2025-04-25T04:11:39.3746183Z * [new branch] gh/jamesjwu/138/base -> origin/gh/jamesjwu/138/base 2025-04-25T04:11:39.3746666Z * [new branch] gh/jamesjwu/138/head -> origin/gh/jamesjwu/138/head 2025-04-25T04:11:39.3747162Z * [new branch] gh/jamesjwu/138/orig -> origin/gh/jamesjwu/138/orig 2025-04-25T04:11:39.3747652Z * [new branch] gh/jamesjwu/139/base -> origin/gh/jamesjwu/139/base 2025-04-25T04:11:39.3748153Z * [new branch] gh/jamesjwu/139/head -> origin/gh/jamesjwu/139/head 2025-04-25T04:11:39.3748643Z * [new branch] gh/jamesjwu/139/orig -> origin/gh/jamesjwu/139/orig 2025-04-25T04:11:39.3749233Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-04-25T04:11:39.3749764Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-04-25T04:11:39.3750292Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-04-25T04:11:39.3750784Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-04-25T04:11:39.3751270Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-04-25T04:11:39.3751758Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-04-25T04:11:39.3752242Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-04-25T04:11:39.3752722Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-04-25T04:11:39.3753209Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-04-25T04:11:39.3753701Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-04-25T04:11:39.3754184Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-04-25T04:11:39.4165237Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-04-25T04:11:39.4165799Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-04-25T04:11:39.4166342Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-04-25T04:11:39.4166839Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-04-25T04:11:39.4167323Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-04-25T04:11:39.4167810Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-04-25T04:11:39.4168293Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-04-25T04:11:39.4168808Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-04-25T04:11:39.4169297Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-04-25T04:11:39.4169785Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-04-25T04:11:39.4170272Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-04-25T04:11:39.4170798Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-04-25T04:11:39.4171327Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-04-25T04:11:39.4171824Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-04-25T04:11:39.4172300Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-04-25T04:11:39.4172797Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-04-25T04:11:39.4173273Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-04-25T04:11:39.4173763Z * [new branch] gh/jamesjwu/97/base -> origin/gh/jamesjwu/97/base 2025-04-25T04:11:39.4174253Z * [new branch] gh/jamesjwu/97/head -> origin/gh/jamesjwu/97/head 2025-04-25T04:11:39.4174727Z * [new branch] gh/jamesjwu/97/orig -> origin/gh/jamesjwu/97/orig 2025-04-25T04:11:39.4175216Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-04-25T04:11:39.4175705Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-04-25T04:11:39.4176235Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-04-25T04:11:39.4176752Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-04-25T04:11:39.4177349Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-04-25T04:11:39.4177839Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-04-25T04:11:39.4178330Z * [new branch] gh/janeyx99/221/base -> origin/gh/janeyx99/221/base 2025-04-25T04:11:39.4178821Z * [new branch] gh/janeyx99/221/head -> origin/gh/janeyx99/221/head 2025-04-25T04:11:39.4179304Z * [new branch] gh/janeyx99/221/orig -> origin/gh/janeyx99/221/orig 2025-04-25T04:11:39.4179799Z * [new branch] gh/janeyx99/222/base -> origin/gh/janeyx99/222/base 2025-04-25T04:11:39.4180290Z * [new branch] gh/janeyx99/222/head -> origin/gh/janeyx99/222/head 2025-04-25T04:11:39.4180769Z * [new branch] gh/janeyx99/222/orig -> origin/gh/janeyx99/222/orig 2025-04-25T04:11:39.4181253Z * [new branch] gh/janeyx99/223/base -> origin/gh/janeyx99/223/base 2025-04-25T04:11:39.4181779Z * [new branch] gh/janeyx99/223/head -> origin/gh/janeyx99/223/head 2025-04-25T04:11:39.4182311Z * [new branch] gh/janeyx99/223/orig -> origin/gh/janeyx99/223/orig 2025-04-25T04:11:39.4182877Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-04-25T04:11:39.4183359Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-04-25T04:11:39.4183855Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-04-25T04:11:39.4184334Z * [new branch] gh/janeyx99/228/base -> origin/gh/janeyx99/228/base 2025-04-25T04:11:39.4184822Z * [new branch] gh/janeyx99/228/head -> origin/gh/janeyx99/228/head 2025-04-25T04:11:39.4185315Z * [new branch] gh/janeyx99/228/orig -> origin/gh/janeyx99/228/orig 2025-04-25T04:11:39.4185794Z * [new branch] gh/janeyx99/235/base -> origin/gh/janeyx99/235/base 2025-04-25T04:11:39.4186292Z * [new branch] gh/janeyx99/235/head -> origin/gh/janeyx99/235/head 2025-04-25T04:11:39.4186785Z * [new branch] gh/janeyx99/235/orig -> origin/gh/janeyx99/235/orig 2025-04-25T04:11:39.4187282Z * [new branch] gh/janeyx99/236/base -> origin/gh/janeyx99/236/base 2025-04-25T04:11:39.4187844Z * [new branch] gh/janeyx99/236/head -> origin/gh/janeyx99/236/head 2025-04-25T04:11:39.4610931Z * [new branch] gh/janeyx99/236/orig -> origin/gh/janeyx99/236/orig 2025-04-25T04:11:39.4611492Z * [new branch] gh/janeyx99/237/base -> origin/gh/janeyx99/237/base 2025-04-25T04:11:39.4611980Z * [new branch] gh/janeyx99/237/head -> origin/gh/janeyx99/237/head 2025-04-25T04:11:39.4612482Z * [new branch] gh/janeyx99/237/orig -> origin/gh/janeyx99/237/orig 2025-04-25T04:11:39.4613000Z * [new branch] gh/janeyx99/238/base -> origin/gh/janeyx99/238/base 2025-04-25T04:11:39.4613485Z * [new branch] gh/janeyx99/238/head -> origin/gh/janeyx99/238/head 2025-04-25T04:11:39.4613981Z * [new branch] gh/janeyx99/238/orig -> origin/gh/janeyx99/238/orig 2025-04-25T04:11:39.4614467Z * [new branch] gh/janeyx99/239/base -> origin/gh/janeyx99/239/base 2025-04-25T04:11:39.4614949Z * [new branch] gh/janeyx99/239/head -> origin/gh/janeyx99/239/head 2025-04-25T04:11:39.4615438Z * [new branch] gh/janeyx99/239/orig -> origin/gh/janeyx99/239/orig 2025-04-25T04:11:39.4615921Z * [new branch] gh/janeyx99/240/base -> origin/gh/janeyx99/240/base 2025-04-25T04:11:39.4616410Z * [new branch] gh/janeyx99/240/head -> origin/gh/janeyx99/240/head 2025-04-25T04:11:39.4616891Z * [new branch] gh/janeyx99/240/orig -> origin/gh/janeyx99/240/orig 2025-04-25T04:11:39.4618179Z * [new branch] gh/janeyx99/241/base -> origin/gh/janeyx99/241/base 2025-04-25T04:11:39.4618683Z * [new branch] gh/janeyx99/241/head -> origin/gh/janeyx99/241/head 2025-04-25T04:11:39.4619170Z * [new branch] gh/janeyx99/241/orig -> origin/gh/janeyx99/241/orig 2025-04-25T04:11:39.4619654Z * [new branch] gh/janeyx99/242/base -> origin/gh/janeyx99/242/base 2025-04-25T04:11:39.4620134Z * [new branch] gh/janeyx99/242/head -> origin/gh/janeyx99/242/head 2025-04-25T04:11:39.4620623Z * [new branch] gh/janeyx99/242/orig -> origin/gh/janeyx99/242/orig 2025-04-25T04:11:39.4621102Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-04-25T04:11:39.4621599Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-04-25T04:11:39.4622084Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-04-25T04:11:39.4622567Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-04-25T04:11:39.4623043Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-04-25T04:11:39.4623944Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-04-25T04:11:39.4624431Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-04-25T04:11:39.4624919Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-04-25T04:11:39.4625385Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-04-25T04:11:39.4625868Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-04-25T04:11:39.4626334Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-04-25T04:11:39.4626816Z * [new branch] gh/jansel/473/base -> origin/gh/jansel/473/base 2025-04-25T04:11:39.4627292Z * [new branch] gh/jansel/473/head -> origin/gh/jansel/473/head 2025-04-25T04:11:39.4627766Z * [new branch] gh/jansel/473/orig -> origin/gh/jansel/473/orig 2025-04-25T04:11:39.4628237Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-04-25T04:11:39.4628712Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-04-25T04:11:39.4629186Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-04-25T04:11:39.4629663Z * [new branch] gh/jansel/514/base -> origin/gh/jansel/514/base 2025-04-25T04:11:39.4630126Z * [new branch] gh/jansel/514/head -> origin/gh/jansel/514/head 2025-04-25T04:11:39.4630604Z * [new branch] gh/jansel/514/orig -> origin/gh/jansel/514/orig 2025-04-25T04:11:39.4631082Z * [new branch] gh/jansel/515/base -> origin/gh/jansel/515/base 2025-04-25T04:11:39.4631560Z * [new branch] gh/jansel/515/head -> origin/gh/jansel/515/head 2025-04-25T04:11:39.4632032Z * [new branch] gh/jansel/515/orig -> origin/gh/jansel/515/orig 2025-04-25T04:11:39.4632508Z * [new branch] gh/jansel/516/base -> origin/gh/jansel/516/base 2025-04-25T04:11:39.4632982Z * [new branch] gh/jansel/516/head -> origin/gh/jansel/516/head 2025-04-25T04:11:39.4633448Z * [new branch] gh/jansel/516/orig -> origin/gh/jansel/516/orig 2025-04-25T04:11:39.4633924Z * [new branch] gh/jansel/517/base -> origin/gh/jansel/517/base 2025-04-25T04:11:39.4634390Z * [new branch] gh/jansel/517/head -> origin/gh/jansel/517/head 2025-04-25T04:11:39.5051626Z * [new branch] gh/jansel/517/orig -> origin/gh/jansel/517/orig 2025-04-25T04:11:39.5052306Z * [new branch] gh/jansel/518/base -> origin/gh/jansel/518/base 2025-04-25T04:11:39.5052786Z * [new branch] gh/jansel/518/head -> origin/gh/jansel/518/head 2025-04-25T04:11:39.5053278Z * [new branch] gh/jansel/518/orig -> origin/gh/jansel/518/orig 2025-04-25T04:11:39.5053766Z * [new branch] gh/jansel/522/base -> origin/gh/jansel/522/base 2025-04-25T04:11:39.5054232Z * [new branch] gh/jansel/522/head -> origin/gh/jansel/522/head 2025-04-25T04:11:39.5054719Z * [new branch] gh/jansel/522/orig -> origin/gh/jansel/522/orig 2025-04-25T04:11:39.5055217Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-04-25T04:11:39.5055754Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-04-25T04:11:39.5056290Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-04-25T04:11:39.5056820Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-04-25T04:11:39.5057349Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-04-25T04:11:39.5057966Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-04-25T04:11:39.5058502Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-04-25T04:11:39.5059020Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-04-25T04:11:39.5059553Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-04-25T04:11:39.5060088Z * [new branch] gh/jbschlosser/228/base -> origin/gh/jbschlosser/228/base 2025-04-25T04:11:39.5060607Z * [new branch] gh/jbschlosser/228/head -> origin/gh/jbschlosser/228/head 2025-04-25T04:11:39.5061153Z * [new branch] gh/jbschlosser/228/orig -> origin/gh/jbschlosser/228/orig 2025-04-25T04:11:39.5061674Z * [new branch] gh/jbschlosser/229/base -> origin/gh/jbschlosser/229/base 2025-04-25T04:11:39.5062202Z * [new branch] gh/jbschlosser/229/head -> origin/gh/jbschlosser/229/head 2025-04-25T04:11:39.5062751Z * [new branch] gh/jbschlosser/229/orig -> origin/gh/jbschlosser/229/orig 2025-04-25T04:11:39.5063270Z * [new branch] gh/jbschlosser/232/base -> origin/gh/jbschlosser/232/base 2025-04-25T04:11:39.5063797Z * [new branch] gh/jbschlosser/232/head -> origin/gh/jbschlosser/232/head 2025-04-25T04:11:39.5064320Z * [new branch] gh/jbschlosser/232/orig -> origin/gh/jbschlosser/232/orig 2025-04-25T04:11:39.5064843Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-04-25T04:11:39.5065349Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-04-25T04:11:39.5065865Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-04-25T04:11:39.5066368Z * [new branch] gh/jiayisunx/34/base -> origin/gh/jiayisunx/34/base 2025-04-25T04:11:39.5066866Z * [new branch] gh/jiayisunx/34/head -> origin/gh/jiayisunx/34/head 2025-04-25T04:11:39.5067374Z * [new branch] gh/jiayisunx/34/orig -> origin/gh/jiayisunx/34/orig 2025-04-25T04:11:39.5067873Z * [new branch] gh/jiayisunx/37/base -> origin/gh/jiayisunx/37/base 2025-04-25T04:11:39.5068365Z * [new branch] gh/jiayisunx/37/head -> origin/gh/jiayisunx/37/head 2025-04-25T04:11:39.5068867Z * [new branch] gh/jiayisunx/37/orig -> origin/gh/jiayisunx/37/orig 2025-04-25T04:11:39.5069356Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-04-25T04:11:39.5069934Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-04-25T04:11:39.5070436Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-04-25T04:11:39.5070932Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-04-25T04:11:39.5071433Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-04-25T04:11:39.5071925Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-04-25T04:11:39.5072415Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-04-25T04:11:39.5072907Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-04-25T04:11:39.5073402Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-04-25T04:11:39.5073900Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-04-25T04:11:39.5074396Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-04-25T04:11:39.5074893Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-04-25T04:11:39.5492085Z * [new branch] gh/jiayisunx/62/base -> origin/gh/jiayisunx/62/base 2025-04-25T04:11:39.5492649Z * [new branch] gh/jiayisunx/62/head -> origin/gh/jiayisunx/62/head 2025-04-25T04:11:39.5493161Z * [new branch] gh/jiayisunx/62/orig -> origin/gh/jiayisunx/62/orig 2025-04-25T04:11:39.5493661Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-04-25T04:11:39.5494163Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-04-25T04:11:39.5494662Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-04-25T04:11:39.5495168Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-04-25T04:11:39.5495691Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-04-25T04:11:39.5496208Z * [new branch] gh/justinchuby/103/base -> origin/gh/justinchuby/103/base 2025-04-25T04:11:39.5496737Z * [new branch] gh/justinchuby/103/head -> origin/gh/justinchuby/103/head 2025-04-25T04:11:39.5497261Z * [new branch] gh/justinchuby/103/orig -> origin/gh/justinchuby/103/orig 2025-04-25T04:11:39.5497777Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-04-25T04:11:39.5498303Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-04-25T04:11:39.5498821Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-04-25T04:11:39.5499356Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-04-25T04:11:39.5499885Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-04-25T04:11:39.5500406Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-04-25T04:11:39.5500936Z * [new branch] gh/justinchuby/116/base -> origin/gh/justinchuby/116/base 2025-04-25T04:11:39.5501460Z * [new branch] gh/justinchuby/116/head -> origin/gh/justinchuby/116/head 2025-04-25T04:11:39.5501987Z * [new branch] gh/justinchuby/116/orig -> origin/gh/justinchuby/116/orig 2025-04-25T04:11:39.5502508Z * [new branch] gh/justinchuby/117/base -> origin/gh/justinchuby/117/base 2025-04-25T04:11:39.5503033Z * [new branch] gh/justinchuby/117/head -> origin/gh/justinchuby/117/head 2025-04-25T04:11:39.5503560Z * [new branch] gh/justinchuby/117/orig -> origin/gh/justinchuby/117/orig 2025-04-25T04:11:39.5504052Z * [new branch] gh/kadeng/12/base -> origin/gh/kadeng/12/base 2025-04-25T04:11:39.5504642Z * [new branch] gh/kadeng/12/head -> origin/gh/kadeng/12/head 2025-04-25T04:11:39.5505105Z * [new branch] gh/kadeng/13/base -> origin/gh/kadeng/13/base 2025-04-25T04:11:39.5505591Z * [new branch] gh/kadeng/13/head -> origin/gh/kadeng/13/head 2025-04-25T04:11:39.5506061Z * [new branch] gh/kadeng/14/base -> origin/gh/kadeng/14/base 2025-04-25T04:11:39.5506520Z * [new branch] gh/kadeng/14/head -> origin/gh/kadeng/14/head 2025-04-25T04:11:39.5506989Z * [new branch] gh/kadeng/16/base -> origin/gh/kadeng/16/base 2025-04-25T04:11:39.5507443Z * [new branch] gh/kadeng/16/head -> origin/gh/kadeng/16/head 2025-04-25T04:11:39.5507912Z * [new branch] gh/kadeng/6/base -> origin/gh/kadeng/6/base 2025-04-25T04:11:39.5508441Z * [new branch] gh/kadeng/6/head -> origin/gh/kadeng/6/head 2025-04-25T04:11:39.5508945Z * [new branch] gh/kadeng/7/base -> origin/gh/kadeng/7/base 2025-04-25T04:11:39.5509406Z * [new branch] gh/kadeng/9/base -> origin/gh/kadeng/9/base 2025-04-25T04:11:39.5509945Z * [new branch] gh/kadeng/9/head -> origin/gh/kadeng/9/head 2025-04-25T04:11:39.5510429Z * [new branch] gh/kkkkeeee/1/base -> origin/gh/kkkkeeee/1/base 2025-04-25T04:11:39.5510915Z * [new branch] gh/kkkkeeee/1/head -> origin/gh/kkkkeeee/1/head 2025-04-25T04:11:39.5511405Z * [new branch] gh/kkkkeeee/1/orig -> origin/gh/kkkkeeee/1/orig 2025-04-25T04:11:39.5511922Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-04-25T04:11:39.5512445Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-04-25T04:11:39.5512972Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-04-25T04:11:39.5513484Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-04-25T04:11:39.5514057Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-04-25T04:11:39.5514614Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-04-25T04:11:39.5515125Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-04-25T04:11:39.5515645Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-04-25T04:11:39.5924692Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-04-25T04:11:39.5925341Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-04-25T04:11:39.5925916Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-04-25T04:11:39.5926491Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-04-25T04:11:39.5927029Z * [new branch] gh/kurtamohler/35/base -> origin/gh/kurtamohler/35/base 2025-04-25T04:11:39.5927556Z * [new branch] gh/kurtamohler/35/head -> origin/gh/kurtamohler/35/head 2025-04-25T04:11:39.5928068Z * [new branch] gh/kurtamohler/35/orig -> origin/gh/kurtamohler/35/orig 2025-04-25T04:11:39.5928568Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-04-25T04:11:39.5929044Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-04-25T04:11:39.5929532Z * [new branch] gh/kwen2501/109/base -> origin/gh/kwen2501/109/base 2025-04-25T04:11:39.5930029Z * [new branch] gh/kwen2501/109/head -> origin/gh/kwen2501/109/head 2025-04-25T04:11:39.5930505Z * [new branch] gh/kwen2501/109/orig -> origin/gh/kwen2501/109/orig 2025-04-25T04:11:39.5931149Z * [new branch] gh/kwen2501/128/base -> origin/gh/kwen2501/128/base 2025-04-25T04:11:39.5931639Z * [new branch] gh/kwen2501/128/head -> origin/gh/kwen2501/128/head 2025-04-25T04:11:39.5932135Z * [new branch] gh/kwen2501/128/orig -> origin/gh/kwen2501/128/orig 2025-04-25T04:11:39.5932614Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-04-25T04:11:39.5933105Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-04-25T04:11:39.5933599Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-04-25T04:11:39.5934076Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-04-25T04:11:39.5934570Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-04-25T04:11:39.5947088Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-04-25T04:11:39.5947612Z * [new branch] gh/kwen2501/132/base -> origin/gh/kwen2501/132/base 2025-04-25T04:11:39.5948278Z * [new branch] gh/kwen2501/132/head -> origin/gh/kwen2501/132/head 2025-04-25T04:11:39.5948781Z * [new branch] gh/kwen2501/132/orig -> origin/gh/kwen2501/132/orig 2025-04-25T04:11:39.5949287Z * [new branch] gh/kwen2501/133/base -> origin/gh/kwen2501/133/base 2025-04-25T04:11:39.5949765Z * [new branch] gh/kwen2501/133/head -> origin/gh/kwen2501/133/head 2025-04-25T04:11:39.5950264Z * [new branch] gh/kwen2501/133/orig -> origin/gh/kwen2501/133/orig 2025-04-25T04:11:39.5950742Z * [new branch] gh/kwen2501/134/base -> origin/gh/kwen2501/134/base 2025-04-25T04:11:39.5951227Z * [new branch] gh/kwen2501/134/head -> origin/gh/kwen2501/134/head 2025-04-25T04:11:39.5951714Z * [new branch] gh/kwen2501/134/orig -> origin/gh/kwen2501/134/orig 2025-04-25T04:11:39.5952195Z * [new branch] gh/kwen2501/135/base -> origin/gh/kwen2501/135/base 2025-04-25T04:11:39.5952687Z * [new branch] gh/kwen2501/135/head -> origin/gh/kwen2501/135/head 2025-04-25T04:11:39.5953163Z * [new branch] gh/kwen2501/135/orig -> origin/gh/kwen2501/135/orig 2025-04-25T04:11:39.5953656Z * [new branch] gh/kwen2501/136/base -> origin/gh/kwen2501/136/base 2025-04-25T04:11:39.5954145Z * [new branch] gh/kwen2501/136/head -> origin/gh/kwen2501/136/head 2025-04-25T04:11:39.5954621Z * [new branch] gh/kwen2501/136/orig -> origin/gh/kwen2501/136/orig 2025-04-25T04:11:39.5955103Z * [new branch] gh/kwen2501/137/base -> origin/gh/kwen2501/137/base 2025-04-25T04:11:39.5955587Z * [new branch] gh/kwen2501/137/head -> origin/gh/kwen2501/137/head 2025-04-25T04:11:39.5956087Z * [new branch] gh/kwen2501/137/orig -> origin/gh/kwen2501/137/orig 2025-04-25T04:11:39.5956579Z * [new branch] gh/kwen2501/138/base -> origin/gh/kwen2501/138/base 2025-04-25T04:11:39.5957064Z * [new branch] gh/kwen2501/138/head -> origin/gh/kwen2501/138/head 2025-04-25T04:11:39.5957559Z * [new branch] gh/kwen2501/138/orig -> origin/gh/kwen2501/138/orig 2025-04-25T04:11:39.5958045Z * [new branch] gh/kwen2501/139/base -> origin/gh/kwen2501/139/base 2025-04-25T04:11:39.5958534Z * [new branch] gh/kwen2501/139/head -> origin/gh/kwen2501/139/head 2025-04-25T04:11:39.5959026Z * [new branch] gh/kwen2501/139/orig -> origin/gh/kwen2501/139/orig 2025-04-25T04:11:39.5959530Z * [new branch] gh/kwen2501/140/base -> origin/gh/kwen2501/140/base 2025-04-25T04:11:39.6357128Z * [new branch] gh/kwen2501/140/head -> origin/gh/kwen2501/140/head 2025-04-25T04:11:39.6357661Z * [new branch] gh/kwen2501/140/orig -> origin/gh/kwen2501/140/orig 2025-04-25T04:11:39.6358178Z * [new branch] gh/kwen2501/141/base -> origin/gh/kwen2501/141/base 2025-04-25T04:11:39.6358678Z * [new branch] gh/kwen2501/141/head -> origin/gh/kwen2501/141/head 2025-04-25T04:11:39.6359159Z * [new branch] gh/kwen2501/141/orig -> origin/gh/kwen2501/141/orig 2025-04-25T04:11:39.6359657Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-04-25T04:11:39.6360182Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-04-25T04:11:39.6360707Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-04-25T04:11:39.6361201Z * [new branch] gh/kwen2501/143/base -> origin/gh/kwen2501/143/base 2025-04-25T04:11:39.6361679Z * [new branch] gh/kwen2501/143/head -> origin/gh/kwen2501/143/head 2025-04-25T04:11:39.6362161Z * [new branch] gh/kwen2501/143/orig -> origin/gh/kwen2501/143/orig 2025-04-25T04:11:39.6362781Z * [new branch] gh/kwen2501/144/base -> origin/gh/kwen2501/144/base 2025-04-25T04:11:39.6363276Z * [new branch] gh/kwen2501/144/head -> origin/gh/kwen2501/144/head 2025-04-25T04:11:39.6363769Z * [new branch] gh/kwen2501/144/orig -> origin/gh/kwen2501/144/orig 2025-04-25T04:11:39.6364246Z * [new branch] gh/kwen2501/145/base -> origin/gh/kwen2501/145/base 2025-04-25T04:11:39.6364745Z * [new branch] gh/kwen2501/145/head -> origin/gh/kwen2501/145/head 2025-04-25T04:11:39.6365230Z * [new branch] gh/kwen2501/145/orig -> origin/gh/kwen2501/145/orig 2025-04-25T04:11:39.6365766Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-04-25T04:11:39.6366361Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-04-25T04:11:39.6366941Z * [new branch] gh/laithsakka/112/base -> origin/gh/laithsakka/112/base 2025-04-25T04:11:39.6367555Z * [new branch] gh/laithsakka/112/head -> origin/gh/laithsakka/112/head 2025-04-25T04:11:39.6368137Z * [new branch] gh/laithsakka/112/orig -> origin/gh/laithsakka/112/orig 2025-04-25T04:11:39.6368728Z * [new branch] gh/laithsakka/113/base -> origin/gh/laithsakka/113/base 2025-04-25T04:11:39.6369313Z * [new branch] gh/laithsakka/113/head -> origin/gh/laithsakka/113/head 2025-04-25T04:11:39.6369934Z * [new branch] gh/laithsakka/113/orig -> origin/gh/laithsakka/113/orig 2025-04-25T04:11:39.6370566Z * [new branch] gh/laithsakka/114/base -> origin/gh/laithsakka/114/base 2025-04-25T04:11:39.6371209Z * [new branch] gh/laithsakka/114/head -> origin/gh/laithsakka/114/head 2025-04-25T04:11:39.6371850Z * [new branch] gh/laithsakka/114/orig -> origin/gh/laithsakka/114/orig 2025-04-25T04:11:39.6372511Z * [new branch] gh/laithsakka/115/base -> origin/gh/laithsakka/115/base 2025-04-25T04:11:39.6373198Z * [new branch] gh/laithsakka/115/head -> origin/gh/laithsakka/115/head 2025-04-25T04:11:39.6373895Z * [new branch] gh/laithsakka/115/orig -> origin/gh/laithsakka/115/orig 2025-04-25T04:11:39.6374558Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-04-25T04:11:39.6375238Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-04-25T04:11:39.6375886Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-04-25T04:11:39.6376632Z * [new branch] gh/laithsakka/118/base -> origin/gh/laithsakka/118/base 2025-04-25T04:11:39.6377418Z * [new branch] gh/laithsakka/118/head -> origin/gh/laithsakka/118/head 2025-04-25T04:11:39.6378084Z * [new branch] gh/laithsakka/118/orig -> origin/gh/laithsakka/118/orig 2025-04-25T04:11:39.6378781Z * [new branch] gh/laithsakka/119/base -> origin/gh/laithsakka/119/base 2025-04-25T04:11:39.6379443Z * [new branch] gh/laithsakka/119/head -> origin/gh/laithsakka/119/head 2025-04-25T04:11:39.6380101Z * [new branch] gh/laithsakka/119/orig -> origin/gh/laithsakka/119/orig 2025-04-25T04:11:39.6380807Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-04-25T04:11:39.6381443Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-04-25T04:11:39.6382142Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-04-25T04:11:39.6382877Z * [new branch] gh/laithsakka/122/base -> origin/gh/laithsakka/122/base 2025-04-25T04:11:39.6383457Z * [new branch] gh/laithsakka/122/head -> origin/gh/laithsakka/122/head 2025-04-25T04:11:39.6384121Z * [new branch] gh/laithsakka/122/orig -> origin/gh/laithsakka/122/orig 2025-04-25T04:11:39.6776508Z * [new branch] gh/laithsakka/124/base -> origin/gh/laithsakka/124/base 2025-04-25T04:11:39.6777068Z * [new branch] gh/laithsakka/124/head -> origin/gh/laithsakka/124/head 2025-04-25T04:11:39.6777586Z * [new branch] gh/laithsakka/124/orig -> origin/gh/laithsakka/124/orig 2025-04-25T04:11:39.6778113Z * [new branch] gh/laithsakka/125/base -> origin/gh/laithsakka/125/base 2025-04-25T04:11:39.6778631Z * [new branch] gh/laithsakka/125/head -> origin/gh/laithsakka/125/head 2025-04-25T04:11:39.6779165Z * [new branch] gh/laithsakka/125/orig -> origin/gh/laithsakka/125/orig 2025-04-25T04:11:39.6779757Z * [new branch] gh/laithsakka/126/base -> origin/gh/laithsakka/126/base 2025-04-25T04:11:39.6780334Z * [new branch] gh/laithsakka/126/head -> origin/gh/laithsakka/126/head 2025-04-25T04:11:39.6780869Z * [new branch] gh/laithsakka/126/orig -> origin/gh/laithsakka/126/orig 2025-04-25T04:11:39.6781407Z * [new branch] gh/laithsakka/127/base -> origin/gh/laithsakka/127/base 2025-04-25T04:11:39.6781927Z * [new branch] gh/laithsakka/127/head -> origin/gh/laithsakka/127/head 2025-04-25T04:11:39.6782445Z * [new branch] gh/laithsakka/127/orig -> origin/gh/laithsakka/127/orig 2025-04-25T04:11:39.6782952Z * [new branch] gh/laithsakka/128/base -> origin/gh/laithsakka/128/base 2025-04-25T04:11:39.6783465Z * [new branch] gh/laithsakka/128/head -> origin/gh/laithsakka/128/head 2025-04-25T04:11:39.6783989Z * [new branch] gh/laithsakka/128/orig -> origin/gh/laithsakka/128/orig 2025-04-25T04:11:39.6784496Z * [new branch] gh/laithsakka/129/base -> origin/gh/laithsakka/129/base 2025-04-25T04:11:39.6785020Z * [new branch] gh/laithsakka/129/head -> origin/gh/laithsakka/129/head 2025-04-25T04:11:39.6785567Z * [new branch] gh/laithsakka/129/orig -> origin/gh/laithsakka/129/orig 2025-04-25T04:11:39.6786119Z * [new branch] gh/laithsakka/130/base -> origin/gh/laithsakka/130/base 2025-04-25T04:11:39.6786635Z * [new branch] gh/laithsakka/130/head -> origin/gh/laithsakka/130/head 2025-04-25T04:11:39.6787146Z * [new branch] gh/laithsakka/130/orig -> origin/gh/laithsakka/130/orig 2025-04-25T04:11:39.6787667Z * [new branch] gh/laithsakka/131/base -> origin/gh/laithsakka/131/base 2025-04-25T04:11:39.6788184Z * [new branch] gh/laithsakka/131/head -> origin/gh/laithsakka/131/head 2025-04-25T04:11:39.6788846Z * [new branch] gh/laithsakka/131/orig -> origin/gh/laithsakka/131/orig 2025-04-25T04:11:39.6789356Z * [new branch] gh/laithsakka/132/base -> origin/gh/laithsakka/132/base 2025-04-25T04:11:39.6789879Z * [new branch] gh/laithsakka/132/head -> origin/gh/laithsakka/132/head 2025-04-25T04:11:39.6790398Z * [new branch] gh/laithsakka/132/orig -> origin/gh/laithsakka/132/orig 2025-04-25T04:11:39.6790951Z * [new branch] gh/laithsakka/133/base -> origin/gh/laithsakka/133/base 2025-04-25T04:11:39.6791505Z * [new branch] gh/laithsakka/133/head -> origin/gh/laithsakka/133/head 2025-04-25T04:11:39.6792011Z * [new branch] gh/laithsakka/133/orig -> origin/gh/laithsakka/133/orig 2025-04-25T04:11:39.6792523Z * [new branch] gh/laithsakka/134/base -> origin/gh/laithsakka/134/base 2025-04-25T04:11:39.6793039Z * [new branch] gh/laithsakka/134/head -> origin/gh/laithsakka/134/head 2025-04-25T04:11:39.6793548Z * [new branch] gh/laithsakka/134/orig -> origin/gh/laithsakka/134/orig 2025-04-25T04:11:39.6794148Z * [new branch] gh/laithsakka/135/base -> origin/gh/laithsakka/135/base 2025-04-25T04:11:39.6794659Z * [new branch] gh/laithsakka/135/head -> origin/gh/laithsakka/135/head 2025-04-25T04:11:39.6795178Z * [new branch] gh/laithsakka/135/orig -> origin/gh/laithsakka/135/orig 2025-04-25T04:11:39.6795694Z * [new branch] gh/laithsakka/136/base -> origin/gh/laithsakka/136/base 2025-04-25T04:11:39.6796202Z * [new branch] gh/laithsakka/136/head -> origin/gh/laithsakka/136/head 2025-04-25T04:11:39.6796762Z * [new branch] gh/laithsakka/136/orig -> origin/gh/laithsakka/136/orig 2025-04-25T04:11:39.6797323Z * [new branch] gh/laithsakka/137/base -> origin/gh/laithsakka/137/base 2025-04-25T04:11:39.6797845Z * [new branch] gh/laithsakka/137/head -> origin/gh/laithsakka/137/head 2025-04-25T04:11:39.6798367Z * [new branch] gh/laithsakka/137/orig -> origin/gh/laithsakka/137/orig 2025-04-25T04:11:39.6798879Z * [new branch] gh/laithsakka/138/base -> origin/gh/laithsakka/138/base 2025-04-25T04:11:39.6799406Z * [new branch] gh/laithsakka/138/head -> origin/gh/laithsakka/138/head 2025-04-25T04:11:39.6799919Z * [new branch] gh/laithsakka/138/orig -> origin/gh/laithsakka/138/orig 2025-04-25T04:11:39.6800445Z * [new branch] gh/laithsakka/139/base -> origin/gh/laithsakka/139/base 2025-04-25T04:11:39.7181979Z * [new branch] gh/laithsakka/139/head -> origin/gh/laithsakka/139/head 2025-04-25T04:11:39.7182570Z * [new branch] gh/laithsakka/139/orig -> origin/gh/laithsakka/139/orig 2025-04-25T04:11:39.7183162Z * [new branch] gh/laithsakka/140/base -> origin/gh/laithsakka/140/base 2025-04-25T04:11:39.7183685Z * [new branch] gh/laithsakka/140/head -> origin/gh/laithsakka/140/head 2025-04-25T04:11:39.7184226Z * [new branch] gh/laithsakka/140/orig -> origin/gh/laithsakka/140/orig 2025-04-25T04:11:39.7184748Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-04-25T04:11:39.7185257Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-04-25T04:11:39.7185773Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-04-25T04:11:39.7186289Z * [new branch] gh/laithsakka/142/base -> origin/gh/laithsakka/142/base 2025-04-25T04:11:39.7186795Z * [new branch] gh/laithsakka/142/head -> origin/gh/laithsakka/142/head 2025-04-25T04:11:39.7187315Z * [new branch] gh/laithsakka/142/orig -> origin/gh/laithsakka/142/orig 2025-04-25T04:11:39.7187952Z * [new branch] gh/laithsakka/143/base -> origin/gh/laithsakka/143/base 2025-04-25T04:11:39.7188535Z * [new branch] gh/laithsakka/143/head -> origin/gh/laithsakka/143/head 2025-04-25T04:11:39.7189060Z * [new branch] gh/laithsakka/143/orig -> origin/gh/laithsakka/143/orig 2025-04-25T04:11:39.7189572Z * [new branch] gh/laithsakka/144/base -> origin/gh/laithsakka/144/base 2025-04-25T04:11:39.7190079Z * [new branch] gh/laithsakka/144/head -> origin/gh/laithsakka/144/head 2025-04-25T04:11:39.7190585Z * [new branch] gh/laithsakka/144/orig -> origin/gh/laithsakka/144/orig 2025-04-25T04:11:39.7191104Z * [new branch] gh/laithsakka/145/base -> origin/gh/laithsakka/145/base 2025-04-25T04:11:39.7191610Z * [new branch] gh/laithsakka/145/head -> origin/gh/laithsakka/145/head 2025-04-25T04:11:39.7192116Z * [new branch] gh/laithsakka/145/orig -> origin/gh/laithsakka/145/orig 2025-04-25T04:11:39.7192631Z * [new branch] gh/laithsakka/146/base -> origin/gh/laithsakka/146/base 2025-04-25T04:11:39.7193229Z * [new branch] gh/laithsakka/146/head -> origin/gh/laithsakka/146/head 2025-04-25T04:11:39.7193774Z * [new branch] gh/laithsakka/146/orig -> origin/gh/laithsakka/146/orig 2025-04-25T04:11:39.7194322Z * [new branch] gh/laithsakka/147/base -> origin/gh/laithsakka/147/base 2025-04-25T04:11:39.7194843Z * [new branch] gh/laithsakka/147/head -> origin/gh/laithsakka/147/head 2025-04-25T04:11:39.7195365Z * [new branch] gh/laithsakka/147/orig -> origin/gh/laithsakka/147/orig 2025-04-25T04:11:39.7195869Z * [new branch] gh/laithsakka/148/base -> origin/gh/laithsakka/148/base 2025-04-25T04:11:39.7196386Z * [new branch] gh/laithsakka/148/head -> origin/gh/laithsakka/148/head 2025-04-25T04:11:39.7196900Z * [new branch] gh/laithsakka/148/orig -> origin/gh/laithsakka/148/orig 2025-04-25T04:11:39.7197414Z * [new branch] gh/laithsakka/149/base -> origin/gh/laithsakka/149/base 2025-04-25T04:11:39.7197941Z * [new branch] gh/laithsakka/149/head -> origin/gh/laithsakka/149/head 2025-04-25T04:11:39.7198463Z * [new branch] gh/laithsakka/149/orig -> origin/gh/laithsakka/149/orig 2025-04-25T04:11:39.7198979Z * [new branch] gh/laithsakka/150/base -> origin/gh/laithsakka/150/base 2025-04-25T04:11:39.7199518Z * [new branch] gh/laithsakka/150/head -> origin/gh/laithsakka/150/head 2025-04-25T04:11:39.7200071Z * [new branch] gh/laithsakka/150/orig -> origin/gh/laithsakka/150/orig 2025-04-25T04:11:39.7200583Z * [new branch] gh/laithsakka/151/base -> origin/gh/laithsakka/151/base 2025-04-25T04:11:39.7201089Z * [new branch] gh/laithsakka/151/head -> origin/gh/laithsakka/151/head 2025-04-25T04:11:39.7201615Z * [new branch] gh/laithsakka/151/orig -> origin/gh/laithsakka/151/orig 2025-04-25T04:11:39.7202121Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-04-25T04:11:39.7202651Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-04-25T04:11:39.7203164Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-04-25T04:11:39.7203673Z * [new branch] gh/laithsakka/153/base -> origin/gh/laithsakka/153/base 2025-04-25T04:11:39.7204194Z * [new branch] gh/laithsakka/153/head -> origin/gh/laithsakka/153/head 2025-04-25T04:11:39.7204699Z * [new branch] gh/laithsakka/153/orig -> origin/gh/laithsakka/153/orig 2025-04-25T04:11:39.7205250Z * [new branch] gh/laithsakka/154/base -> origin/gh/laithsakka/154/base 2025-04-25T04:11:39.7607033Z * [new branch] gh/laithsakka/154/head -> origin/gh/laithsakka/154/head 2025-04-25T04:11:39.7607595Z * [new branch] gh/laithsakka/154/orig -> origin/gh/laithsakka/154/orig 2025-04-25T04:11:39.7608133Z * [new branch] gh/laithsakka/155/base -> origin/gh/laithsakka/155/base 2025-04-25T04:11:39.7608646Z * [new branch] gh/laithsakka/155/head -> origin/gh/laithsakka/155/head 2025-04-25T04:11:39.7609186Z * [new branch] gh/laithsakka/155/orig -> origin/gh/laithsakka/155/orig 2025-04-25T04:11:39.7609697Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-04-25T04:11:39.7610209Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-04-25T04:11:39.7610764Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-04-25T04:11:39.7611305Z * [new branch] gh/laithsakka/157/base -> origin/gh/laithsakka/157/base 2025-04-25T04:11:39.7611834Z * [new branch] gh/laithsakka/157/head -> origin/gh/laithsakka/157/head 2025-04-25T04:11:39.7612352Z * [new branch] gh/laithsakka/157/orig -> origin/gh/laithsakka/157/orig 2025-04-25T04:11:39.7612987Z * [new branch] gh/laithsakka/158/base -> origin/gh/laithsakka/158/base 2025-04-25T04:11:39.7613511Z * [new branch] gh/laithsakka/158/head -> origin/gh/laithsakka/158/head 2025-04-25T04:11:39.7614024Z * [new branch] gh/laithsakka/158/orig -> origin/gh/laithsakka/158/orig 2025-04-25T04:11:39.7614551Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-04-25T04:11:39.7615080Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-04-25T04:11:39.7615597Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-04-25T04:11:39.7616111Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-04-25T04:11:39.7616661Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-04-25T04:11:39.7617210Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-04-25T04:11:39.7617737Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-04-25T04:11:39.7618244Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-04-25T04:11:39.7618757Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-04-25T04:11:39.7619258Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-04-25T04:11:39.7619762Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-04-25T04:11:39.7620267Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-04-25T04:11:39.7620769Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-04-25T04:11:39.7621271Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-04-25T04:11:39.7621832Z * [new branch] gh/leslie-fang-intel/189/base -> origin/gh/leslie-fang-intel/189/base 2025-04-25T04:11:39.7622514Z * [new branch] gh/leslie-fang-intel/189/head -> origin/gh/leslie-fang-intel/189/head 2025-04-25T04:11:39.7623113Z * [new branch] gh/leslie-fang-intel/189/orig -> origin/gh/leslie-fang-intel/189/orig 2025-04-25T04:11:39.7623703Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-04-25T04:11:39.7624294Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-04-25T04:11:39.7624874Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-04-25T04:11:39.7625564Z * [new branch] gh/leslie-fang-intel/191/base -> origin/gh/leslie-fang-intel/191/base 2025-04-25T04:11:39.7626159Z * [new branch] gh/leslie-fang-intel/191/head -> origin/gh/leslie-fang-intel/191/head 2025-04-25T04:11:39.7626746Z * [new branch] gh/leslie-fang-intel/191/orig -> origin/gh/leslie-fang-intel/191/orig 2025-04-25T04:11:39.7627341Z * [new branch] gh/leslie-fang-intel/192/base -> origin/gh/leslie-fang-intel/192/base 2025-04-25T04:11:39.7627997Z * [new branch] gh/leslie-fang-intel/192/head -> origin/gh/leslie-fang-intel/192/head 2025-04-25T04:11:39.7628593Z * [new branch] gh/leslie-fang-intel/192/orig -> origin/gh/leslie-fang-intel/192/orig 2025-04-25T04:11:39.7629181Z * [new branch] gh/leslie-fang-intel/193/base -> origin/gh/leslie-fang-intel/193/base 2025-04-25T04:11:39.7629766Z * [new branch] gh/leslie-fang-intel/193/head -> origin/gh/leslie-fang-intel/193/head 2025-04-25T04:11:39.7630371Z * [new branch] gh/leslie-fang-intel/193/orig -> origin/gh/leslie-fang-intel/193/orig 2025-04-25T04:11:39.7630954Z * [new branch] gh/leslie-fang-intel/194/base -> origin/gh/leslie-fang-intel/194/base 2025-04-25T04:11:39.8042328Z * [new branch] gh/leslie-fang-intel/194/head -> origin/gh/leslie-fang-intel/194/head 2025-04-25T04:11:39.8042978Z * [new branch] gh/leslie-fang-intel/194/orig -> origin/gh/leslie-fang-intel/194/orig 2025-04-25T04:11:39.8043552Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-04-25T04:11:39.8044073Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-04-25T04:11:39.8044589Z * [new branch] gh/lucaskabela/1/orig -> origin/gh/lucaskabela/1/orig 2025-04-25T04:11:39.8045107Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-04-25T04:11:39.8045638Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-04-25T04:11:39.8046157Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-04-25T04:11:39.8046749Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-04-25T04:11:39.8047259Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-04-25T04:11:39.8047777Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-04-25T04:11:39.8048286Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-04-25T04:11:39.8048802Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-04-25T04:11:39.8049304Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-04-25T04:11:39.8049812Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-04-25T04:11:39.8050323Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-04-25T04:11:39.8050830Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-04-25T04:11:39.8051340Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-04-25T04:11:39.8051851Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-04-25T04:11:39.8052370Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-04-25T04:11:39.8052879Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-04-25T04:11:39.8053376Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-04-25T04:11:39.8053888Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-04-25T04:11:39.8054488Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-04-25T04:11:39.8055013Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-04-25T04:11:39.8055537Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-04-25T04:11:39.8056042Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-04-25T04:11:39.8056556Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-04-25T04:11:39.8057065Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-04-25T04:11:39.8057578Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-04-25T04:11:39.8058085Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-04-25T04:11:39.8058570Z * [new branch] gh/lw/10/base -> origin/gh/lw/10/base 2025-04-25T04:11:39.8059014Z * [new branch] gh/lw/10/head -> origin/gh/lw/10/head 2025-04-25T04:11:39.8059450Z * [new branch] gh/lw/10/orig -> origin/gh/lw/10/orig 2025-04-25T04:11:39.8059953Z * [new branch] gh/lw/11/base -> origin/gh/lw/11/base 2025-04-25T04:11:39.8060382Z * [new branch] gh/lw/11/head -> origin/gh/lw/11/head 2025-04-25T04:11:39.8060817Z * [new branch] gh/lw/11/orig -> origin/gh/lw/11/orig 2025-04-25T04:11:39.8061255Z * [new branch] gh/lw/12/base -> origin/gh/lw/12/base 2025-04-25T04:11:39.8061674Z * [new branch] gh/lw/12/head -> origin/gh/lw/12/head 2025-04-25T04:11:39.8062107Z * [new branch] gh/lw/12/orig -> origin/gh/lw/12/orig 2025-04-25T04:11:39.8062529Z * [new branch] gh/lw/13/base -> origin/gh/lw/13/base 2025-04-25T04:11:39.8062967Z * [new branch] gh/lw/13/head -> origin/gh/lw/13/head 2025-04-25T04:11:39.8063398Z * [new branch] gh/lw/13/orig -> origin/gh/lw/13/orig 2025-04-25T04:11:39.8063827Z * [new branch] gh/lw/14/base -> origin/gh/lw/14/base 2025-04-25T04:11:39.8064263Z * [new branch] gh/lw/14/head -> origin/gh/lw/14/head 2025-04-25T04:11:39.8064685Z * [new branch] gh/lw/14/orig -> origin/gh/lw/14/orig 2025-04-25T04:11:39.8065117Z * [new branch] gh/lw/15/base -> origin/gh/lw/15/base 2025-04-25T04:11:39.8521302Z * [new branch] gh/lw/15/head -> origin/gh/lw/15/head 2025-04-25T04:11:39.8521803Z * [new branch] gh/lw/15/orig -> origin/gh/lw/15/orig 2025-04-25T04:11:39.8522241Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-04-25T04:11:39.8522694Z * [new branch] gh/lw/8/base -> origin/gh/lw/8/base 2025-04-25T04:11:39.8523131Z * [new branch] gh/lw/8/head -> origin/gh/lw/8/head 2025-04-25T04:11:39.8523556Z * [new branch] gh/lw/8/orig -> origin/gh/lw/8/orig 2025-04-25T04:11:39.8523985Z * [new branch] gh/lw/9/base -> origin/gh/lw/9/base 2025-04-25T04:11:39.8524407Z * [new branch] gh/lw/9/head -> origin/gh/lw/9/head 2025-04-25T04:11:39.8524828Z * [new branch] gh/lw/9/orig -> origin/gh/lw/9/orig 2025-04-25T04:11:39.8525278Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-04-25T04:11:39.8525758Z * [new branch] gh/malfet/155/base -> origin/gh/malfet/155/base 2025-04-25T04:11:39.8526224Z * [new branch] gh/malfet/155/head -> origin/gh/malfet/155/head 2025-04-25T04:11:39.8526902Z * [new branch] gh/malfet/155/orig -> origin/gh/malfet/155/orig 2025-04-25T04:11:39.8527413Z * [new branch] gh/malfet/159/base -> origin/gh/malfet/159/base 2025-04-25T04:11:39.8527929Z * [new branch] gh/malfet/159/head -> origin/gh/malfet/159/head 2025-04-25T04:11:39.8528397Z * [new branch] gh/malfet/159/orig -> origin/gh/malfet/159/orig 2025-04-25T04:11:39.8528867Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-04-25T04:11:39.8529340Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-04-25T04:11:39.8529806Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-04-25T04:11:39.8530274Z * [new branch] gh/malfet/197/base -> origin/gh/malfet/197/base 2025-04-25T04:11:39.8530747Z * [new branch] gh/malfet/197/head -> origin/gh/malfet/197/head 2025-04-25T04:11:39.8531226Z * [new branch] gh/malfet/197/orig -> origin/gh/malfet/197/orig 2025-04-25T04:11:39.8531706Z * [new branch] gh/malfet/237/base -> origin/gh/malfet/237/base 2025-04-25T04:11:39.8532254Z * [new branch] gh/malfet/237/head -> origin/gh/malfet/237/head 2025-04-25T04:11:39.8532737Z * [new branch] gh/malfet/237/orig -> origin/gh/malfet/237/orig 2025-04-25T04:11:39.8533207Z * [new branch] gh/malfet/241/base -> origin/gh/malfet/241/base 2025-04-25T04:11:39.8533693Z * [new branch] gh/malfet/241/head -> origin/gh/malfet/241/head 2025-04-25T04:11:39.8534174Z * [new branch] gh/malfet/241/orig -> origin/gh/malfet/241/orig 2025-04-25T04:11:39.8534644Z * [new branch] gh/malfet/243/base -> origin/gh/malfet/243/base 2025-04-25T04:11:39.8535123Z * [new branch] gh/malfet/243/head -> origin/gh/malfet/243/head 2025-04-25T04:11:39.8535592Z * [new branch] gh/malfet/243/orig -> origin/gh/malfet/243/orig 2025-04-25T04:11:39.8536064Z * [new branch] gh/malfet/244/base -> origin/gh/malfet/244/base 2025-04-25T04:11:39.8536535Z * [new branch] gh/malfet/244/head -> origin/gh/malfet/244/head 2025-04-25T04:11:39.8537008Z * [new branch] gh/malfet/244/orig -> origin/gh/malfet/244/orig 2025-04-25T04:11:39.8537487Z * [new branch] gh/malfet/245/base -> origin/gh/malfet/245/base 2025-04-25T04:11:39.8537950Z * [new branch] gh/malfet/245/head -> origin/gh/malfet/245/head 2025-04-25T04:11:39.8538477Z * [new branch] gh/malfet/245/orig -> origin/gh/malfet/245/orig 2025-04-25T04:11:39.8538950Z * [new branch] gh/malfet/246/base -> origin/gh/malfet/246/base 2025-04-25T04:11:39.8539420Z * [new branch] gh/malfet/246/head -> origin/gh/malfet/246/head 2025-04-25T04:11:39.8539899Z * [new branch] gh/malfet/246/orig -> origin/gh/malfet/246/orig 2025-04-25T04:11:39.8540359Z * [new branch] gh/malfet/247/base -> origin/gh/malfet/247/base 2025-04-25T04:11:39.8540846Z * [new branch] gh/malfet/247/head -> origin/gh/malfet/247/head 2025-04-25T04:11:39.8541315Z * [new branch] gh/malfet/247/orig -> origin/gh/malfet/247/orig 2025-04-25T04:11:39.8541793Z * [new branch] gh/malfet/248/base -> origin/gh/malfet/248/base 2025-04-25T04:11:39.8542264Z * [new branch] gh/malfet/248/head -> origin/gh/malfet/248/head 2025-04-25T04:11:39.8542730Z * [new branch] gh/malfet/248/orig -> origin/gh/malfet/248/orig 2025-04-25T04:11:39.8543201Z * [new branch] gh/malfet/249/base -> origin/gh/malfet/249/base 2025-04-25T04:11:39.8543671Z * [new branch] gh/malfet/249/head -> origin/gh/malfet/249/head 2025-04-25T04:11:39.8544237Z * [new branch] gh/malfet/249/orig -> origin/gh/malfet/249/orig 2025-04-25T04:11:39.8939398Z * [new branch] gh/malfet/250/base -> origin/gh/malfet/250/base 2025-04-25T04:11:39.8939947Z * [new branch] gh/malfet/250/head -> origin/gh/malfet/250/head 2025-04-25T04:11:39.8940443Z * [new branch] gh/malfet/250/orig -> origin/gh/malfet/250/orig 2025-04-25T04:11:39.8940910Z * [new branch] gh/malfet/251/base -> origin/gh/malfet/251/base 2025-04-25T04:11:39.8941389Z * [new branch] gh/malfet/251/head -> origin/gh/malfet/251/head 2025-04-25T04:11:39.8941861Z * [new branch] gh/malfet/251/orig -> origin/gh/malfet/251/orig 2025-04-25T04:11:39.8942329Z * [new branch] gh/malfet/252/base -> origin/gh/malfet/252/base 2025-04-25T04:11:39.8942801Z * [new branch] gh/malfet/252/head -> origin/gh/malfet/252/head 2025-04-25T04:11:39.8943279Z * [new branch] gh/malfet/252/orig -> origin/gh/malfet/252/orig 2025-04-25T04:11:39.8943757Z * [new branch] gh/malfet/253/base -> origin/gh/malfet/253/base 2025-04-25T04:11:39.8944368Z * [new branch] gh/malfet/253/head -> origin/gh/malfet/253/head 2025-04-25T04:11:39.8944844Z * [new branch] gh/malfet/253/orig -> origin/gh/malfet/253/orig 2025-04-25T04:11:39.8945323Z * [new branch] gh/malfet/254/base -> origin/gh/malfet/254/base 2025-04-25T04:11:39.8945795Z * [new branch] gh/malfet/254/head -> origin/gh/malfet/254/head 2025-04-25T04:11:39.8946282Z * [new branch] gh/malfet/254/orig -> origin/gh/malfet/254/orig 2025-04-25T04:11:39.8946752Z * [new branch] gh/malfet/255/base -> origin/gh/malfet/255/base 2025-04-25T04:11:39.8947224Z * [new branch] gh/malfet/255/head -> origin/gh/malfet/255/head 2025-04-25T04:11:39.8947696Z * [new branch] gh/malfet/255/orig -> origin/gh/malfet/255/orig 2025-04-25T04:11:39.8948165Z * [new branch] gh/malfet/256/base -> origin/gh/malfet/256/base 2025-04-25T04:11:39.8948649Z * [new branch] gh/malfet/256/head -> origin/gh/malfet/256/head 2025-04-25T04:11:39.8949124Z * [new branch] gh/malfet/256/orig -> origin/gh/malfet/256/orig 2025-04-25T04:11:39.8949601Z * [new branch] gh/malfet/257/base -> origin/gh/malfet/257/base 2025-04-25T04:11:39.8950096Z * [new branch] gh/malfet/257/head -> origin/gh/malfet/257/head 2025-04-25T04:11:39.8950563Z * [new branch] gh/malfet/257/orig -> origin/gh/malfet/257/orig 2025-04-25T04:11:39.8951043Z * [new branch] gh/malfet/258/base -> origin/gh/malfet/258/base 2025-04-25T04:11:39.8951515Z * [new branch] gh/malfet/258/head -> origin/gh/malfet/258/head 2025-04-25T04:11:39.8951998Z * [new branch] gh/malfet/258/orig -> origin/gh/malfet/258/orig 2025-04-25T04:11:39.8952480Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-04-25T04:11:39.8953003Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-04-25T04:11:39.8953524Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-04-25T04:11:39.8954037Z * [new branch] gh/malfet/260/base -> origin/gh/malfet/260/base 2025-04-25T04:11:39.8954513Z * [new branch] gh/malfet/260/head -> origin/gh/malfet/260/head 2025-04-25T04:11:39.8954995Z * [new branch] gh/malfet/260/orig -> origin/gh/malfet/260/orig 2025-04-25T04:11:39.8955468Z * [new branch] gh/malfet/261/base -> origin/gh/malfet/261/base 2025-04-25T04:11:39.8956045Z * [new branch] gh/malfet/261/head -> origin/gh/malfet/261/head 2025-04-25T04:11:39.8956514Z * [new branch] gh/malfet/261/orig -> origin/gh/malfet/261/orig 2025-04-25T04:11:39.8957000Z * [new branch] gh/malfet/262/base -> origin/gh/malfet/262/base 2025-04-25T04:11:39.8957481Z * [new branch] gh/malfet/262/head -> origin/gh/malfet/262/head 2025-04-25T04:11:39.8957963Z * [new branch] gh/malfet/262/orig -> origin/gh/malfet/262/orig 2025-04-25T04:11:39.8958448Z * [new branch] gh/malfet/263/base -> origin/gh/malfet/263/base 2025-04-25T04:11:39.8958913Z * [new branch] gh/malfet/263/head -> origin/gh/malfet/263/head 2025-04-25T04:11:39.8959389Z * [new branch] gh/malfet/263/orig -> origin/gh/malfet/263/orig 2025-04-25T04:11:39.8959855Z * [new branch] gh/malfet/264/base -> origin/gh/malfet/264/base 2025-04-25T04:11:39.8960340Z * [new branch] gh/malfet/264/head -> origin/gh/malfet/264/head 2025-04-25T04:11:39.8960813Z * [new branch] gh/malfet/264/orig -> origin/gh/malfet/264/orig 2025-04-25T04:11:39.8961361Z * [new branch] gh/malfet/265/base -> origin/gh/malfet/265/base 2025-04-25T04:11:39.8961850Z * [new branch] gh/malfet/265/head -> origin/gh/malfet/265/head 2025-04-25T04:11:39.9384668Z * [new branch] gh/malfet/265/orig -> origin/gh/malfet/265/orig 2025-04-25T04:11:39.9385217Z * [new branch] gh/malfet/266/base -> origin/gh/malfet/266/base 2025-04-25T04:11:39.9385705Z * [new branch] gh/malfet/266/head -> origin/gh/malfet/266/head 2025-04-25T04:11:39.9386183Z * [new branch] gh/malfet/266/orig -> origin/gh/malfet/266/orig 2025-04-25T04:11:39.9386672Z * [new branch] gh/malfet/267/base -> origin/gh/malfet/267/base 2025-04-25T04:11:39.9387163Z * [new branch] gh/malfet/267/head -> origin/gh/malfet/267/head 2025-04-25T04:11:39.9387637Z * [new branch] gh/malfet/267/orig -> origin/gh/malfet/267/orig 2025-04-25T04:11:39.9388121Z * [new branch] gh/malfet/268/base -> origin/gh/malfet/268/base 2025-04-25T04:11:39.9388594Z * [new branch] gh/malfet/268/head -> origin/gh/malfet/268/head 2025-04-25T04:11:39.9389091Z * [new branch] gh/malfet/268/orig -> origin/gh/malfet/268/orig 2025-04-25T04:11:39.9389556Z * [new branch] gh/malfet/269/base -> origin/gh/malfet/269/base 2025-04-25T04:11:39.9390032Z * [new branch] gh/malfet/269/head -> origin/gh/malfet/269/head 2025-04-25T04:11:39.9390495Z * [new branch] gh/malfet/269/orig -> origin/gh/malfet/269/orig 2025-04-25T04:11:39.9390973Z * [new branch] gh/malfet/270/base -> origin/gh/malfet/270/base 2025-04-25T04:11:39.9391446Z * [new branch] gh/malfet/270/head -> origin/gh/malfet/270/head 2025-04-25T04:11:39.9391907Z * [new branch] gh/malfet/270/orig -> origin/gh/malfet/270/orig 2025-04-25T04:11:39.9392387Z * [new branch] gh/malfet/271/base -> origin/gh/malfet/271/base 2025-04-25T04:11:39.9392848Z * [new branch] gh/malfet/271/head -> origin/gh/malfet/271/head 2025-04-25T04:11:39.9393327Z * [new branch] gh/malfet/271/orig -> origin/gh/malfet/271/orig 2025-04-25T04:11:39.9393853Z * [new branch] gh/malfet/272/base -> origin/gh/malfet/272/base 2025-04-25T04:11:39.9394397Z * [new branch] gh/malfet/272/head -> origin/gh/malfet/272/head 2025-04-25T04:11:39.9394884Z * [new branch] gh/malfet/272/orig -> origin/gh/malfet/272/orig 2025-04-25T04:11:39.9395490Z * [new branch] gh/malfet/273/base -> origin/gh/malfet/273/base 2025-04-25T04:11:39.9395972Z * [new branch] gh/malfet/273/head -> origin/gh/malfet/273/head 2025-04-25T04:11:39.9396443Z * [new branch] gh/malfet/273/orig -> origin/gh/malfet/273/orig 2025-04-25T04:11:39.9396920Z * [new branch] gh/malfet/274/base -> origin/gh/malfet/274/base 2025-04-25T04:11:39.9397398Z * [new branch] gh/malfet/274/head -> origin/gh/malfet/274/head 2025-04-25T04:11:39.9397869Z * [new branch] gh/malfet/274/orig -> origin/gh/malfet/274/orig 2025-04-25T04:11:39.9398337Z * [new branch] gh/malfet/275/base -> origin/gh/malfet/275/base 2025-04-25T04:11:39.9398804Z * [new branch] gh/malfet/275/head -> origin/gh/malfet/275/head 2025-04-25T04:11:39.9399275Z * [new branch] gh/malfet/275/orig -> origin/gh/malfet/275/orig 2025-04-25T04:11:39.9399748Z * [new branch] gh/malfet/276/base -> origin/gh/malfet/276/base 2025-04-25T04:11:39.9400215Z * [new branch] gh/malfet/276/head -> origin/gh/malfet/276/head 2025-04-25T04:11:39.9400773Z * [new branch] gh/malfet/276/orig -> origin/gh/malfet/276/orig 2025-04-25T04:11:39.9401242Z * [new branch] gh/malfet/277/base -> origin/gh/malfet/277/base 2025-04-25T04:11:39.9401719Z * [new branch] gh/malfet/277/head -> origin/gh/malfet/277/head 2025-04-25T04:11:39.9402193Z * [new branch] gh/malfet/277/orig -> origin/gh/malfet/277/orig 2025-04-25T04:11:39.9402658Z * [new branch] gh/malfet/278/base -> origin/gh/malfet/278/base 2025-04-25T04:11:39.9403136Z * [new branch] gh/malfet/278/head -> origin/gh/malfet/278/head 2025-04-25T04:11:39.9403605Z * [new branch] gh/malfet/278/orig -> origin/gh/malfet/278/orig 2025-04-25T04:11:39.9404088Z * [new branch] gh/malfet/279/base -> origin/gh/malfet/279/base 2025-04-25T04:11:39.9404551Z * [new branch] gh/malfet/279/head -> origin/gh/malfet/279/head 2025-04-25T04:11:39.9405033Z * [new branch] gh/malfet/279/orig -> origin/gh/malfet/279/orig 2025-04-25T04:11:39.9405505Z * [new branch] gh/malfet/280/base -> origin/gh/malfet/280/base 2025-04-25T04:11:39.9405980Z * [new branch] gh/malfet/280/head -> origin/gh/malfet/280/head 2025-04-25T04:11:39.9406511Z * [new branch] gh/malfet/280/orig -> origin/gh/malfet/280/orig 2025-04-25T04:11:39.9406994Z * [new branch] gh/malfet/281/base -> origin/gh/malfet/281/base 2025-04-25T04:11:39.9407475Z * [new branch] gh/malfet/281/head -> origin/gh/malfet/281/head 2025-04-25T04:11:39.9818107Z * [new branch] gh/malfet/281/orig -> origin/gh/malfet/281/orig 2025-04-25T04:11:39.9818640Z * [new branch] gh/malfet/282/base -> origin/gh/malfet/282/base 2025-04-25T04:11:39.9819135Z * [new branch] gh/malfet/282/head -> origin/gh/malfet/282/head 2025-04-25T04:11:39.9819615Z * [new branch] gh/malfet/282/orig -> origin/gh/malfet/282/orig 2025-04-25T04:11:39.9820086Z * [new branch] gh/malfet/283/base -> origin/gh/malfet/283/base 2025-04-25T04:11:39.9820560Z * [new branch] gh/malfet/283/head -> origin/gh/malfet/283/head 2025-04-25T04:11:39.9821029Z * [new branch] gh/malfet/283/orig -> origin/gh/malfet/283/orig 2025-04-25T04:11:39.9821509Z * [new branch] gh/malfet/284/base -> origin/gh/malfet/284/base 2025-04-25T04:11:39.9821991Z * [new branch] gh/malfet/284/head -> origin/gh/malfet/284/head 2025-04-25T04:11:39.9822457Z * [new branch] gh/malfet/284/orig -> origin/gh/malfet/284/orig 2025-04-25T04:11:39.9823748Z * [new branch] gh/malfet/285/base -> origin/gh/malfet/285/base 2025-04-25T04:11:39.9824222Z * [new branch] gh/malfet/285/head -> origin/gh/malfet/285/head 2025-04-25T04:11:39.9824708Z * [new branch] gh/malfet/285/orig -> origin/gh/malfet/285/orig 2025-04-25T04:11:39.9825176Z * [new branch] gh/malfet/286/base -> origin/gh/malfet/286/base 2025-04-25T04:11:39.9825658Z * [new branch] gh/malfet/286/head -> origin/gh/malfet/286/head 2025-04-25T04:11:39.9826128Z * [new branch] gh/malfet/286/orig -> origin/gh/malfet/286/orig 2025-04-25T04:11:39.9826596Z * [new branch] gh/malfet/287/base -> origin/gh/malfet/287/base 2025-04-25T04:11:39.9827082Z * [new branch] gh/malfet/287/head -> origin/gh/malfet/287/head 2025-04-25T04:11:39.9827544Z * [new branch] gh/malfet/287/orig -> origin/gh/malfet/287/orig 2025-04-25T04:11:39.9828022Z * [new branch] gh/malfet/288/base -> origin/gh/malfet/288/base 2025-04-25T04:11:39.9828534Z * [new branch] gh/malfet/288/head -> origin/gh/malfet/288/head 2025-04-25T04:11:39.9829447Z * [new branch] gh/malfet/288/orig -> origin/gh/malfet/288/orig 2025-04-25T04:11:39.9829927Z * [new branch] gh/malfet/289/base -> origin/gh/malfet/289/base 2025-04-25T04:11:39.9830394Z * [new branch] gh/malfet/289/head -> origin/gh/malfet/289/head 2025-04-25T04:11:39.9830876Z * [new branch] gh/malfet/289/orig -> origin/gh/malfet/289/orig 2025-04-25T04:11:39.9831357Z * [new branch] gh/malfet/290/base -> origin/gh/malfet/290/base 2025-04-25T04:11:39.9831828Z * [new branch] gh/malfet/290/head -> origin/gh/malfet/290/head 2025-04-25T04:11:39.9832312Z * [new branch] gh/malfet/290/orig -> origin/gh/malfet/290/orig 2025-04-25T04:11:39.9832789Z * [new branch] gh/malfet/291/base -> origin/gh/malfet/291/base 2025-04-25T04:11:39.9833268Z * [new branch] gh/malfet/291/head -> origin/gh/malfet/291/head 2025-04-25T04:11:39.9833739Z * [new branch] gh/malfet/291/orig -> origin/gh/malfet/291/orig 2025-04-25T04:11:39.9834259Z * [new branch] gh/malfet/292/base -> origin/gh/malfet/292/base 2025-04-25T04:11:39.9834778Z * [new branch] gh/malfet/292/head -> origin/gh/malfet/292/head 2025-04-25T04:11:39.9835241Z * [new branch] gh/malfet/292/orig -> origin/gh/malfet/292/orig 2025-04-25T04:11:39.9835721Z * [new branch] gh/malfet/293/base -> origin/gh/malfet/293/base 2025-04-25T04:11:39.9836186Z * [new branch] gh/malfet/293/head -> origin/gh/malfet/293/head 2025-04-25T04:11:39.9836675Z * [new branch] gh/malfet/293/orig -> origin/gh/malfet/293/orig 2025-04-25T04:11:39.9837146Z * [new branch] gh/malfet/294/base -> origin/gh/malfet/294/base 2025-04-25T04:11:39.9837623Z * [new branch] gh/malfet/294/head -> origin/gh/malfet/294/head 2025-04-25T04:11:39.9838098Z * [new branch] gh/malfet/294/orig -> origin/gh/malfet/294/orig 2025-04-25T04:11:39.9838567Z * [new branch] gh/malfet/295/base -> origin/gh/malfet/295/base 2025-04-25T04:11:39.9839044Z * [new branch] gh/malfet/295/head -> origin/gh/malfet/295/head 2025-04-25T04:11:39.9839528Z * [new branch] gh/malfet/295/orig -> origin/gh/malfet/295/orig 2025-04-25T04:11:39.9840028Z * [new branch] gh/malfet/296/base -> origin/gh/malfet/296/base 2025-04-25T04:11:39.9840548Z * [new branch] gh/malfet/296/head -> origin/gh/malfet/296/head 2025-04-25T04:11:39.9841136Z * [new branch] gh/malfet/296/orig -> origin/gh/malfet/296/orig 2025-04-25T04:11:39.9841616Z * [new branch] gh/malfet/297/base -> origin/gh/malfet/297/base 2025-04-25T04:11:39.9842102Z * [new branch] gh/malfet/297/head -> origin/gh/malfet/297/head 2025-04-25T04:11:40.0252925Z * [new branch] gh/malfet/297/orig -> origin/gh/malfet/297/orig 2025-04-25T04:11:40.0253456Z * [new branch] gh/malfet/298/base -> origin/gh/malfet/298/base 2025-04-25T04:11:40.0253938Z * [new branch] gh/malfet/298/head -> origin/gh/malfet/298/head 2025-04-25T04:11:40.0254420Z * [new branch] gh/malfet/298/orig -> origin/gh/malfet/298/orig 2025-04-25T04:11:40.0254903Z * [new branch] gh/malfet/299/base -> origin/gh/malfet/299/base 2025-04-25T04:11:40.0255375Z * [new branch] gh/malfet/299/head -> origin/gh/malfet/299/head 2025-04-25T04:11:40.0255897Z * [new branch] gh/malfet/299/orig -> origin/gh/malfet/299/orig 2025-04-25T04:11:40.0256429Z * [new branch] gh/malfet/300/base -> origin/gh/malfet/300/base 2025-04-25T04:11:40.0257059Z * [new branch] gh/malfet/300/head -> origin/gh/malfet/300/head 2025-04-25T04:11:40.0257544Z * [new branch] gh/malfet/300/orig -> origin/gh/malfet/300/orig 2025-04-25T04:11:40.0258016Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-04-25T04:11:40.0258496Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-04-25T04:11:40.0258957Z * [new branch] gh/malfet/96/base -> origin/gh/malfet/96/base 2025-04-25T04:11:40.0259434Z * [new branch] gh/malfet/96/head -> origin/gh/malfet/96/head 2025-04-25T04:11:40.0259901Z * [new branch] gh/malfet/96/orig -> origin/gh/malfet/96/orig 2025-04-25T04:11:40.0260368Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-04-25T04:11:40.0260860Z * [new branch] gh/masnesral/184/base -> origin/gh/masnesral/184/base 2025-04-25T04:11:40.0261373Z * [new branch] gh/masnesral/184/head -> origin/gh/masnesral/184/head 2025-04-25T04:11:40.0261924Z * [new branch] gh/masnesral/184/orig -> origin/gh/masnesral/184/orig 2025-04-25T04:11:40.0262466Z * [new branch] gh/masnesral/185/base -> origin/gh/masnesral/185/base 2025-04-25T04:11:40.0262965Z * [new branch] gh/masnesral/185/head -> origin/gh/masnesral/185/head 2025-04-25T04:11:40.0263477Z * [new branch] gh/masnesral/185/orig -> origin/gh/masnesral/185/orig 2025-04-25T04:11:40.0263975Z * [new branch] gh/masnesral/186/base -> origin/gh/masnesral/186/base 2025-04-25T04:11:40.0264484Z * [new branch] gh/masnesral/186/head -> origin/gh/masnesral/186/head 2025-04-25T04:11:40.0264984Z * [new branch] gh/masnesral/186/orig -> origin/gh/masnesral/186/orig 2025-04-25T04:11:40.0265485Z * [new branch] gh/masnesral/187/base -> origin/gh/masnesral/187/base 2025-04-25T04:11:40.0265981Z * [new branch] gh/masnesral/187/head -> origin/gh/masnesral/187/head 2025-04-25T04:11:40.0266471Z * [new branch] gh/masnesral/187/orig -> origin/gh/masnesral/187/orig 2025-04-25T04:11:40.0266978Z * [new branch] gh/masnesral/188/base -> origin/gh/masnesral/188/base 2025-04-25T04:11:40.0267486Z * [new branch] gh/masnesral/188/head -> origin/gh/masnesral/188/head 2025-04-25T04:11:40.0268037Z * [new branch] gh/masnesral/188/orig -> origin/gh/masnesral/188/orig 2025-04-25T04:11:40.0268586Z * [new branch] gh/masnesral/189/base -> origin/gh/masnesral/189/base 2025-04-25T04:11:40.0269187Z * [new branch] gh/masnesral/189/head -> origin/gh/masnesral/189/head 2025-04-25T04:11:40.0269688Z * [new branch] gh/masnesral/189/orig -> origin/gh/masnesral/189/orig 2025-04-25T04:11:40.0270191Z * [new branch] gh/masnesral/190/base -> origin/gh/masnesral/190/base 2025-04-25T04:11:40.0270770Z * [new branch] gh/masnesral/190/head -> origin/gh/masnesral/190/head 2025-04-25T04:11:40.0271282Z * [new branch] gh/masnesral/190/orig -> origin/gh/masnesral/190/orig 2025-04-25T04:11:40.0271777Z * [new branch] gh/masnesral/191/base -> origin/gh/masnesral/191/base 2025-04-25T04:11:40.0272290Z * [new branch] gh/masnesral/191/head -> origin/gh/masnesral/191/head 2025-04-25T04:11:40.0272790Z * [new branch] gh/masnesral/191/orig -> origin/gh/masnesral/191/orig 2025-04-25T04:11:40.0273294Z * [new branch] gh/masnesral/192/base -> origin/gh/masnesral/192/base 2025-04-25T04:11:40.0273850Z * [new branch] gh/masnesral/192/head -> origin/gh/masnesral/192/head 2025-04-25T04:11:40.0274385Z * [new branch] gh/masnesral/192/orig -> origin/gh/masnesral/192/orig 2025-04-25T04:11:40.0274991Z * [new branch] gh/masnesral/193/base -> origin/gh/masnesral/193/base 2025-04-25T04:11:40.0275498Z * [new branch] gh/masnesral/193/head -> origin/gh/masnesral/193/head 2025-04-25T04:11:40.0276003Z * [new branch] gh/masnesral/193/orig -> origin/gh/masnesral/193/orig 2025-04-25T04:11:40.1325860Z * [new branch] gh/masnesral/194/base -> origin/gh/masnesral/194/base 2025-04-25T04:11:40.1326492Z * [new branch] gh/masnesral/194/head -> origin/gh/masnesral/194/head 2025-04-25T04:11:40.1327109Z * [new branch] gh/masnesral/194/orig -> origin/gh/masnesral/194/orig 2025-04-25T04:11:40.1327640Z * [new branch] gh/masnesral/195/base -> origin/gh/masnesral/195/base 2025-04-25T04:11:40.1328146Z * [new branch] gh/masnesral/195/head -> origin/gh/masnesral/195/head 2025-04-25T04:11:40.1328700Z * [new branch] gh/masnesral/195/orig -> origin/gh/masnesral/195/orig 2025-04-25T04:11:40.1329198Z * [new branch] gh/masnesral/196/base -> origin/gh/masnesral/196/base 2025-04-25T04:11:40.1329698Z * [new branch] gh/masnesral/196/head -> origin/gh/masnesral/196/head 2025-04-25T04:11:40.1330192Z * [new branch] gh/masnesral/196/orig -> origin/gh/masnesral/196/orig 2025-04-25T04:11:40.1330689Z * [new branch] gh/masnesral/197/base -> origin/gh/masnesral/197/base 2025-04-25T04:11:40.1331190Z * [new branch] gh/masnesral/197/head -> origin/gh/masnesral/197/head 2025-04-25T04:11:40.1331689Z * [new branch] gh/masnesral/197/orig -> origin/gh/masnesral/197/orig 2025-04-25T04:11:40.1332193Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-04-25T04:11:40.1332711Z * [new branch] gh/mcr229/1/base -> origin/gh/mcr229/1/base 2025-04-25T04:11:40.1333214Z * [new branch] gh/mcr229/1/head -> origin/gh/mcr229/1/head 2025-04-25T04:11:40.1333666Z * [new branch] gh/mcr229/1/orig -> origin/gh/mcr229/1/orig 2025-04-25T04:11:40.1334119Z * [new branch] gh/mcr229/2/base -> origin/gh/mcr229/2/base 2025-04-25T04:11:40.1334571Z * [new branch] gh/mcr229/2/head -> origin/gh/mcr229/2/head 2025-04-25T04:11:40.1335009Z * [new branch] gh/mcr229/2/orig -> origin/gh/mcr229/2/orig 2025-04-25T04:11:40.1335455Z * [new branch] gh/mcr229/3/base -> origin/gh/mcr229/3/base 2025-04-25T04:11:40.1335896Z * [new branch] gh/mcr229/3/head -> origin/gh/mcr229/3/head 2025-04-25T04:11:40.1336523Z * [new branch] gh/mcr229/3/orig -> origin/gh/mcr229/3/orig 2025-04-25T04:11:40.1336982Z * [new branch] gh/mcr229/4/base -> origin/gh/mcr229/4/base 2025-04-25T04:11:40.1337432Z * [new branch] gh/mcr229/4/head -> origin/gh/mcr229/4/head 2025-04-25T04:11:40.1337884Z * [new branch] gh/mcr229/4/orig -> origin/gh/mcr229/4/orig 2025-04-25T04:11:40.1338358Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-04-25T04:11:40.1338908Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-04-25T04:11:40.1339452Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-04-25T04:11:40.1339937Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-04-25T04:11:40.1340434Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-04-25T04:11:40.1340932Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-04-25T04:11:40.1341436Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-04-25T04:11:40.1342032Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-04-25T04:11:40.1342516Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-04-25T04:11:40.1343019Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-04-25T04:11:40.1343513Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-04-25T04:11:40.1344018Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-04-25T04:11:40.1344550Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-04-25T04:11:40.1345078Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-04-25T04:11:40.1345639Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-04-25T04:11:40.1346242Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-04-25T04:11:40.1346845Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-04-25T04:11:40.1347434Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-04-25T04:11:40.1348034Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-04-25T04:11:40.1348635Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-04-25T04:11:40.1349221Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-04-25T04:11:40.1349816Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-04-25T04:11:40.1797677Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-04-25T04:11:40.1798338Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-04-25T04:11:40.1798945Z * [new branch] gh/mikaylagawarecki/304/base -> origin/gh/mikaylagawarecki/304/base 2025-04-25T04:11:40.1799615Z * [new branch] gh/mikaylagawarecki/304/head -> origin/gh/mikaylagawarecki/304/head 2025-04-25T04:11:40.1800258Z * [new branch] gh/mikaylagawarecki/304/orig -> origin/gh/mikaylagawarecki/304/orig 2025-04-25T04:11:40.1800854Z * [new branch] gh/mikaylagawarecki/307/base -> origin/gh/mikaylagawarecki/307/base 2025-04-25T04:11:40.1801441Z * [new branch] gh/mikaylagawarecki/307/head -> origin/gh/mikaylagawarecki/307/head 2025-04-25T04:11:40.1802039Z * [new branch] gh/mikaylagawarecki/307/orig -> origin/gh/mikaylagawarecki/307/orig 2025-04-25T04:11:40.1802773Z * [new branch] gh/mikaylagawarecki/310/base -> origin/gh/mikaylagawarecki/310/base 2025-04-25T04:11:40.1803383Z * [new branch] gh/mikaylagawarecki/310/head -> origin/gh/mikaylagawarecki/310/head 2025-04-25T04:11:40.1803976Z * [new branch] gh/mikaylagawarecki/310/orig -> origin/gh/mikaylagawarecki/310/orig 2025-04-25T04:11:40.1804539Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-04-25T04:11:40.1805019Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-04-25T04:11:40.1805525Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-04-25T04:11:40.1806047Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-04-25T04:11:40.1806617Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-04-25T04:11:40.1807086Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-04-25T04:11:40.1807561Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-04-25T04:11:40.1808119Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-04-25T04:11:40.1808594Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-04-25T04:11:40.1809057Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-04-25T04:11:40.1809521Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-04-25T04:11:40.1809988Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-04-25T04:11:40.1810454Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-04-25T04:11:40.1810925Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-04-25T04:11:40.1811388Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-04-25T04:11:40.1811906Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-04-25T04:11:40.1812417Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-04-25T04:11:40.1812912Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-04-25T04:11:40.1813383Z * [new branch] gh/mlazos/18/base -> origin/gh/mlazos/18/base 2025-04-25T04:11:40.1813846Z * [new branch] gh/mlazos/18/head -> origin/gh/mlazos/18/head 2025-04-25T04:11:40.1814312Z * [new branch] gh/mlazos/18/orig -> origin/gh/mlazos/18/orig 2025-04-25T04:11:40.1814788Z * [new branch] gh/mlazos/19/base -> origin/gh/mlazos/19/base 2025-04-25T04:11:40.1815245Z * [new branch] gh/mlazos/19/head -> origin/gh/mlazos/19/head 2025-04-25T04:11:40.1815720Z * [new branch] gh/mlazos/19/orig -> origin/gh/mlazos/19/orig 2025-04-25T04:11:40.1816183Z * [new branch] gh/mlazos/20/base -> origin/gh/mlazos/20/base 2025-04-25T04:11:40.1816653Z * [new branch] gh/mlazos/20/head -> origin/gh/mlazos/20/head 2025-04-25T04:11:40.1817132Z * [new branch] gh/mlazos/20/orig -> origin/gh/mlazos/20/orig 2025-04-25T04:11:40.1817589Z * [new branch] gh/mlazos/21/base -> origin/gh/mlazos/21/base 2025-04-25T04:11:40.1818095Z * [new branch] gh/mlazos/21/head -> origin/gh/mlazos/21/head 2025-04-25T04:11:40.1818592Z * [new branch] gh/mlazos/21/orig -> origin/gh/mlazos/21/orig 2025-04-25T04:11:40.1819099Z * [new branch] gh/mlazos/22/base -> origin/gh/mlazos/22/base 2025-04-25T04:11:40.1819556Z * [new branch] gh/mlazos/22/head -> origin/gh/mlazos/22/head 2025-04-25T04:11:40.1820125Z * [new branch] gh/mlazos/22/orig -> origin/gh/mlazos/22/orig 2025-04-25T04:11:40.1820603Z * [new branch] gh/mlazos/23/base -> origin/gh/mlazos/23/base 2025-04-25T04:11:40.1821069Z * [new branch] gh/mlazos/23/head -> origin/gh/mlazos/23/head 2025-04-25T04:11:40.2228157Z * [new branch] gh/mlazos/23/orig -> origin/gh/mlazos/23/orig 2025-04-25T04:11:40.2228732Z * [new branch] gh/mlazos/24/base -> origin/gh/mlazos/24/base 2025-04-25T04:11:40.2229204Z * [new branch] gh/mlazos/24/head -> origin/gh/mlazos/24/head 2025-04-25T04:11:40.2229678Z * [new branch] gh/mlazos/24/orig -> origin/gh/mlazos/24/orig 2025-04-25T04:11:40.2230143Z * [new branch] gh/mlazos/25/base -> origin/gh/mlazos/25/base 2025-04-25T04:11:40.2230613Z * [new branch] gh/mlazos/25/head -> origin/gh/mlazos/25/head 2025-04-25T04:11:40.2231094Z * [new branch] gh/mlazos/25/orig -> origin/gh/mlazos/25/orig 2025-04-25T04:11:40.2231596Z * [new branch] gh/mlazos/26/base -> origin/gh/mlazos/26/base 2025-04-25T04:11:40.2232259Z * [new branch] gh/mlazos/26/head -> origin/gh/mlazos/26/head 2025-04-25T04:11:40.2232721Z * [new branch] gh/mlazos/26/orig -> origin/gh/mlazos/26/orig 2025-04-25T04:11:40.2233205Z * [new branch] gh/mlazos/27/base -> origin/gh/mlazos/27/base 2025-04-25T04:11:40.2233663Z * [new branch] gh/mlazos/27/head -> origin/gh/mlazos/27/head 2025-04-25T04:11:40.2234132Z * [new branch] gh/mlazos/27/orig -> origin/gh/mlazos/27/orig 2025-04-25T04:11:40.2234599Z * [new branch] gh/mlazos/28/base -> origin/gh/mlazos/28/base 2025-04-25T04:11:40.2235054Z * [new branch] gh/mlazos/28/head -> origin/gh/mlazos/28/head 2025-04-25T04:11:40.2235528Z * [new branch] gh/mlazos/28/orig -> origin/gh/mlazos/28/orig 2025-04-25T04:11:40.2235989Z * [new branch] gh/mlazos/29/base -> origin/gh/mlazos/29/base 2025-04-25T04:11:40.2236471Z * [new branch] gh/mlazos/29/head -> origin/gh/mlazos/29/head 2025-04-25T04:11:40.2236941Z * [new branch] gh/mlazos/29/orig -> origin/gh/mlazos/29/orig 2025-04-25T04:11:40.2237479Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-04-25T04:11:40.2237961Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-04-25T04:11:40.2238409Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-04-25T04:11:40.2238870Z * [new branch] gh/mlazos/30/base -> origin/gh/mlazos/30/base 2025-04-25T04:11:40.2239344Z * [new branch] gh/mlazos/30/head -> origin/gh/mlazos/30/head 2025-04-25T04:11:40.2239804Z * [new branch] gh/mlazos/30/orig -> origin/gh/mlazos/30/orig 2025-04-25T04:11:40.2240264Z * [new branch] gh/mlazos/31/base -> origin/gh/mlazos/31/base 2025-04-25T04:11:40.2240733Z * [new branch] gh/mlazos/31/head -> origin/gh/mlazos/31/head 2025-04-25T04:11:40.2241198Z * [new branch] gh/mlazos/31/orig -> origin/gh/mlazos/31/orig 2025-04-25T04:11:40.2241664Z * [new branch] gh/mlazos/32/base -> origin/gh/mlazos/32/base 2025-04-25T04:11:40.2242130Z * [new branch] gh/mlazos/32/head -> origin/gh/mlazos/32/head 2025-04-25T04:11:40.2242597Z * [new branch] gh/mlazos/32/orig -> origin/gh/mlazos/32/orig 2025-04-25T04:11:40.2243144Z * [new branch] gh/mlazos/33/base -> origin/gh/mlazos/33/base 2025-04-25T04:11:40.2243731Z * [new branch] gh/mlazos/33/head -> origin/gh/mlazos/33/head 2025-04-25T04:11:40.2244189Z * [new branch] gh/mlazos/33/orig -> origin/gh/mlazos/33/orig 2025-04-25T04:11:40.2244655Z * [new branch] gh/mlazos/34/base -> origin/gh/mlazos/34/base 2025-04-25T04:11:40.2245141Z * [new branch] gh/mlazos/34/head -> origin/gh/mlazos/34/head 2025-04-25T04:11:40.2245603Z * [new branch] gh/mlazos/34/orig -> origin/gh/mlazos/34/orig 2025-04-25T04:11:40.2246076Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-04-25T04:11:40.2246593Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-04-25T04:11:40.2247053Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-04-25T04:11:40.2247534Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-04-25T04:11:40.2248011Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-04-25T04:11:40.2248511Z * [new branch] gh/muchulee8/40/base -> origin/gh/muchulee8/40/base 2025-04-25T04:11:40.2249098Z * [new branch] gh/muchulee8/40/head -> origin/gh/muchulee8/40/head 2025-04-25T04:11:40.2249604Z * [new branch] gh/muchulee8/40/orig -> origin/gh/muchulee8/40/orig 2025-04-25T04:11:40.2250098Z * [new branch] gh/muchulee8/41/base -> origin/gh/muchulee8/41/base 2025-04-25T04:11:40.2250602Z * [new branch] gh/muchulee8/41/head -> origin/gh/muchulee8/41/head 2025-04-25T04:11:40.2251098Z * [new branch] gh/muchulee8/41/orig -> origin/gh/muchulee8/41/orig 2025-04-25T04:11:40.2661638Z * [new branch] gh/muchulee8/45/base -> origin/gh/muchulee8/45/base 2025-04-25T04:11:40.2662195Z * [new branch] gh/muchulee8/45/head -> origin/gh/muchulee8/45/head 2025-04-25T04:11:40.2662721Z * [new branch] gh/muchulee8/45/orig -> origin/gh/muchulee8/45/orig 2025-04-25T04:11:40.2663227Z * [new branch] gh/muchulee8/47/base -> origin/gh/muchulee8/47/base 2025-04-25T04:11:40.2663725Z * [new branch] gh/muchulee8/47/head -> origin/gh/muchulee8/47/head 2025-04-25T04:11:40.2664209Z * [new branch] gh/muchulee8/47/orig -> origin/gh/muchulee8/47/orig 2025-04-25T04:11:40.2664705Z * [new branch] gh/muchulee8/48/base -> origin/gh/muchulee8/48/base 2025-04-25T04:11:40.2665197Z * [new branch] gh/muchulee8/48/head -> origin/gh/muchulee8/48/head 2025-04-25T04:11:40.2665708Z * [new branch] gh/muchulee8/48/orig -> origin/gh/muchulee8/48/orig 2025-04-25T04:11:40.2666205Z * [new branch] gh/muchulee8/49/base -> origin/gh/muchulee8/49/base 2025-04-25T04:11:40.2666696Z * [new branch] gh/muchulee8/49/head -> origin/gh/muchulee8/49/head 2025-04-25T04:11:40.2667206Z * [new branch] gh/muchulee8/49/orig -> origin/gh/muchulee8/49/orig 2025-04-25T04:11:40.2667703Z * [new branch] gh/muchulee8/50/base -> origin/gh/muchulee8/50/base 2025-04-25T04:11:40.2668197Z * [new branch] gh/muchulee8/50/head -> origin/gh/muchulee8/50/head 2025-04-25T04:11:40.2668692Z * [new branch] gh/muchulee8/50/orig -> origin/gh/muchulee8/50/orig 2025-04-25T04:11:40.2669182Z * [new branch] gh/muchulee8/51/base -> origin/gh/muchulee8/51/base 2025-04-25T04:11:40.2669673Z * [new branch] gh/muchulee8/51/head -> origin/gh/muchulee8/51/head 2025-04-25T04:11:40.2670156Z * [new branch] gh/muchulee8/51/orig -> origin/gh/muchulee8/51/orig 2025-04-25T04:11:40.2670653Z * [new branch] gh/muchulee8/52/base -> origin/gh/muchulee8/52/base 2025-04-25T04:11:40.2671309Z * [new branch] gh/muchulee8/52/head -> origin/gh/muchulee8/52/head 2025-04-25T04:11:40.2671789Z * [new branch] gh/muchulee8/52/orig -> origin/gh/muchulee8/52/orig 2025-04-25T04:11:40.2672296Z * [new branch] gh/muchulee8/53/base -> origin/gh/muchulee8/53/base 2025-04-25T04:11:40.2672785Z * [new branch] gh/muchulee8/53/head -> origin/gh/muchulee8/53/head 2025-04-25T04:11:40.2673293Z * [new branch] gh/muchulee8/53/orig -> origin/gh/muchulee8/53/orig 2025-04-25T04:11:40.2673802Z * [new branch] gh/muchulee8/54/base -> origin/gh/muchulee8/54/base 2025-04-25T04:11:40.2674292Z * [new branch] gh/muchulee8/54/head -> origin/gh/muchulee8/54/head 2025-04-25T04:11:40.2674789Z * [new branch] gh/muchulee8/54/orig -> origin/gh/muchulee8/54/orig 2025-04-25T04:11:40.2675273Z * [new branch] gh/muchulee8/55/base -> origin/gh/muchulee8/55/base 2025-04-25T04:11:40.2675775Z * [new branch] gh/muchulee8/55/head -> origin/gh/muchulee8/55/head 2025-04-25T04:11:40.2676270Z * [new branch] gh/muchulee8/55/orig -> origin/gh/muchulee8/55/orig 2025-04-25T04:11:40.2676854Z * [new branch] gh/muchulee8/56/base -> origin/gh/muchulee8/56/base 2025-04-25T04:11:40.2677366Z * [new branch] gh/muchulee8/56/head -> origin/gh/muchulee8/56/head 2025-04-25T04:11:40.2677853Z * [new branch] gh/muchulee8/56/orig -> origin/gh/muchulee8/56/orig 2025-04-25T04:11:40.2678370Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-04-25T04:11:40.2678879Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-04-25T04:11:40.2679406Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-04-25T04:11:40.2679929Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-04-25T04:11:40.2680436Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-04-25T04:11:40.2680945Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-04-25T04:11:40.2681453Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-04-25T04:11:40.2681966Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-04-25T04:11:40.2682487Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-04-25T04:11:40.2682982Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-04-25T04:11:40.2683481Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-04-25T04:11:40.2683979Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-04-25T04:11:40.2684483Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-04-25T04:11:40.2684993Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-04-25T04:11:40.3129340Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-04-25T04:11:40.3129895Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-04-25T04:11:40.3130416Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-04-25T04:11:40.3130918Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-04-25T04:11:40.3131425Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-04-25T04:11:40.3131926Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-04-25T04:11:40.3132431Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-04-25T04:11:40.3133067Z * [new branch] gh/nmacchioni/39/base -> origin/gh/nmacchioni/39/base 2025-04-25T04:11:40.3133588Z * [new branch] gh/nmacchioni/39/head -> origin/gh/nmacchioni/39/head 2025-04-25T04:11:40.3134118Z * [new branch] gh/nmacchioni/39/orig -> origin/gh/nmacchioni/39/orig 2025-04-25T04:11:40.3134630Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-04-25T04:11:40.3135151Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-04-25T04:11:40.3135651Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-04-25T04:11:40.3136149Z * [new branch] gh/oulgen/21/base -> origin/gh/oulgen/21/base 2025-04-25T04:11:40.3136623Z * [new branch] gh/oulgen/21/head -> origin/gh/oulgen/21/head 2025-04-25T04:11:40.3137093Z * [new branch] gh/oulgen/21/orig -> origin/gh/oulgen/21/orig 2025-04-25T04:11:40.3137570Z * [new branch] gh/oulgen/22/base -> origin/gh/oulgen/22/base 2025-04-25T04:11:40.3138038Z * [new branch] gh/oulgen/22/head -> origin/gh/oulgen/22/head 2025-04-25T04:11:40.3138604Z * [new branch] gh/oulgen/22/orig -> origin/gh/oulgen/22/orig 2025-04-25T04:11:40.3139087Z * [new branch] gh/oulgen/23/base -> origin/gh/oulgen/23/base 2025-04-25T04:11:40.3139549Z * [new branch] gh/oulgen/23/head -> origin/gh/oulgen/23/head 2025-04-25T04:11:40.3140032Z * [new branch] gh/oulgen/23/orig -> origin/gh/oulgen/23/orig 2025-04-25T04:11:40.3140495Z * [new branch] gh/oulgen/24/base -> origin/gh/oulgen/24/base 2025-04-25T04:11:40.3140977Z * [new branch] gh/oulgen/24/head -> origin/gh/oulgen/24/head 2025-04-25T04:11:40.3141433Z * [new branch] gh/oulgen/24/orig -> origin/gh/oulgen/24/orig 2025-04-25T04:11:40.3141910Z * [new branch] gh/oulgen/25/base -> origin/gh/oulgen/25/base 2025-04-25T04:11:40.3142378Z * [new branch] gh/oulgen/25/head -> origin/gh/oulgen/25/head 2025-04-25T04:11:40.3142842Z * [new branch] gh/oulgen/25/orig -> origin/gh/oulgen/25/orig 2025-04-25T04:11:40.3143321Z * [new branch] gh/oulgen/26/base -> origin/gh/oulgen/26/base 2025-04-25T04:11:40.3143779Z * [new branch] gh/oulgen/26/head -> origin/gh/oulgen/26/head 2025-04-25T04:11:40.3144242Z * [new branch] gh/oulgen/26/orig -> origin/gh/oulgen/26/orig 2025-04-25T04:11:40.3144711Z * [new branch] gh/oulgen/27/base -> origin/gh/oulgen/27/base 2025-04-25T04:11:40.3145172Z * [new branch] gh/oulgen/27/head -> origin/gh/oulgen/27/head 2025-04-25T04:11:40.3145650Z * [new branch] gh/oulgen/27/orig -> origin/gh/oulgen/27/orig 2025-04-25T04:11:40.3146106Z * [new branch] gh/oulgen/28/base -> origin/gh/oulgen/28/base 2025-04-25T04:11:40.3146579Z * [new branch] gh/oulgen/28/head -> origin/gh/oulgen/28/head 2025-04-25T04:11:40.3147051Z * [new branch] gh/oulgen/28/orig -> origin/gh/oulgen/28/orig 2025-04-25T04:11:40.3147509Z * [new branch] gh/oulgen/29/base -> origin/gh/oulgen/29/base 2025-04-25T04:11:40.3147983Z * [new branch] gh/oulgen/29/head -> origin/gh/oulgen/29/head 2025-04-25T04:11:40.3148443Z * [new branch] gh/oulgen/29/orig -> origin/gh/oulgen/29/orig 2025-04-25T04:11:40.3148924Z * [new branch] gh/oulgen/30/base -> origin/gh/oulgen/30/base 2025-04-25T04:11:40.3149382Z * [new branch] gh/oulgen/30/head -> origin/gh/oulgen/30/head 2025-04-25T04:11:40.3149956Z * [new branch] gh/oulgen/30/orig -> origin/gh/oulgen/30/orig 2025-04-25T04:11:40.3150433Z * [new branch] gh/oulgen/31/base -> origin/gh/oulgen/31/base 2025-04-25T04:11:40.3150903Z * [new branch] gh/oulgen/31/head -> origin/gh/oulgen/31/head 2025-04-25T04:11:40.3151372Z * [new branch] gh/oulgen/31/orig -> origin/gh/oulgen/31/orig 2025-04-25T04:11:40.3151847Z * [new branch] gh/oulgen/32/base -> origin/gh/oulgen/32/base 2025-04-25T04:11:40.3573028Z * [new branch] gh/oulgen/32/head -> origin/gh/oulgen/32/head 2025-04-25T04:11:40.3573551Z * [new branch] gh/oulgen/32/orig -> origin/gh/oulgen/32/orig 2025-04-25T04:11:40.3574043Z * [new branch] gh/oulgen/33/base -> origin/gh/oulgen/33/base 2025-04-25T04:11:40.3574537Z * [new branch] gh/oulgen/33/head -> origin/gh/oulgen/33/head 2025-04-25T04:11:40.3575037Z * [new branch] gh/oulgen/33/orig -> origin/gh/oulgen/33/orig 2025-04-25T04:11:40.3575502Z * [new branch] gh/oulgen/34/base -> origin/gh/oulgen/34/base 2025-04-25T04:11:40.3576122Z * [new branch] gh/oulgen/34/head -> origin/gh/oulgen/34/head 2025-04-25T04:11:40.3576604Z * [new branch] gh/oulgen/34/orig -> origin/gh/oulgen/34/orig 2025-04-25T04:11:40.3577061Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-04-25T04:11:40.3577540Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-04-25T04:11:40.3578000Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-04-25T04:11:40.3578468Z * [new branch] gh/oulgen/36/base -> origin/gh/oulgen/36/base 2025-04-25T04:11:40.3578943Z * [new branch] gh/oulgen/36/head -> origin/gh/oulgen/36/head 2025-04-25T04:11:40.3579406Z * [new branch] gh/oulgen/36/orig -> origin/gh/oulgen/36/orig 2025-04-25T04:11:40.3579881Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-04-25T04:11:40.3580357Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-04-25T04:11:40.3580829Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-04-25T04:11:40.3581292Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-04-25T04:11:40.3581759Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-04-25T04:11:40.3582217Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-04-25T04:11:40.3582665Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-04-25T04:11:40.3583117Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-04-25T04:11:40.3583579Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-04-25T04:11:40.3584082Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-04-25T04:11:40.3584639Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-04-25T04:11:40.3585166Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-04-25T04:11:40.3585695Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-04-25T04:11:40.3586220Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-04-25T04:11:40.3586743Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-04-25T04:11:40.3587247Z * [new branch] gh/qqaatw/1/base -> origin/gh/qqaatw/1/base 2025-04-25T04:11:40.3587725Z * [new branch] gh/qqaatw/1/head -> origin/gh/qqaatw/1/head 2025-04-25T04:11:40.3588309Z * [new branch] gh/qqaatw/26/head -> origin/gh/qqaatw/26/head 2025-04-25T04:11:40.3588776Z * [new branch] gh/qqaatw/27/base -> origin/gh/qqaatw/27/base 2025-04-25T04:11:40.3589258Z * [new branch] gh/qqaatw/27/head -> origin/gh/qqaatw/27/head 2025-04-25T04:11:40.3589727Z * [new branch] gh/qqaatw/28/base -> origin/gh/qqaatw/28/base 2025-04-25T04:11:40.3590198Z * [new branch] gh/qqaatw/28/head -> origin/gh/qqaatw/28/head 2025-04-25T04:11:40.3590668Z * [new branch] gh/qqaatw/28/orig -> origin/gh/qqaatw/28/orig 2025-04-25T04:11:40.3591129Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-04-25T04:11:40.3591596Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-04-25T04:11:40.3592066Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-04-25T04:11:40.3592531Z * [new branch] gh/qqaatw/30/base -> origin/gh/qqaatw/30/base 2025-04-25T04:11:40.3592998Z * [new branch] gh/qqaatw/30/head -> origin/gh/qqaatw/30/head 2025-04-25T04:11:40.3593541Z * [new branch] gh/qqaatw/30/orig -> origin/gh/qqaatw/30/orig 2025-04-25T04:11:40.3594023Z * [new branch] gh/rec/119/base -> origin/gh/rec/119/base 2025-04-25T04:11:40.3594479Z * [new branch] gh/rec/119/head -> origin/gh/rec/119/head 2025-04-25T04:11:40.3594990Z * [new branch] gh/rec/119/orig -> origin/gh/rec/119/orig 2025-04-25T04:11:40.3595485Z * [new branch] gh/rec/120/base -> origin/gh/rec/120/base 2025-04-25T04:11:40.3595929Z * [new branch] gh/rec/120/head -> origin/gh/rec/120/head 2025-04-25T04:11:40.4038226Z * [new branch] gh/rec/120/orig -> origin/gh/rec/120/orig 2025-04-25T04:11:40.4038786Z * [new branch] gh/rec/124/base -> origin/gh/rec/124/base 2025-04-25T04:11:40.4039249Z * [new branch] gh/rec/124/head -> origin/gh/rec/124/head 2025-04-25T04:11:40.4039724Z * [new branch] gh/rec/124/orig -> origin/gh/rec/124/orig 2025-04-25T04:11:40.4040170Z * [new branch] gh/rec/125/base -> origin/gh/rec/125/base 2025-04-25T04:11:40.4040623Z * [new branch] gh/rec/125/head -> origin/gh/rec/125/head 2025-04-25T04:11:40.4041070Z * [new branch] gh/rec/125/orig -> origin/gh/rec/125/orig 2025-04-25T04:11:40.4041511Z * [new branch] gh/rec/128/base -> origin/gh/rec/128/base 2025-04-25T04:11:40.4041967Z * [new branch] gh/rec/128/head -> origin/gh/rec/128/head 2025-04-25T04:11:40.4042406Z * [new branch] gh/rec/128/orig -> origin/gh/rec/128/orig 2025-04-25T04:11:40.4042864Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-04-25T04:11:40.4043319Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-04-25T04:11:40.4043771Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-04-25T04:11:40.4044217Z * [new branch] gh/rec/134/base -> origin/gh/rec/134/base 2025-04-25T04:11:40.4044657Z * [new branch] gh/rec/134/head -> origin/gh/rec/134/head 2025-04-25T04:11:40.4045108Z * [new branch] gh/rec/134/orig -> origin/gh/rec/134/orig 2025-04-25T04:11:40.4045554Z * [new branch] gh/rec/136/base -> origin/gh/rec/136/base 2025-04-25T04:11:40.4046005Z * [new branch] gh/rec/136/head -> origin/gh/rec/136/head 2025-04-25T04:11:40.4046519Z * [new branch] gh/rec/136/orig -> origin/gh/rec/136/orig 2025-04-25T04:11:40.4047143Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-04-25T04:11:40.4047591Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-04-25T04:11:40.4048038Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-04-25T04:11:40.4048497Z * [new branch] gh/rec/138/base -> origin/gh/rec/138/base 2025-04-25T04:11:40.4048959Z * [new branch] gh/rec/138/head -> origin/gh/rec/138/head 2025-04-25T04:11:40.4049402Z * [new branch] gh/rec/138/orig -> origin/gh/rec/138/orig 2025-04-25T04:11:40.4049853Z * [new branch] gh/rec/140/base -> origin/gh/rec/140/base 2025-04-25T04:11:40.4050294Z * [new branch] gh/rec/140/head -> origin/gh/rec/140/head 2025-04-25T04:11:40.4050744Z * [new branch] gh/rec/140/orig -> origin/gh/rec/140/orig 2025-04-25T04:11:40.4051203Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-04-25T04:11:40.4051651Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-04-25T04:11:40.4052200Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-04-25T04:11:40.4052656Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-04-25T04:11:40.4053124Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-04-25T04:11:40.4053565Z * [new branch] gh/rec/143/base -> origin/gh/rec/143/base 2025-04-25T04:11:40.4054022Z * [new branch] gh/rec/143/head -> origin/gh/rec/143/head 2025-04-25T04:11:40.4054492Z * [new branch] gh/rec/143/orig -> origin/gh/rec/143/orig 2025-04-25T04:11:40.4054934Z * [new branch] gh/rec/144/base -> origin/gh/rec/144/base 2025-04-25T04:11:40.4055387Z * [new branch] gh/rec/144/head -> origin/gh/rec/144/head 2025-04-25T04:11:40.4055825Z * [new branch] gh/rec/144/orig -> origin/gh/rec/144/orig 2025-04-25T04:11:40.4056291Z * [new branch] gh/rec/145/base -> origin/gh/rec/145/base 2025-04-25T04:11:40.4056747Z * [new branch] gh/rec/145/head -> origin/gh/rec/145/head 2025-04-25T04:11:40.4057198Z * [new branch] gh/rec/145/orig -> origin/gh/rec/145/orig 2025-04-25T04:11:40.4057646Z * [new branch] gh/rec/27/base -> origin/gh/rec/27/base 2025-04-25T04:11:40.4058087Z * [new branch] gh/rec/27/head -> origin/gh/rec/27/head 2025-04-25T04:11:40.4058533Z * [new branch] gh/rec/27/orig -> origin/gh/rec/27/orig 2025-04-25T04:11:40.4059029Z * [new branch] gh/rohan-varma/742/base -> origin/gh/rohan-varma/742/base 2025-04-25T04:11:40.4059560Z * [new branch] gh/rohan-varma/742/head -> origin/gh/rohan-varma/742/head 2025-04-25T04:11:40.4060084Z * [new branch] gh/rohan-varma/742/orig -> origin/gh/rohan-varma/742/orig 2025-04-25T04:11:40.4060607Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-04-25T04:11:40.4467642Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-04-25T04:11:40.4468203Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-04-25T04:11:40.4468719Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-04-25T04:11:40.4469245Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-04-25T04:11:40.4469748Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-04-25T04:11:40.4470261Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-04-25T04:11:40.4470940Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-04-25T04:11:40.4478701Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-04-25T04:11:40.4479327Z * [new branch] gh/seemethere/25/base -> origin/gh/seemethere/25/base 2025-04-25T04:11:40.4479858Z * [new branch] gh/seemethere/25/head -> origin/gh/seemethere/25/head 2025-04-25T04:11:40.4480373Z * [new branch] gh/seemethere/25/orig -> origin/gh/seemethere/25/orig 2025-04-25T04:11:40.4480888Z * [new branch] gh/seemethere/26/base -> origin/gh/seemethere/26/base 2025-04-25T04:11:40.4481399Z * [new branch] gh/seemethere/26/head -> origin/gh/seemethere/26/head 2025-04-25T04:11:40.4481926Z * [new branch] gh/seemethere/26/orig -> origin/gh/seemethere/26/orig 2025-04-25T04:11:40.4482450Z * [new branch] gh/seemethere/27/base -> origin/gh/seemethere/27/base 2025-04-25T04:11:40.4482970Z * [new branch] gh/seemethere/27/head -> origin/gh/seemethere/27/head 2025-04-25T04:11:40.4483627Z * [new branch] gh/seemethere/27/orig -> origin/gh/seemethere/27/orig 2025-04-25T04:11:40.4484246Z * [new branch] gh/seemethere/28/base -> origin/gh/seemethere/28/base 2025-04-25T04:11:40.4484756Z * [new branch] gh/seemethere/28/head -> origin/gh/seemethere/28/head 2025-04-25T04:11:40.4485270Z * [new branch] gh/seemethere/28/orig -> origin/gh/seemethere/28/orig 2025-04-25T04:11:40.4485773Z * [new branch] gh/seemethere/29/base -> origin/gh/seemethere/29/base 2025-04-25T04:11:40.4486350Z * [new branch] gh/seemethere/29/head -> origin/gh/seemethere/29/head 2025-04-25T04:11:40.4486869Z * [new branch] gh/seemethere/29/orig -> origin/gh/seemethere/29/orig 2025-04-25T04:11:40.4487386Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-04-25T04:11:40.4487913Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-04-25T04:11:40.4488421Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-04-25T04:11:40.4488947Z * [new branch] gh/seemethere/31/base -> origin/gh/seemethere/31/base 2025-04-25T04:11:40.4489459Z * [new branch] gh/seemethere/31/head -> origin/gh/seemethere/31/head 2025-04-25T04:11:40.4489960Z * [new branch] gh/seemethere/31/orig -> origin/gh/seemethere/31/orig 2025-04-25T04:11:40.4490476Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-04-25T04:11:40.4490992Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-04-25T04:11:40.4491504Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-04-25T04:11:40.4492021Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-04-25T04:11:40.4492547Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-04-25T04:11:40.4493070Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-04-25T04:11:40.4493587Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-04-25T04:11:40.4494114Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-04-25T04:11:40.4494643Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-04-25T04:11:40.4495160Z * [new branch] gh/shunting314/202/base -> origin/gh/shunting314/202/base 2025-04-25T04:11:40.4495691Z * [new branch] gh/shunting314/202/head -> origin/gh/shunting314/202/head 2025-04-25T04:11:40.4496341Z * [new branch] gh/shunting314/202/orig -> origin/gh/shunting314/202/orig 2025-04-25T04:11:40.4496868Z * [new branch] gh/shunting314/203/base -> origin/gh/shunting314/203/base 2025-04-25T04:11:40.4497387Z * [new branch] gh/shunting314/203/head -> origin/gh/shunting314/203/head 2025-04-25T04:11:40.4497910Z * [new branch] gh/shunting314/203/orig -> origin/gh/shunting314/203/orig 2025-04-25T04:11:40.4498430Z * [new branch] gh/shunting314/204/base -> origin/gh/shunting314/204/base 2025-04-25T04:11:40.4498947Z * [new branch] gh/shunting314/204/head -> origin/gh/shunting314/204/head 2025-04-25T04:11:40.4914892Z * [new branch] gh/shunting314/204/orig -> origin/gh/shunting314/204/orig 2025-04-25T04:11:40.4915449Z * [new branch] gh/shunting314/205/base -> origin/gh/shunting314/205/base 2025-04-25T04:11:40.4915993Z * [new branch] gh/shunting314/205/head -> origin/gh/shunting314/205/head 2025-04-25T04:11:40.4916522Z * [new branch] gh/shunting314/205/orig -> origin/gh/shunting314/205/orig 2025-04-25T04:11:40.4917170Z * [new branch] gh/shunting314/206/base -> origin/gh/shunting314/206/base 2025-04-25T04:11:40.4917698Z * [new branch] gh/shunting314/206/head -> origin/gh/shunting314/206/head 2025-04-25T04:11:40.4918217Z * [new branch] gh/shunting314/206/orig -> origin/gh/shunting314/206/orig 2025-04-25T04:11:40.4918728Z * [new branch] gh/shunting314/207/base -> origin/gh/shunting314/207/base 2025-04-25T04:11:40.4919300Z * [new branch] gh/shunting314/207/head -> origin/gh/shunting314/207/head 2025-04-25T04:11:40.4919901Z * [new branch] gh/shunting314/207/orig -> origin/gh/shunting314/207/orig 2025-04-25T04:11:40.4920477Z * [new branch] gh/sijiac/1/base -> origin/gh/sijiac/1/base 2025-04-25T04:11:40.4921009Z * [new branch] gh/sijiac/1/head -> origin/gh/sijiac/1/head 2025-04-25T04:11:40.4921564Z * [new branch] gh/sijiac/2/base -> origin/gh/sijiac/2/base 2025-04-25T04:11:40.4922129Z * [new branch] gh/sijiac/2/head -> origin/gh/sijiac/2/head 2025-04-25T04:11:40.4922661Z * [new branch] gh/sijiac/3/base -> origin/gh/sijiac/3/base 2025-04-25T04:11:40.4923175Z * [new branch] gh/sijiac/3/head -> origin/gh/sijiac/3/head 2025-04-25T04:11:40.4923751Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-04-25T04:11:40.4924346Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-04-25T04:11:40.4924949Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-04-25T04:11:40.4925533Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-04-25T04:11:40.4926142Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-04-25T04:11:40.4926762Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-04-25T04:11:40.4927320Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-04-25T04:11:40.4927921Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-04-25T04:11:40.4928520Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-04-25T04:11:40.4929132Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-04-25T04:11:40.4929691Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-04-25T04:11:40.4930209Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-04-25T04:11:40.4930836Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-04-25T04:11:40.4931335Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-04-25T04:11:40.4931857Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-04-25T04:11:40.4932359Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-04-25T04:11:40.4932885Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-04-25T04:11:40.4933390Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-04-25T04:11:40.4933909Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-04-25T04:11:40.4934439Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-04-25T04:11:40.4935005Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-04-25T04:11:40.4935574Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-04-25T04:11:40.4936078Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-04-25T04:11:40.4936674Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-04-25T04:11:40.4937189Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-04-25T04:11:40.4937687Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-04-25T04:11:40.4938194Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-04-25T04:11:40.4938694Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-04-25T04:11:40.4939212Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-04-25T04:11:40.4939738Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-04-25T04:11:40.5340849Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-04-25T04:11:40.5341425Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-04-25T04:11:40.5341975Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-04-25T04:11:40.5342537Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-04-25T04:11:40.5343096Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-04-25T04:11:40.5343591Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-04-25T04:11:40.5344103Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-04-25T04:11:40.5344602Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-04-25T04:11:40.5345112Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-04-25T04:11:40.5345625Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-04-25T04:11:40.5346128Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-04-25T04:11:40.5346631Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-04-25T04:11:40.5347124Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-04-25T04:11:40.5347629Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-04-25T04:11:40.5348203Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-04-25T04:11:40.5348745Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-04-25T04:11:40.5349256Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-04-25T04:11:40.5349910Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-04-25T04:11:40.5350418Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-04-25T04:11:40.5350947Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-04-25T04:11:40.5351448Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-04-25T04:11:40.5351976Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-04-25T04:11:40.5352479Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-04-25T04:11:40.5352992Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-04-25T04:11:40.5353501Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-04-25T04:11:40.5354091Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-04-25T04:11:40.5354611Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-04-25T04:11:40.5355216Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-04-25T04:11:40.5355728Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-04-25T04:11:40.5356244Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-04-25T04:11:40.5356746Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-04-25T04:11:40.5357264Z * [new branch] gh/soulitzer/355/base -> origin/gh/soulitzer/355/base 2025-04-25T04:11:40.5357774Z * [new branch] gh/soulitzer/355/head -> origin/gh/soulitzer/355/head 2025-04-25T04:11:40.5358288Z * [new branch] gh/soulitzer/355/orig -> origin/gh/soulitzer/355/orig 2025-04-25T04:11:40.5358810Z * [new branch] gh/soulitzer/356/base -> origin/gh/soulitzer/356/base 2025-04-25T04:11:40.5359359Z * [new branch] gh/soulitzer/356/head -> origin/gh/soulitzer/356/head 2025-04-25T04:11:40.5359925Z * [new branch] gh/soulitzer/356/orig -> origin/gh/soulitzer/356/orig 2025-04-25T04:11:40.5360424Z * [new branch] gh/soulitzer/357/base -> origin/gh/soulitzer/357/base 2025-04-25T04:11:40.5360923Z * [new branch] gh/soulitzer/357/head -> origin/gh/soulitzer/357/head 2025-04-25T04:11:40.5361421Z * [new branch] gh/soulitzer/357/orig -> origin/gh/soulitzer/357/orig 2025-04-25T04:11:40.5361922Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-04-25T04:11:40.5362441Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-04-25T04:11:40.5362935Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-04-25T04:11:40.5363454Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-04-25T04:11:40.5363963Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-04-25T04:11:40.5364462Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-04-25T04:11:40.5783266Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-04-25T04:11:40.5783804Z * [new branch] gh/swolchok/724/base -> origin/gh/swolchok/724/base 2025-04-25T04:11:40.5784328Z * [new branch] gh/swolchok/724/head -> origin/gh/swolchok/724/head 2025-04-25T04:11:40.5784844Z * [new branch] gh/swolchok/724/orig -> origin/gh/swolchok/724/orig 2025-04-25T04:11:40.5785336Z * [new branch] gh/swolchok/726/base -> origin/gh/swolchok/726/base 2025-04-25T04:11:40.5786589Z * [new branch] gh/swolchok/726/head -> origin/gh/swolchok/726/head 2025-04-25T04:11:40.5787091Z * [new branch] gh/swolchok/726/orig -> origin/gh/swolchok/726/orig 2025-04-25T04:11:40.5787603Z * [new branch] gh/swolchok/727/base -> origin/gh/swolchok/727/base 2025-04-25T04:11:40.5788098Z * [new branch] gh/swolchok/727/head -> origin/gh/swolchok/727/head 2025-04-25T04:11:40.5788583Z * [new branch] gh/swolchok/727/orig -> origin/gh/swolchok/727/orig 2025-04-25T04:11:40.5789081Z * [new branch] gh/swolchok/728/head -> origin/gh/swolchok/728/head 2025-04-25T04:11:40.5789570Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-04-25T04:11:40.5790068Z * [new branch] gh/swolchok/729/base -> origin/gh/swolchok/729/base 2025-04-25T04:11:40.5790560Z * [new branch] gh/swolchok/729/head -> origin/gh/swolchok/729/head 2025-04-25T04:11:40.5791079Z * [new branch] gh/swolchok/729/orig -> origin/gh/swolchok/729/orig 2025-04-25T04:11:40.5791588Z * [new branch] gh/swolchok/730/base -> origin/gh/swolchok/730/base 2025-04-25T04:11:40.5792524Z * [new branch] gh/swolchok/730/head -> origin/gh/swolchok/730/head 2025-04-25T04:11:40.5793029Z * [new branch] gh/swolchok/730/orig -> origin/gh/swolchok/730/orig 2025-04-25T04:11:40.5793531Z * [new branch] gh/swolchok/731/base -> origin/gh/swolchok/731/base 2025-04-25T04:11:40.5794029Z * [new branch] gh/swolchok/731/head -> origin/gh/swolchok/731/head 2025-04-25T04:11:40.5794535Z * [new branch] gh/swolchok/731/orig -> origin/gh/swolchok/731/orig 2025-04-25T04:11:40.5795031Z * [new branch] gh/swolchok/732/base -> origin/gh/swolchok/732/base 2025-04-25T04:11:40.5795535Z * [new branch] gh/swolchok/732/head -> origin/gh/swolchok/732/head 2025-04-25T04:11:40.5796043Z * [new branch] gh/swolchok/732/orig -> origin/gh/swolchok/732/orig 2025-04-25T04:11:40.5796538Z * [new branch] gh/swolchok/733/base -> origin/gh/swolchok/733/base 2025-04-25T04:11:40.5797045Z * [new branch] gh/swolchok/733/head -> origin/gh/swolchok/733/head 2025-04-25T04:11:40.5797537Z * [new branch] gh/swolchok/733/orig -> origin/gh/swolchok/733/orig 2025-04-25T04:11:40.5798046Z * [new branch] gh/swolchok/734/base -> origin/gh/swolchok/734/base 2025-04-25T04:11:40.5798549Z * [new branch] gh/swolchok/734/head -> origin/gh/swolchok/734/head 2025-04-25T04:11:40.5799040Z * [new branch] gh/swolchok/734/orig -> origin/gh/swolchok/734/orig 2025-04-25T04:11:40.5799537Z * [new branch] gh/swolchok/735/base -> origin/gh/swolchok/735/base 2025-04-25T04:11:40.5800035Z * [new branch] gh/swolchok/735/head -> origin/gh/swolchok/735/head 2025-04-25T04:11:40.5800542Z * [new branch] gh/swolchok/735/orig -> origin/gh/swolchok/735/orig 2025-04-25T04:11:40.5801047Z * [new branch] gh/swolchok/736/base -> origin/gh/swolchok/736/base 2025-04-25T04:11:40.5801541Z * [new branch] gh/swolchok/736/head -> origin/gh/swolchok/736/head 2025-04-25T04:11:40.5802038Z * [new branch] gh/swolchok/736/orig -> origin/gh/swolchok/736/orig 2025-04-25T04:11:40.5802535Z * [new branch] gh/swolchok/737/base -> origin/gh/swolchok/737/base 2025-04-25T04:11:40.5803036Z * [new branch] gh/swolchok/737/head -> origin/gh/swolchok/737/head 2025-04-25T04:11:40.5803528Z * [new branch] gh/swolchok/737/orig -> origin/gh/swolchok/737/orig 2025-04-25T04:11:40.5804024Z * [new branch] gh/swolchok/738/base -> origin/gh/swolchok/738/base 2025-04-25T04:11:40.5804835Z * [new branch] gh/swolchok/738/head -> origin/gh/swolchok/738/head 2025-04-25T04:11:40.5805328Z * [new branch] gh/swolchok/738/orig -> origin/gh/swolchok/738/orig 2025-04-25T04:11:40.5805836Z * [new branch] gh/swolchok/739/base -> origin/gh/swolchok/739/base 2025-04-25T04:11:40.5806423Z * [new branch] gh/swolchok/739/head -> origin/gh/swolchok/739/head 2025-04-25T04:11:40.5806937Z * [new branch] gh/swolchok/739/orig -> origin/gh/swolchok/739/orig 2025-04-25T04:11:40.5807443Z * [new branch] gh/swolchok/740/base -> origin/gh/swolchok/740/base 2025-04-25T04:11:40.5807936Z * [new branch] gh/swolchok/740/head -> origin/gh/swolchok/740/head 2025-04-25T04:11:40.6218089Z * [new branch] gh/swolchok/740/orig -> origin/gh/swolchok/740/orig 2025-04-25T04:11:40.6218634Z * [new branch] gh/swolchok/741/base -> origin/gh/swolchok/741/base 2025-04-25T04:11:40.6219176Z * [new branch] gh/swolchok/741/head -> origin/gh/swolchok/741/head 2025-04-25T04:11:40.6219676Z * [new branch] gh/swolchok/741/orig -> origin/gh/swolchok/741/orig 2025-04-25T04:11:40.6220326Z * [new branch] gh/swolchok/742/base -> origin/gh/swolchok/742/base 2025-04-25T04:11:40.6220844Z * [new branch] gh/swolchok/742/head -> origin/gh/swolchok/742/head 2025-04-25T04:11:40.6221339Z * [new branch] gh/swolchok/742/orig -> origin/gh/swolchok/742/orig 2025-04-25T04:11:40.6222717Z * [new branch] gh/swolchok/743/base -> origin/gh/swolchok/743/base 2025-04-25T04:11:40.6223222Z * [new branch] gh/swolchok/743/head -> origin/gh/swolchok/743/head 2025-04-25T04:11:40.6223713Z * [new branch] gh/swolchok/743/orig -> origin/gh/swolchok/743/orig 2025-04-25T04:11:40.6224218Z * [new branch] gh/swolchok/744/base -> origin/gh/swolchok/744/base 2025-04-25T04:11:40.6224731Z * [new branch] gh/swolchok/744/head -> origin/gh/swolchok/744/head 2025-04-25T04:11:40.6225227Z * [new branch] gh/swolchok/744/orig -> origin/gh/swolchok/744/orig 2025-04-25T04:11:40.6225726Z * [new branch] gh/swolchok/745/base -> origin/gh/swolchok/745/base 2025-04-25T04:11:40.6226218Z * [new branch] gh/swolchok/745/head -> origin/gh/swolchok/745/head 2025-04-25T04:11:40.6226715Z * [new branch] gh/swolchok/745/orig -> origin/gh/swolchok/745/orig 2025-04-25T04:11:40.6228002Z * [new branch] gh/swolchok/746/base -> origin/gh/swolchok/746/base 2025-04-25T04:11:40.6228507Z * [new branch] gh/swolchok/746/head -> origin/gh/swolchok/746/head 2025-04-25T04:11:40.6229010Z * [new branch] gh/swolchok/746/orig -> origin/gh/swolchok/746/orig 2025-04-25T04:11:40.6229505Z * [new branch] gh/swolchok/747/base -> origin/gh/swolchok/747/base 2025-04-25T04:11:40.6230011Z * [new branch] gh/swolchok/747/head -> origin/gh/swolchok/747/head 2025-04-25T04:11:40.6230512Z * [new branch] gh/swolchok/747/orig -> origin/gh/swolchok/747/orig 2025-04-25T04:11:40.6231006Z * [new branch] gh/swolchok/748/base -> origin/gh/swolchok/748/base 2025-04-25T04:11:40.6231502Z * [new branch] gh/swolchok/748/head -> origin/gh/swolchok/748/head 2025-04-25T04:11:40.6231990Z * [new branch] gh/swolchok/748/orig -> origin/gh/swolchok/748/orig 2025-04-25T04:11:40.6232489Z * [new branch] gh/swolchok/749/base -> origin/gh/swolchok/749/base 2025-04-25T04:11:40.6233769Z * [new branch] gh/swolchok/749/head -> origin/gh/swolchok/749/head 2025-04-25T04:11:40.6234267Z * [new branch] gh/swolchok/749/orig -> origin/gh/swolchok/749/orig 2025-04-25T04:11:40.6234891Z * [new branch] gh/swolchok/750/base -> origin/gh/swolchok/750/base 2025-04-25T04:11:40.6235383Z * [new branch] gh/swolchok/750/head -> origin/gh/swolchok/750/head 2025-04-25T04:11:40.6235896Z * [new branch] gh/swolchok/750/orig -> origin/gh/swolchok/750/orig 2025-04-25T04:11:40.6236403Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-04-25T04:11:40.6236900Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-04-25T04:11:40.6237409Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-04-25T04:11:40.6237892Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-04-25T04:11:40.6238866Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-04-25T04:11:40.6239671Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-04-25T04:11:40.6240155Z * [new branch] gh/tianyu-l/7/base -> origin/gh/tianyu-l/7/base 2025-04-25T04:11:40.6240745Z * [new branch] gh/tianyu-l/7/head -> origin/gh/tianyu-l/7/head 2025-04-25T04:11:40.6241217Z * [new branch] gh/tianyu-l/7/orig -> origin/gh/tianyu-l/7/orig 2025-04-25T04:11:40.6241700Z * [new branch] gh/tianyu-l/8/base -> origin/gh/tianyu-l/8/base 2025-04-25T04:11:40.6242172Z * [new branch] gh/tianyu-l/8/head -> origin/gh/tianyu-l/8/head 2025-04-25T04:11:40.6242659Z * [new branch] gh/tianyu-l/8/orig -> origin/gh/tianyu-l/8/orig 2025-04-25T04:11:40.6243193Z * [new branch] gh/tugsbayasgalan/162/base -> origin/gh/tugsbayasgalan/162/base 2025-04-25T04:11:40.6243763Z * [new branch] gh/tugsbayasgalan/162/head -> origin/gh/tugsbayasgalan/162/head 2025-04-25T04:11:40.6245151Z * [new branch] gh/tugsbayasgalan/162/orig -> origin/gh/tugsbayasgalan/162/orig 2025-04-25T04:11:40.6636968Z * [new branch] gh/tugsbayasgalan/282/base -> origin/gh/tugsbayasgalan/282/base 2025-04-25T04:11:40.6637606Z * [new branch] gh/tugsbayasgalan/282/head -> origin/gh/tugsbayasgalan/282/head 2025-04-25T04:11:40.6638201Z * [new branch] gh/tugsbayasgalan/282/orig -> origin/gh/tugsbayasgalan/282/orig 2025-04-25T04:11:40.6638759Z * [new branch] gh/tugsbayasgalan/290/base -> origin/gh/tugsbayasgalan/290/base 2025-04-25T04:11:40.6639333Z * [new branch] gh/tugsbayasgalan/290/head -> origin/gh/tugsbayasgalan/290/head 2025-04-25T04:11:40.6639900Z * [new branch] gh/tugsbayasgalan/290/orig -> origin/gh/tugsbayasgalan/290/orig 2025-04-25T04:11:40.6640464Z * [new branch] gh/tugsbayasgalan/298/base -> origin/gh/tugsbayasgalan/298/base 2025-04-25T04:11:40.6641054Z * [new branch] gh/tugsbayasgalan/298/head -> origin/gh/tugsbayasgalan/298/head 2025-04-25T04:11:40.6641618Z * [new branch] gh/tugsbayasgalan/298/orig -> origin/gh/tugsbayasgalan/298/orig 2025-04-25T04:11:40.6642192Z * [new branch] gh/tugsbayasgalan/299/base -> origin/gh/tugsbayasgalan/299/base 2025-04-25T04:11:40.6642765Z * [new branch] gh/tugsbayasgalan/299/head -> origin/gh/tugsbayasgalan/299/head 2025-04-25T04:11:40.6643330Z * [new branch] gh/tugsbayasgalan/299/orig -> origin/gh/tugsbayasgalan/299/orig 2025-04-25T04:11:40.6643906Z * [new branch] gh/tugsbayasgalan/300/base -> origin/gh/tugsbayasgalan/300/base 2025-04-25T04:11:40.6644462Z * [new branch] gh/tugsbayasgalan/300/head -> origin/gh/tugsbayasgalan/300/head 2025-04-25T04:11:40.6645037Z * [new branch] gh/tugsbayasgalan/300/orig -> origin/gh/tugsbayasgalan/300/orig 2025-04-25T04:11:40.6645600Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-04-25T04:11:40.6646387Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-04-25T04:11:40.6646956Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-04-25T04:11:40.6647524Z * [new branch] gh/tugsbayasgalan/303/base -> origin/gh/tugsbayasgalan/303/base 2025-04-25T04:11:40.6648091Z * [new branch] gh/tugsbayasgalan/303/head -> origin/gh/tugsbayasgalan/303/head 2025-04-25T04:11:40.6648663Z * [new branch] gh/tugsbayasgalan/303/orig -> origin/gh/tugsbayasgalan/303/orig 2025-04-25T04:11:40.6649229Z * [new branch] gh/tugsbayasgalan/304/base -> origin/gh/tugsbayasgalan/304/base 2025-04-25T04:11:40.6649803Z * [new branch] gh/tugsbayasgalan/304/head -> origin/gh/tugsbayasgalan/304/head 2025-04-25T04:11:40.6650364Z * [new branch] gh/tugsbayasgalan/304/orig -> origin/gh/tugsbayasgalan/304/orig 2025-04-25T04:11:40.6650935Z * [new branch] gh/tugsbayasgalan/305/base -> origin/gh/tugsbayasgalan/305/base 2025-04-25T04:11:40.6651494Z * [new branch] gh/tugsbayasgalan/305/head -> origin/gh/tugsbayasgalan/305/head 2025-04-25T04:11:40.6652163Z * [new branch] gh/tugsbayasgalan/305/orig -> origin/gh/tugsbayasgalan/305/orig 2025-04-25T04:11:40.6652741Z * [new branch] gh/tugsbayasgalan/306/base -> origin/gh/tugsbayasgalan/306/base 2025-04-25T04:11:40.6653313Z * [new branch] gh/tugsbayasgalan/306/head -> origin/gh/tugsbayasgalan/306/head 2025-04-25T04:11:40.6653880Z * [new branch] gh/tugsbayasgalan/306/orig -> origin/gh/tugsbayasgalan/306/orig 2025-04-25T04:11:40.6654441Z * [new branch] gh/tugsbayasgalan/307/base -> origin/gh/tugsbayasgalan/307/base 2025-04-25T04:11:40.6655023Z * [new branch] gh/tugsbayasgalan/307/head -> origin/gh/tugsbayasgalan/307/head 2025-04-25T04:11:40.6655611Z * [new branch] gh/tugsbayasgalan/307/orig -> origin/gh/tugsbayasgalan/307/orig 2025-04-25T04:11:40.6656169Z * [new branch] gh/tugsbayasgalan/308/base -> origin/gh/tugsbayasgalan/308/base 2025-04-25T04:11:40.6656741Z * [new branch] gh/tugsbayasgalan/308/head -> origin/gh/tugsbayasgalan/308/head 2025-04-25T04:11:40.6657301Z * [new branch] gh/tugsbayasgalan/308/orig -> origin/gh/tugsbayasgalan/308/orig 2025-04-25T04:11:40.6657864Z * [new branch] gh/tugsbayasgalan/309/base -> origin/gh/tugsbayasgalan/309/base 2025-04-25T04:11:40.6658431Z * [new branch] gh/tugsbayasgalan/309/head -> origin/gh/tugsbayasgalan/309/head 2025-04-25T04:11:40.6658989Z * [new branch] gh/tugsbayasgalan/309/orig -> origin/gh/tugsbayasgalan/309/orig 2025-04-25T04:11:40.6659510Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-04-25T04:11:40.6659982Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-04-25T04:11:40.6660459Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-04-25T04:11:40.6660927Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-04-25T04:11:40.6661385Z * [new branch] gh/vkuzo/11/base -> origin/gh/vkuzo/11/base 2025-04-25T04:11:40.6661846Z * [new branch] gh/vkuzo/11/head -> origin/gh/vkuzo/11/head 2025-04-25T04:11:40.7080051Z * [new branch] gh/vkuzo/11/orig -> origin/gh/vkuzo/11/orig 2025-04-25T04:11:40.7080603Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-04-25T04:11:40.7081066Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-04-25T04:11:40.7081533Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-04-25T04:11:40.7081983Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-04-25T04:11:40.7082601Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-04-25T04:11:40.7083054Z * [new branch] gh/vkuzo/7/base -> origin/gh/vkuzo/7/base 2025-04-25T04:11:40.7083517Z * [new branch] gh/vkuzo/7/head -> origin/gh/vkuzo/7/head 2025-04-25T04:11:40.7083970Z * [new branch] gh/vkuzo/7/orig -> origin/gh/vkuzo/7/orig 2025-04-25T04:11:40.7084424Z * [new branch] gh/vkuzo/8/base -> origin/gh/vkuzo/8/base 2025-04-25T04:11:40.7084884Z * [new branch] gh/vkuzo/8/head -> origin/gh/vkuzo/8/head 2025-04-25T04:11:40.7085325Z * [new branch] gh/vkuzo/8/orig -> origin/gh/vkuzo/8/orig 2025-04-25T04:11:40.7085779Z * [new branch] gh/vkuzo/9/base -> origin/gh/vkuzo/9/base 2025-04-25T04:11:40.7086235Z * [new branch] gh/vkuzo/9/head -> origin/gh/vkuzo/9/head 2025-04-25T04:11:40.7086744Z * [new branch] gh/vkuzo/9/orig -> origin/gh/vkuzo/9/orig 2025-04-25T04:11:40.7087220Z * [new branch] gh/vmoens/15/base -> origin/gh/vmoens/15/base 2025-04-25T04:11:40.7087783Z * [new branch] gh/vmoens/15/head -> origin/gh/vmoens/15/head 2025-04-25T04:11:40.7088263Z * [new branch] gh/vmoens/15/orig -> origin/gh/vmoens/15/orig 2025-04-25T04:11:40.7088734Z * [new branch] gh/vmoens/16/base -> origin/gh/vmoens/16/base 2025-04-25T04:11:40.7089198Z * [new branch] gh/vmoens/16/head -> origin/gh/vmoens/16/head 2025-04-25T04:11:40.7089661Z * [new branch] gh/vmoens/16/orig -> origin/gh/vmoens/16/orig 2025-04-25T04:11:40.7090122Z * [new branch] gh/vmoens/17/base -> origin/gh/vmoens/17/base 2025-04-25T04:11:40.7090583Z * [new branch] gh/vmoens/17/head -> origin/gh/vmoens/17/head 2025-04-25T04:11:40.7091053Z * [new branch] gh/vmoens/17/orig -> origin/gh/vmoens/17/orig 2025-04-25T04:11:40.7091524Z * [new branch] gh/vmoens/18/base -> origin/gh/vmoens/18/base 2025-04-25T04:11:40.7091992Z * [new branch] gh/vmoens/18/head -> origin/gh/vmoens/18/head 2025-04-25T04:11:40.7092450Z * [new branch] gh/vmoens/18/orig -> origin/gh/vmoens/18/orig 2025-04-25T04:11:40.7092955Z * [new branch] gh/voznesenskym/254/base -> origin/gh/voznesenskym/254/base 2025-04-25T04:11:40.7093498Z * [new branch] gh/voznesenskym/254/head -> origin/gh/voznesenskym/254/head 2025-04-25T04:11:40.7094039Z * [new branch] gh/voznesenskym/254/orig -> origin/gh/voznesenskym/254/orig 2025-04-25T04:11:40.7094558Z * [new branch] gh/wanchaol/367/base -> origin/gh/wanchaol/367/base 2025-04-25T04:11:40.7095056Z * [new branch] gh/wanchaol/367/head -> origin/gh/wanchaol/367/head 2025-04-25T04:11:40.7095546Z * [new branch] gh/wanchaol/367/orig -> origin/gh/wanchaol/367/orig 2025-04-25T04:11:40.7096031Z * [new branch] gh/wanchaol/368/base -> origin/gh/wanchaol/368/base 2025-04-25T04:11:40.7096526Z * [new branch] gh/wanchaol/368/head -> origin/gh/wanchaol/368/head 2025-04-25T04:11:40.7097016Z * [new branch] gh/wanchaol/368/orig -> origin/gh/wanchaol/368/orig 2025-04-25T04:11:40.7097498Z * [new branch] gh/wanchaol/369/base -> origin/gh/wanchaol/369/base 2025-04-25T04:11:40.7097993Z * [new branch] gh/wanchaol/369/head -> origin/gh/wanchaol/369/head 2025-04-25T04:11:40.7098485Z * [new branch] gh/wanchaol/369/orig -> origin/gh/wanchaol/369/orig 2025-04-25T04:11:40.7098976Z * [new branch] gh/wanchaol/370/base -> origin/gh/wanchaol/370/base 2025-04-25T04:11:40.7099554Z * [new branch] gh/wanchaol/370/head -> origin/gh/wanchaol/370/head 2025-04-25T04:11:40.7100042Z * [new branch] gh/wanchaol/370/orig -> origin/gh/wanchaol/370/orig 2025-04-25T04:11:40.7100551Z * [new branch] gh/wanchaol/371/base -> origin/gh/wanchaol/371/base 2025-04-25T04:11:40.7101038Z * [new branch] gh/wanchaol/371/head -> origin/gh/wanchaol/371/head 2025-04-25T04:11:40.7101536Z * [new branch] gh/wanchaol/371/orig -> origin/gh/wanchaol/371/orig 2025-04-25T04:11:40.7102034Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-04-25T04:11:40.7102537Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-04-25T04:11:40.7520853Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-04-25T04:11:40.7521411Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-04-25T04:11:40.7521948Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-04-25T04:11:40.7522458Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-04-25T04:11:40.7523085Z * [new branch] gh/wconstab/395/base -> origin/gh/wconstab/395/base 2025-04-25T04:11:40.7523587Z * [new branch] gh/wconstab/395/head -> origin/gh/wconstab/395/head 2025-04-25T04:11:40.7524081Z * [new branch] gh/wconstab/395/orig -> origin/gh/wconstab/395/orig 2025-04-25T04:11:40.7524579Z * [new branch] gh/wconstab/396/base -> origin/gh/wconstab/396/base 2025-04-25T04:11:40.7525083Z * [new branch] gh/wconstab/396/head -> origin/gh/wconstab/396/head 2025-04-25T04:11:40.7525566Z * [new branch] gh/wconstab/396/orig -> origin/gh/wconstab/396/orig 2025-04-25T04:11:40.7526068Z * [new branch] gh/wconstab/398/base -> origin/gh/wconstab/398/base 2025-04-25T04:11:40.7526643Z * [new branch] gh/wconstab/398/head -> origin/gh/wconstab/398/head 2025-04-25T04:11:40.7527146Z * [new branch] gh/wconstab/398/orig -> origin/gh/wconstab/398/orig 2025-04-25T04:11:40.7527643Z * [new branch] gh/wconstab/399/base -> origin/gh/wconstab/399/base 2025-04-25T04:11:40.7528128Z * [new branch] gh/wconstab/399/head -> origin/gh/wconstab/399/head 2025-04-25T04:11:40.7528629Z * [new branch] gh/wconstab/399/orig -> origin/gh/wconstab/399/orig 2025-04-25T04:11:40.7529114Z * [new branch] gh/wconstab/400/base -> origin/gh/wconstab/400/base 2025-04-25T04:11:40.7529603Z * [new branch] gh/wconstab/400/head -> origin/gh/wconstab/400/head 2025-04-25T04:11:40.7530087Z * [new branch] gh/wconstab/400/orig -> origin/gh/wconstab/400/orig 2025-04-25T04:11:40.7530579Z * [new branch] gh/wconstab/401/base -> origin/gh/wconstab/401/base 2025-04-25T04:11:40.7531067Z * [new branch] gh/wconstab/401/head -> origin/gh/wconstab/401/head 2025-04-25T04:11:40.7531556Z * [new branch] gh/wconstab/401/orig -> origin/gh/wconstab/401/orig 2025-04-25T04:11:40.7532056Z * [new branch] gh/wconstab/402/base -> origin/gh/wconstab/402/base 2025-04-25T04:11:40.7532544Z * [new branch] gh/wconstab/402/head -> origin/gh/wconstab/402/head 2025-04-25T04:11:40.7533041Z * [new branch] gh/wconstab/402/orig -> origin/gh/wconstab/402/orig 2025-04-25T04:11:40.7533534Z * [new branch] gh/wconstab/403/base -> origin/gh/wconstab/403/base 2025-04-25T04:11:40.7534110Z * [new branch] gh/wconstab/403/head -> origin/gh/wconstab/403/head 2025-04-25T04:11:40.7534652Z * [new branch] gh/wconstab/403/orig -> origin/gh/wconstab/403/orig 2025-04-25T04:11:40.7535239Z * [new branch] gh/wconstab/404/base -> origin/gh/wconstab/404/base 2025-04-25T04:11:40.7535750Z * [new branch] gh/wconstab/404/head -> origin/gh/wconstab/404/head 2025-04-25T04:11:40.7536257Z * [new branch] gh/wconstab/404/orig -> origin/gh/wconstab/404/orig 2025-04-25T04:11:40.7536752Z * [new branch] gh/wconstab/405/base -> origin/gh/wconstab/405/base 2025-04-25T04:11:40.7537238Z * [new branch] gh/wconstab/405/head -> origin/gh/wconstab/405/head 2025-04-25T04:11:40.7537729Z * [new branch] gh/wconstab/405/orig -> origin/gh/wconstab/405/orig 2025-04-25T04:11:40.7538221Z * [new branch] gh/wconstab/406/base -> origin/gh/wconstab/406/base 2025-04-25T04:11:40.7538716Z * [new branch] gh/wconstab/406/head -> origin/gh/wconstab/406/head 2025-04-25T04:11:40.7539208Z * [new branch] gh/wconstab/406/orig -> origin/gh/wconstab/406/orig 2025-04-25T04:11:40.7539708Z * [new branch] gh/wconstab/407/base -> origin/gh/wconstab/407/base 2025-04-25T04:11:40.7540280Z * [new branch] gh/wconstab/407/head -> origin/gh/wconstab/407/head 2025-04-25T04:11:40.7540780Z * [new branch] gh/wconstab/407/orig -> origin/gh/wconstab/407/orig 2025-04-25T04:11:40.7541268Z * [new branch] gh/wconstab/408/base -> origin/gh/wconstab/408/base 2025-04-25T04:11:40.7541767Z * [new branch] gh/wconstab/408/head -> origin/gh/wconstab/408/head 2025-04-25T04:11:40.7542270Z * [new branch] gh/wconstab/408/orig -> origin/gh/wconstab/408/orig 2025-04-25T04:11:40.7542766Z * [new branch] gh/wconstab/409/base -> origin/gh/wconstab/409/base 2025-04-25T04:11:40.7543264Z * [new branch] gh/wconstab/409/head -> origin/gh/wconstab/409/head 2025-04-25T04:11:40.7543760Z * [new branch] gh/wconstab/409/orig -> origin/gh/wconstab/409/orig 2025-04-25T04:11:40.7544253Z * [new branch] gh/wconstab/410/base -> origin/gh/wconstab/410/base 2025-04-25T04:11:40.7948437Z * [new branch] gh/wconstab/410/head -> origin/gh/wconstab/410/head 2025-04-25T04:11:40.7948999Z * [new branch] gh/wconstab/410/orig -> origin/gh/wconstab/410/orig 2025-04-25T04:11:40.7949517Z * [new branch] gh/wconstab/411/base -> origin/gh/wconstab/411/base 2025-04-25T04:11:40.7950034Z * [new branch] gh/wconstab/411/head -> origin/gh/wconstab/411/head 2025-04-25T04:11:40.7950526Z * [new branch] gh/wconstab/411/orig -> origin/gh/wconstab/411/orig 2025-04-25T04:11:40.7951018Z * [new branch] gh/wconstab/412/base -> origin/gh/wconstab/412/base 2025-04-25T04:11:40.7951509Z * [new branch] gh/wconstab/412/head -> origin/gh/wconstab/412/head 2025-04-25T04:11:40.7952059Z * [new branch] gh/wconstab/412/orig -> origin/gh/wconstab/412/orig 2025-04-25T04:11:40.7952603Z * [new branch] gh/wconstab/413/base -> origin/gh/wconstab/413/base 2025-04-25T04:11:40.7953092Z * [new branch] gh/wconstab/413/head -> origin/gh/wconstab/413/head 2025-04-25T04:11:40.7953586Z * [new branch] gh/wconstab/413/orig -> origin/gh/wconstab/413/orig 2025-04-25T04:11:40.7954079Z * [new branch] gh/wconstab/414/base -> origin/gh/wconstab/414/base 2025-04-25T04:11:40.7954579Z * [new branch] gh/wconstab/414/head -> origin/gh/wconstab/414/head 2025-04-25T04:11:40.7955064Z * [new branch] gh/wconstab/414/orig -> origin/gh/wconstab/414/orig 2025-04-25T04:11:40.7955567Z * [new branch] gh/weifengpy/21/base -> origin/gh/weifengpy/21/base 2025-04-25T04:11:40.7956223Z * [new branch] gh/weifengpy/21/head -> origin/gh/weifengpy/21/head 2025-04-25T04:11:40.7956737Z * [new branch] gh/weifengpy/21/orig -> origin/gh/weifengpy/21/orig 2025-04-25T04:11:40.7957252Z * [new branch] gh/weifengpy/24/base -> origin/gh/weifengpy/24/base 2025-04-25T04:11:40.7957822Z * [new branch] gh/weifengpy/24/head -> origin/gh/weifengpy/24/head 2025-04-25T04:11:40.7958337Z * [new branch] gh/weifengpy/24/orig -> origin/gh/weifengpy/24/orig 2025-04-25T04:11:40.7958861Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-04-25T04:11:40.7959398Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-04-25T04:11:40.7959936Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-04-25T04:11:40.7960469Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-04-25T04:11:40.7961012Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-04-25T04:11:40.7961552Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-04-25T04:11:40.7962175Z * [new branch] gh/williamwen42/210/base -> origin/gh/williamwen42/210/base 2025-04-25T04:11:40.7962716Z * [new branch] gh/williamwen42/210/head -> origin/gh/williamwen42/210/head 2025-04-25T04:11:40.7963288Z * [new branch] gh/williamwen42/210/orig -> origin/gh/williamwen42/210/orig 2025-04-25T04:11:40.7963863Z * [new branch] gh/williamwen42/220/base -> origin/gh/williamwen42/220/base 2025-04-25T04:11:40.7964395Z * [new branch] gh/williamwen42/220/head -> origin/gh/williamwen42/220/head 2025-04-25T04:11:40.7964919Z * [new branch] gh/williamwen42/220/orig -> origin/gh/williamwen42/220/orig 2025-04-25T04:11:40.7965466Z * [new branch] gh/williamwen42/222/base -> origin/gh/williamwen42/222/base 2025-04-25T04:11:40.7965992Z * [new branch] gh/williamwen42/222/head -> origin/gh/williamwen42/222/head 2025-04-25T04:11:40.7966605Z * [new branch] gh/williamwen42/222/orig -> origin/gh/williamwen42/222/orig 2025-04-25T04:11:40.7967130Z * [new branch] gh/williamwen42/223/base -> origin/gh/williamwen42/223/base 2025-04-25T04:11:40.7967666Z * [new branch] gh/williamwen42/223/head -> origin/gh/williamwen42/223/head 2025-04-25T04:11:40.7968200Z * [new branch] gh/williamwen42/223/orig -> origin/gh/williamwen42/223/orig 2025-04-25T04:11:40.7968760Z * [new branch] gh/williamwen42/224/base -> origin/gh/williamwen42/224/base 2025-04-25T04:11:40.7969333Z * [new branch] gh/williamwen42/224/head -> origin/gh/williamwen42/224/head 2025-04-25T04:11:40.7969861Z * [new branch] gh/williamwen42/224/orig -> origin/gh/williamwen42/224/orig 2025-04-25T04:11:40.7970404Z * [new branch] gh/williamwen42/225/base -> origin/gh/williamwen42/225/base 2025-04-25T04:11:40.7970941Z * [new branch] gh/williamwen42/225/head -> origin/gh/williamwen42/225/head 2025-04-25T04:11:40.7971468Z * [new branch] gh/williamwen42/225/orig -> origin/gh/williamwen42/225/orig 2025-04-25T04:11:40.7972007Z * [new branch] gh/williamwen42/226/base -> origin/gh/williamwen42/226/base 2025-04-25T04:11:40.8376110Z * [new branch] gh/williamwen42/226/head -> origin/gh/williamwen42/226/head 2025-04-25T04:11:40.8376697Z * [new branch] gh/williamwen42/226/orig -> origin/gh/williamwen42/226/orig 2025-04-25T04:11:40.8377255Z * [new branch] gh/williamwen42/227/base -> origin/gh/williamwen42/227/base 2025-04-25T04:11:40.8377795Z * [new branch] gh/williamwen42/227/head -> origin/gh/williamwen42/227/head 2025-04-25T04:11:40.8378498Z * [new branch] gh/williamwen42/227/orig -> origin/gh/williamwen42/227/orig 2025-04-25T04:11:40.8379030Z * [new branch] gh/williamwen42/228/base -> origin/gh/williamwen42/228/base 2025-04-25T04:11:40.8379574Z * [new branch] gh/williamwen42/228/head -> origin/gh/williamwen42/228/head 2025-04-25T04:11:40.8380109Z * [new branch] gh/williamwen42/228/orig -> origin/gh/williamwen42/228/orig 2025-04-25T04:11:40.8380641Z * [new branch] gh/williamwen42/229/base -> origin/gh/williamwen42/229/base 2025-04-25T04:11:40.8381177Z * [new branch] gh/williamwen42/229/head -> origin/gh/williamwen42/229/head 2025-04-25T04:11:40.8381720Z * [new branch] gh/williamwen42/229/orig -> origin/gh/williamwen42/229/orig 2025-04-25T04:11:40.8382250Z * [new branch] gh/williamwen42/230/base -> origin/gh/williamwen42/230/base 2025-04-25T04:11:40.8382789Z * [new branch] gh/williamwen42/230/head -> origin/gh/williamwen42/230/head 2025-04-25T04:11:40.8383316Z * [new branch] gh/williamwen42/230/orig -> origin/gh/williamwen42/230/orig 2025-04-25T04:11:40.8383943Z * [new branch] gh/williamwen42/231/base -> origin/gh/williamwen42/231/base 2025-04-25T04:11:40.8384486Z * [new branch] gh/williamwen42/231/head -> origin/gh/williamwen42/231/head 2025-04-25T04:11:40.8385021Z * [new branch] gh/williamwen42/231/orig -> origin/gh/williamwen42/231/orig 2025-04-25T04:11:40.8385565Z * [new branch] gh/williamwen42/232/base -> origin/gh/williamwen42/232/base 2025-04-25T04:11:40.8386095Z * [new branch] gh/williamwen42/232/head -> origin/gh/williamwen42/232/head 2025-04-25T04:11:40.8386639Z * [new branch] gh/williamwen42/232/orig -> origin/gh/williamwen42/232/orig 2025-04-25T04:11:40.8387230Z * [new branch] gh/williamwen42/233/base -> origin/gh/williamwen42/233/base 2025-04-25T04:11:40.8387810Z * [new branch] gh/williamwen42/233/head -> origin/gh/williamwen42/233/head 2025-04-25T04:11:40.8388355Z * [new branch] gh/williamwen42/233/orig -> origin/gh/williamwen42/233/orig 2025-04-25T04:11:40.8388890Z * [new branch] gh/williamwen42/234/base -> origin/gh/williamwen42/234/base 2025-04-25T04:11:40.8389427Z * [new branch] gh/williamwen42/234/head -> origin/gh/williamwen42/234/head 2025-04-25T04:11:40.8389965Z * [new branch] gh/williamwen42/234/orig -> origin/gh/williamwen42/234/orig 2025-04-25T04:11:40.8390460Z * [new branch] gh/wz337/2/base -> origin/gh/wz337/2/base 2025-04-25T04:11:40.8390921Z * [new branch] gh/wz337/2/head -> origin/gh/wz337/2/head 2025-04-25T04:11:40.8391359Z * [new branch] gh/wz337/3/base -> origin/gh/wz337/3/base 2025-04-25T04:11:40.8391811Z * [new branch] gh/wz337/3/head -> origin/gh/wz337/3/head 2025-04-25T04:11:40.8392267Z * [new branch] gh/xmfan/157/base -> origin/gh/xmfan/157/base 2025-04-25T04:11:40.8392736Z * [new branch] gh/xmfan/157/head -> origin/gh/xmfan/157/head 2025-04-25T04:11:40.8393255Z * [new branch] gh/xmfan/157/orig -> origin/gh/xmfan/157/orig 2025-04-25T04:11:40.8393758Z * [new branch] gh/xmfan/166/base -> origin/gh/xmfan/166/base 2025-04-25T04:11:40.8394226Z * [new branch] gh/xmfan/166/head -> origin/gh/xmfan/166/head 2025-04-25T04:11:40.8394687Z * [new branch] gh/xmfan/166/orig -> origin/gh/xmfan/166/orig 2025-04-25T04:11:40.8395155Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-04-25T04:11:40.8395624Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-04-25T04:11:40.8396177Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-04-25T04:11:40.8396654Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-04-25T04:11:40.8397136Z * [new branch] gh/xmfan/173/base -> origin/gh/xmfan/173/base 2025-04-25T04:11:40.8397616Z * [new branch] gh/xmfan/173/head -> origin/gh/xmfan/173/head 2025-04-25T04:11:40.8398086Z * [new branch] gh/xmfan/173/orig -> origin/gh/xmfan/173/orig 2025-04-25T04:11:40.8398545Z * [new branch] gh/xmfan/174/base -> origin/gh/xmfan/174/base 2025-04-25T04:11:40.8399057Z * [new branch] gh/xmfan/174/head -> origin/gh/xmfan/174/head 2025-04-25T04:11:40.8399557Z * [new branch] gh/xmfan/174/orig -> origin/gh/xmfan/174/orig 2025-04-25T04:11:40.8829824Z * [new branch] gh/xmfan/178/base -> origin/gh/xmfan/178/base 2025-04-25T04:11:40.8830345Z * [new branch] gh/xmfan/178/head -> origin/gh/xmfan/178/head 2025-04-25T04:11:40.8830806Z * [new branch] gh/xmfan/178/orig -> origin/gh/xmfan/178/orig 2025-04-25T04:11:40.8831394Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-04-25T04:11:40.8831862Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-04-25T04:11:40.8832332Z * [new branch] gh/xmfan/180/base -> origin/gh/xmfan/180/base 2025-04-25T04:11:40.8832801Z * [new branch] gh/xmfan/180/head -> origin/gh/xmfan/180/head 2025-04-25T04:11:40.8833296Z * [new branch] gh/xmfan/180/orig -> origin/gh/xmfan/180/orig 2025-04-25T04:11:40.8833797Z * [new branch] gh/xmfan/187/base -> origin/gh/xmfan/187/base 2025-04-25T04:11:40.8834257Z * [new branch] gh/xmfan/187/head -> origin/gh/xmfan/187/head 2025-04-25T04:11:40.8834734Z * [new branch] gh/xmfan/187/orig -> origin/gh/xmfan/187/orig 2025-04-25T04:11:40.8835191Z * [new branch] gh/xmfan/193/base -> origin/gh/xmfan/193/base 2025-04-25T04:11:40.8835663Z * [new branch] gh/xmfan/193/head -> origin/gh/xmfan/193/head 2025-04-25T04:11:40.8836133Z * [new branch] gh/xmfan/193/orig -> origin/gh/xmfan/193/orig 2025-04-25T04:11:40.8836587Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-04-25T04:11:40.8837059Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-04-25T04:11:40.8837513Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-04-25T04:11:40.8837974Z * [new branch] gh/xmfan/200/base -> origin/gh/xmfan/200/base 2025-04-25T04:11:40.8838443Z * [new branch] gh/xmfan/200/head -> origin/gh/xmfan/200/head 2025-04-25T04:11:40.8838943Z * [new branch] gh/xmfan/200/orig -> origin/gh/xmfan/200/orig 2025-04-25T04:11:40.8839452Z * [new branch] gh/xmfan/201/base -> origin/gh/xmfan/201/base 2025-04-25T04:11:40.8839918Z * [new branch] gh/xmfan/201/head -> origin/gh/xmfan/201/head 2025-04-25T04:11:40.8840379Z * [new branch] gh/xmfan/201/orig -> origin/gh/xmfan/201/orig 2025-04-25T04:11:40.8840858Z * [new branch] gh/xmfan/202/base -> origin/gh/xmfan/202/base 2025-04-25T04:11:40.8841311Z * [new branch] gh/xmfan/202/head -> origin/gh/xmfan/202/head 2025-04-25T04:11:40.8841776Z * [new branch] gh/xmfan/202/orig -> origin/gh/xmfan/202/orig 2025-04-25T04:11:40.8842238Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-04-25T04:11:40.8842699Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-04-25T04:11:40.8843251Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-04-25T04:11:40.8843716Z * [new branch] gh/xmfan/209/base -> origin/gh/xmfan/209/base 2025-04-25T04:11:40.8844183Z * [new branch] gh/xmfan/209/head -> origin/gh/xmfan/209/head 2025-04-25T04:11:40.8844681Z * [new branch] gh/xmfan/209/orig -> origin/gh/xmfan/209/orig 2025-04-25T04:11:40.8845179Z * [new branch] gh/xmfan/212/base -> origin/gh/xmfan/212/base 2025-04-25T04:11:40.8845636Z * [new branch] gh/xmfan/212/head -> origin/gh/xmfan/212/head 2025-04-25T04:11:40.8846096Z * [new branch] gh/xmfan/212/orig -> origin/gh/xmfan/212/orig 2025-04-25T04:11:40.8846629Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-04-25T04:11:40.8847089Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-04-25T04:11:40.8847558Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-04-25T04:11:40.8848023Z * [new branch] gh/xmfan/214/base -> origin/gh/xmfan/214/base 2025-04-25T04:11:40.8848575Z * [new branch] gh/xmfan/214/head -> origin/gh/xmfan/214/head 2025-04-25T04:11:40.8849043Z * [new branch] gh/xmfan/214/orig -> origin/gh/xmfan/214/orig 2025-04-25T04:11:40.8849510Z * [new branch] gh/xmfan/215/base -> origin/gh/xmfan/215/base 2025-04-25T04:11:40.8849976Z * [new branch] gh/xmfan/215/head -> origin/gh/xmfan/215/head 2025-04-25T04:11:40.8850479Z * [new branch] gh/xmfan/215/orig -> origin/gh/xmfan/215/orig 2025-04-25T04:11:40.8850986Z * [new branch] gh/xmfan/216/base -> origin/gh/xmfan/216/base 2025-04-25T04:11:40.8851452Z * [new branch] gh/xmfan/216/head -> origin/gh/xmfan/216/head 2025-04-25T04:11:40.8851916Z * [new branch] gh/xmfan/216/orig -> origin/gh/xmfan/216/orig 2025-04-25T04:11:40.8852379Z * [new branch] gh/xmfan/217/base -> origin/gh/xmfan/217/base 2025-04-25T04:11:40.8852842Z * [new branch] gh/xmfan/217/head -> origin/gh/xmfan/217/head 2025-04-25T04:11:40.9279106Z * [new branch] gh/xmfan/217/orig -> origin/gh/xmfan/217/orig 2025-04-25T04:11:40.9279633Z * [new branch] gh/xmfan/218/base -> origin/gh/xmfan/218/base 2025-04-25T04:11:40.9280113Z * [new branch] gh/xmfan/218/head -> origin/gh/xmfan/218/head 2025-04-25T04:11:40.9280608Z * [new branch] gh/xmfan/218/orig -> origin/gh/xmfan/218/orig 2025-04-25T04:11:40.9281072Z * [new branch] gh/xmfan/219/base -> origin/gh/xmfan/219/base 2025-04-25T04:11:40.9281538Z * [new branch] gh/xmfan/219/head -> origin/gh/xmfan/219/head 2025-04-25T04:11:40.9282020Z * [new branch] gh/xmfan/219/orig -> origin/gh/xmfan/219/orig 2025-04-25T04:11:40.9282474Z * [new branch] gh/xmfan/220/base -> origin/gh/xmfan/220/base 2025-04-25T04:11:40.9282947Z * [new branch] gh/xmfan/220/head -> origin/gh/xmfan/220/head 2025-04-25T04:11:40.9283401Z * [new branch] gh/xmfan/220/orig -> origin/gh/xmfan/220/orig 2025-04-25T04:11:40.9283869Z * [new branch] gh/xmfan/221/base -> origin/gh/xmfan/221/base 2025-04-25T04:11:40.9284366Z * [new branch] gh/xmfan/221/head -> origin/gh/xmfan/221/head 2025-04-25T04:11:40.9284860Z * [new branch] gh/xmfan/221/orig -> origin/gh/xmfan/221/orig 2025-04-25T04:11:40.9285331Z * [new branch] gh/xmfan/222/base -> origin/gh/xmfan/222/base 2025-04-25T04:11:40.9285784Z * [new branch] gh/xmfan/222/head -> origin/gh/xmfan/222/head 2025-04-25T04:11:40.9286461Z * [new branch] gh/xmfan/222/orig -> origin/gh/xmfan/222/orig 2025-04-25T04:11:40.9286918Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-04-25T04:11:40.9287387Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-04-25T04:11:40.9287853Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-04-25T04:11:40.9288318Z * [new branch] gh/xmfan/224/base -> origin/gh/xmfan/224/base 2025-04-25T04:11:40.9288776Z * [new branch] gh/xmfan/224/head -> origin/gh/xmfan/224/head 2025-04-25T04:11:40.9289232Z * [new branch] gh/xmfan/224/orig -> origin/gh/xmfan/224/orig 2025-04-25T04:11:40.9289696Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-04-25T04:11:40.9290219Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-04-25T04:11:40.9290717Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-04-25T04:11:40.9291185Z * [new branch] gh/xmfan/226/base -> origin/gh/xmfan/226/base 2025-04-25T04:11:40.9291728Z * [new branch] gh/xmfan/226/head -> origin/gh/xmfan/226/head 2025-04-25T04:11:40.9292202Z * [new branch] gh/xmfan/226/orig -> origin/gh/xmfan/226/orig 2025-04-25T04:11:40.9292670Z * [new branch] gh/xmfan/227/base -> origin/gh/xmfan/227/base 2025-04-25T04:11:40.9293138Z * [new branch] gh/xmfan/227/head -> origin/gh/xmfan/227/head 2025-04-25T04:11:40.9293602Z * [new branch] gh/xmfan/227/orig -> origin/gh/xmfan/227/orig 2025-04-25T04:11:40.9294062Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-04-25T04:11:40.9294542Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-04-25T04:11:40.9295004Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-04-25T04:11:40.9295561Z * [new branch] gh/xuanzhang816/11/base -> origin/gh/xuanzhang816/11/base 2025-04-25T04:11:40.9296140Z * [new branch] gh/xuanzhang816/11/head -> origin/gh/xuanzhang816/11/head 2025-04-25T04:11:40.9296666Z * [new branch] gh/xuanzhang816/11/orig -> origin/gh/xuanzhang816/11/orig 2025-04-25T04:11:40.9297193Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-04-25T04:11:40.9297709Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-04-25T04:11:40.9298238Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-04-25T04:11:40.9298750Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-04-25T04:11:40.9299229Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-04-25T04:11:40.9299701Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-04-25T04:11:40.9300171Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-04-25T04:11:40.9300644Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-04-25T04:11:40.9301115Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-04-25T04:11:40.9301613Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-04-25T04:11:41.0557992Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-04-25T04:11:41.0558534Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-04-25T04:11:41.0559011Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-04-25T04:11:41.0559661Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-04-25T04:11:41.0560134Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-04-25T04:11:41.0560623Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-04-25T04:11:41.0561113Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-04-25T04:11:41.0561600Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-04-25T04:11:41.0562094Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-04-25T04:11:41.0562588Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-04-25T04:11:41.0563079Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-04-25T04:11:41.0563558Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-04-25T04:11:41.0564045Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-04-25T04:11:41.0564533Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-04-25T04:11:41.0565124Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-04-25T04:11:41.0565602Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-04-25T04:11:41.0566093Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-04-25T04:11:41.0566740Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-04-25T04:11:41.0567239Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-04-25T04:11:41.0567741Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-04-25T04:11:41.0568226Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-04-25T04:11:41.0568712Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-04-25T04:11:41.0569196Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-04-25T04:11:41.0569693Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-04-25T04:11:41.0570176Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-04-25T04:11:41.0570655Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-04-25T04:11:41.0571151Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-04-25T04:11:41.0571628Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-04-25T04:11:41.0572120Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-04-25T04:11:41.0572613Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-04-25T04:11:41.0573090Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-04-25T04:11:41.0573584Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-04-25T04:11:41.0574069Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-04-25T04:11:41.0574554Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-04-25T04:11:41.0575038Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-04-25T04:11:41.0575524Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-04-25T04:11:41.0576017Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-04-25T04:11:41.0576498Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-04-25T04:11:41.0577089Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-04-25T04:11:41.0577571Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-04-25T04:11:41.0578068Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-04-25T04:11:41.0578566Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-04-25T04:11:41.0579048Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-04-25T04:11:41.0579538Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-04-25T04:11:41.0580017Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-04-25T04:11:41.0580509Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-04-25T04:11:41.0581003Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-04-25T04:11:41.1013199Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-04-25T04:11:41.1013920Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-04-25T04:11:41.1014419Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-04-25T04:11:41.1014926Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-04-25T04:11:41.1015423Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-04-25T04:11:41.1015907Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-04-25T04:11:41.1016402Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-04-25T04:11:41.1016888Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-04-25T04:11:41.1017394Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-04-25T04:11:41.1017876Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-04-25T04:11:41.1018453Z * [new branch] gh/yanboliang/62/base -> origin/gh/yanboliang/62/base 2025-04-25T04:11:41.1019002Z * [new branch] gh/yanboliang/62/head -> origin/gh/yanboliang/62/head 2025-04-25T04:11:41.1019501Z * [new branch] gh/yanboliang/62/orig -> origin/gh/yanboliang/62/orig 2025-04-25T04:11:41.1019991Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-04-25T04:11:41.1020459Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-04-25T04:11:41.1020916Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-04-25T04:11:41.1021389Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-04-25T04:11:41.1021853Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-04-25T04:11:41.1022318Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-04-25T04:11:41.1022777Z * [new branch] gh/ydwu4/208/base -> origin/gh/ydwu4/208/base 2025-04-25T04:11:41.1023241Z * [new branch] gh/ydwu4/208/head -> origin/gh/ydwu4/208/head 2025-04-25T04:11:41.1023709Z * [new branch] gh/ydwu4/208/orig -> origin/gh/ydwu4/208/orig 2025-04-25T04:11:41.1024211Z * [new branch] gh/ydwu4/219/base -> origin/gh/ydwu4/219/base 2025-04-25T04:11:41.1024746Z * [new branch] gh/ydwu4/219/head -> origin/gh/ydwu4/219/head 2025-04-25T04:11:41.1025199Z * [new branch] gh/ydwu4/219/orig -> origin/gh/ydwu4/219/orig 2025-04-25T04:11:41.1025661Z * [new branch] gh/ydwu4/222/base -> origin/gh/ydwu4/222/base 2025-04-25T04:11:41.1026230Z * [new branch] gh/ydwu4/222/head -> origin/gh/ydwu4/222/head 2025-04-25T04:11:41.1026688Z * [new branch] gh/ydwu4/222/orig -> origin/gh/ydwu4/222/orig 2025-04-25T04:11:41.1027179Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-04-25T04:11:41.1027635Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-04-25T04:11:41.1028102Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-04-25T04:11:41.1028569Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-04-25T04:11:41.1029027Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-04-25T04:11:41.1029491Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-04-25T04:11:41.1029983Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-04-25T04:11:41.1030526Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-04-25T04:11:41.1030983Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-04-25T04:11:41.1031524Z * [new branch] gh/ydwu4/226/base -> origin/gh/ydwu4/226/base 2025-04-25T04:11:41.1031991Z * [new branch] gh/ydwu4/226/head -> origin/gh/ydwu4/226/head 2025-04-25T04:11:41.1032444Z * [new branch] gh/ydwu4/226/orig -> origin/gh/ydwu4/226/orig 2025-04-25T04:11:41.1032924Z * [new branch] gh/ydwu4/227/base -> origin/gh/ydwu4/227/base 2025-04-25T04:11:41.1033379Z * [new branch] gh/ydwu4/227/head -> origin/gh/ydwu4/227/head 2025-04-25T04:11:41.1033853Z * [new branch] gh/ydwu4/227/orig -> origin/gh/ydwu4/227/orig 2025-04-25T04:11:41.1034317Z * [new branch] gh/ydwu4/228/base -> origin/gh/ydwu4/228/base 2025-04-25T04:11:41.1034774Z * [new branch] gh/ydwu4/228/head -> origin/gh/ydwu4/228/head 2025-04-25T04:11:41.1035237Z * [new branch] gh/ydwu4/228/orig -> origin/gh/ydwu4/228/orig 2025-04-25T04:11:41.1035696Z * [new branch] gh/ydwu4/229/base -> origin/gh/ydwu4/229/base 2025-04-25T04:11:41.1036163Z * [new branch] gh/ydwu4/229/head -> origin/gh/ydwu4/229/head 2025-04-25T04:11:41.1458254Z * [new branch] gh/ydwu4/229/orig -> origin/gh/ydwu4/229/orig 2025-04-25T04:11:41.1458770Z * [new branch] gh/ydwu4/230/base -> origin/gh/ydwu4/230/base 2025-04-25T04:11:41.1459245Z * [new branch] gh/ydwu4/230/head -> origin/gh/ydwu4/230/head 2025-04-25T04:11:41.1459722Z * [new branch] gh/ydwu4/230/orig -> origin/gh/ydwu4/230/orig 2025-04-25T04:11:41.1460173Z * [new branch] gh/ydwu4/231/base -> origin/gh/ydwu4/231/base 2025-04-25T04:11:41.1460653Z * [new branch] gh/ydwu4/231/head -> origin/gh/ydwu4/231/head 2025-04-25T04:11:41.1461111Z * [new branch] gh/ydwu4/231/orig -> origin/gh/ydwu4/231/orig 2025-04-25T04:11:41.1461580Z * [new branch] gh/ydwu4/232/base -> origin/gh/ydwu4/232/base 2025-04-25T04:11:41.1462081Z * [new branch] gh/ydwu4/232/head -> origin/gh/ydwu4/232/head 2025-04-25T04:11:41.1462582Z * [new branch] gh/ydwu4/232/orig -> origin/gh/ydwu4/232/orig 2025-04-25T04:11:41.1463041Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-04-25T04:11:41.1463505Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-04-25T04:11:41.1463966Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-04-25T04:11:41.1464562Z * [new branch] gh/ydwu4/234/base -> origin/gh/ydwu4/234/base 2025-04-25T04:11:41.1465026Z * [new branch] gh/ydwu4/234/head -> origin/gh/ydwu4/234/head 2025-04-25T04:11:41.1465503Z * [new branch] gh/ydwu4/234/orig -> origin/gh/ydwu4/234/orig 2025-04-25T04:11:41.1465954Z * [new branch] gh/ydwu4/235/base -> origin/gh/ydwu4/235/base 2025-04-25T04:11:41.1466420Z * [new branch] gh/ydwu4/235/head -> origin/gh/ydwu4/235/head 2025-04-25T04:11:41.1466875Z * [new branch] gh/ydwu4/235/orig -> origin/gh/ydwu4/235/orig 2025-04-25T04:11:41.1467334Z * [new branch] gh/ydwu4/236/base -> origin/gh/ydwu4/236/base 2025-04-25T04:11:41.1467837Z * [new branch] gh/ydwu4/236/head -> origin/gh/ydwu4/236/head 2025-04-25T04:11:41.1468333Z * [new branch] gh/ydwu4/236/orig -> origin/gh/ydwu4/236/orig 2025-04-25T04:11:41.1468803Z * [new branch] gh/ydwu4/237/base -> origin/gh/ydwu4/237/base 2025-04-25T04:11:41.1469256Z * [new branch] gh/ydwu4/237/head -> origin/gh/ydwu4/237/head 2025-04-25T04:11:41.1469813Z * [new branch] gh/ydwu4/237/orig -> origin/gh/ydwu4/237/orig 2025-04-25T04:11:41.1470262Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-04-25T04:11:41.1470726Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-04-25T04:11:41.1471204Z * [new branch] gh/yf225/164/base -> origin/gh/yf225/164/base 2025-04-25T04:11:41.1471652Z * [new branch] gh/yf225/164/head -> origin/gh/yf225/164/head 2025-04-25T04:11:41.1472118Z * [new branch] gh/yf225/164/orig -> origin/gh/yf225/164/orig 2025-04-25T04:11:41.1472569Z * [new branch] gh/yf225/165/base -> origin/gh/yf225/165/base 2025-04-25T04:11:41.1473030Z * [new branch] gh/yf225/165/head -> origin/gh/yf225/165/head 2025-04-25T04:11:41.1473528Z * [new branch] gh/yf225/165/orig -> origin/gh/yf225/165/orig 2025-04-25T04:11:41.1474019Z * [new branch] gh/yf225/166/base -> origin/gh/yf225/166/base 2025-04-25T04:11:41.1474477Z * [new branch] gh/yf225/166/head -> origin/gh/yf225/166/head 2025-04-25T04:11:41.1474928Z * [new branch] gh/yf225/166/orig -> origin/gh/yf225/166/orig 2025-04-25T04:11:41.1475386Z * [new branch] gh/yf225/167/base -> origin/gh/yf225/167/base 2025-04-25T04:11:41.1475850Z * [new branch] gh/yf225/167/head -> origin/gh/yf225/167/head 2025-04-25T04:11:41.1476301Z * [new branch] gh/yf225/167/orig -> origin/gh/yf225/167/orig 2025-04-25T04:11:41.1476759Z * [new branch] gh/yf225/168/base -> origin/gh/yf225/168/base 2025-04-25T04:11:41.1477210Z * [new branch] gh/yf225/168/head -> origin/gh/yf225/168/head 2025-04-25T04:11:41.1477666Z * [new branch] gh/yf225/168/orig -> origin/gh/yf225/168/orig 2025-04-25T04:11:41.1478121Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-04-25T04:11:41.1478579Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-04-25T04:11:41.1479095Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-04-25T04:11:41.1479625Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-04-25T04:11:41.1480126Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-04-25T04:11:41.1480618Z * [new branch] gh/yifuwang/185/base -> origin/gh/yifuwang/185/base 2025-04-25T04:11:41.1901653Z * [new branch] gh/yifuwang/185/head -> origin/gh/yifuwang/185/head 2025-04-25T04:11:41.1902750Z * [new branch] gh/yifuwang/185/orig -> origin/gh/yifuwang/185/orig 2025-04-25T04:11:41.1903246Z * [new branch] gh/yifuwang/186/base -> origin/gh/yifuwang/186/base 2025-04-25T04:11:41.1903753Z * [new branch] gh/yifuwang/186/head -> origin/gh/yifuwang/186/head 2025-04-25T04:11:41.1904247Z * [new branch] gh/yifuwang/186/orig -> origin/gh/yifuwang/186/orig 2025-04-25T04:11:41.1904731Z * [new branch] gh/yifuwang/187/base -> origin/gh/yifuwang/187/base 2025-04-25T04:11:41.1905220Z * [new branch] gh/yifuwang/187/head -> origin/gh/yifuwang/187/head 2025-04-25T04:11:41.1905711Z * [new branch] gh/yifuwang/187/orig -> origin/gh/yifuwang/187/orig 2025-04-25T04:11:41.1906204Z * [new branch] gh/yifuwang/188/base -> origin/gh/yifuwang/188/base 2025-04-25T04:11:41.1906695Z * [new branch] gh/yifuwang/188/head -> origin/gh/yifuwang/188/head 2025-04-25T04:11:41.1907187Z * [new branch] gh/yifuwang/188/orig -> origin/gh/yifuwang/188/orig 2025-04-25T04:11:41.1907679Z * [new branch] gh/yifuwang/189/base -> origin/gh/yifuwang/189/base 2025-04-25T04:11:41.1908625Z * [new branch] gh/yifuwang/189/head -> origin/gh/yifuwang/189/head 2025-04-25T04:11:41.1909125Z * [new branch] gh/yifuwang/189/orig -> origin/gh/yifuwang/189/orig 2025-04-25T04:11:41.1909615Z * [new branch] gh/yifuwang/190/base -> origin/gh/yifuwang/190/base 2025-04-25T04:11:41.1910119Z * [new branch] gh/yifuwang/190/head -> origin/gh/yifuwang/190/head 2025-04-25T04:11:41.1910620Z * [new branch] gh/yifuwang/190/orig -> origin/gh/yifuwang/190/orig 2025-04-25T04:11:41.1911103Z * [new branch] gh/yifuwang/191/base -> origin/gh/yifuwang/191/base 2025-04-25T04:11:41.1911607Z * [new branch] gh/yifuwang/191/head -> origin/gh/yifuwang/191/head 2025-04-25T04:11:41.1912091Z * [new branch] gh/yifuwang/191/orig -> origin/gh/yifuwang/191/orig 2025-04-25T04:11:41.1912592Z * [new branch] gh/yifuwang/192/base -> origin/gh/yifuwang/192/base 2025-04-25T04:11:41.1913084Z * [new branch] gh/yifuwang/192/head -> origin/gh/yifuwang/192/head 2025-04-25T04:11:41.1913571Z * [new branch] gh/yifuwang/192/orig -> origin/gh/yifuwang/192/orig 2025-04-25T04:11:41.1914068Z * [new branch] gh/yifuwang/194/base -> origin/gh/yifuwang/194/base 2025-04-25T04:11:41.1914554Z * [new branch] gh/yifuwang/194/head -> origin/gh/yifuwang/194/head 2025-04-25T04:11:41.1915059Z * [new branch] gh/yifuwang/194/orig -> origin/gh/yifuwang/194/orig 2025-04-25T04:11:41.1915556Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-04-25T04:11:41.1916051Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-04-25T04:11:41.1916541Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-04-25T04:11:41.1917032Z * [new branch] gh/yifuwang/196/base -> origin/gh/yifuwang/196/base 2025-04-25T04:11:41.1917529Z * [new branch] gh/yifuwang/196/head -> origin/gh/yifuwang/196/head 2025-04-25T04:11:41.1918014Z * [new branch] gh/yifuwang/196/orig -> origin/gh/yifuwang/196/orig 2025-04-25T04:11:41.1918515Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-04-25T04:11:41.1919016Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-04-25T04:11:41.1919501Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-04-25T04:11:41.1919989Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-04-25T04:11:41.1920571Z * [new branch] gh/ysiraichi/78/base -> origin/gh/ysiraichi/78/base 2025-04-25T04:11:41.1921079Z * [new branch] gh/ysiraichi/78/head -> origin/gh/ysiraichi/78/head 2025-04-25T04:11:41.1921586Z * [new branch] gh/ysiraichi/78/orig -> origin/gh/ysiraichi/78/orig 2025-04-25T04:11:41.1922085Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-04-25T04:11:41.1922591Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-04-25T04:11:41.1923090Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-04-25T04:11:41.1923592Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-04-25T04:11:41.1924090Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-04-25T04:11:41.1924695Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-04-25T04:11:41.1925202Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-04-25T04:11:41.2348647Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-04-25T04:11:41.2349165Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-04-25T04:11:41.2349670Z * [new branch] gh/ysiraichi/82/base -> origin/gh/ysiraichi/82/base 2025-04-25T04:11:41.2350164Z * [new branch] gh/ysiraichi/82/head -> origin/gh/ysiraichi/82/head 2025-04-25T04:11:41.2350674Z * [new branch] gh/ysiraichi/82/orig -> origin/gh/ysiraichi/82/orig 2025-04-25T04:11:41.2351162Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-04-25T04:11:41.2351663Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-04-25T04:11:41.2352165Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-04-25T04:11:41.2352699Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-04-25T04:11:41.2353248Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-04-25T04:11:41.2353739Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-04-25T04:11:41.2354265Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-04-25T04:11:41.2354770Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-04-25T04:11:41.2355257Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-04-25T04:11:41.2355759Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-04-25T04:11:41.2356246Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-04-25T04:11:41.2356748Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-04-25T04:11:41.2357233Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-04-25T04:11:41.2357712Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-04-25T04:11:41.2358210Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-04-25T04:11:41.2358717Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-04-25T04:11:41.2359187Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-04-25T04:11:41.2359645Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-04-25T04:11:41.2360124Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-04-25T04:11:41.2360614Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-04-25T04:11:41.2361195Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-04-25T04:11:41.2361702Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-04-25T04:11:41.2362196Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-04-25T04:11:41.2362700Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-04-25T04:11:41.2363200Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-04-25T04:11:41.2363722Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-04-25T04:11:41.2364250Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-04-25T04:11:41.2364741Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-04-25T04:11:41.2365250Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-04-25T04:11:41.2365754Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-04-25T04:11:41.2366368Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-04-25T04:11:41.2366876Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-04-25T04:11:41.2367376Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-04-25T04:11:41.2367881Z * [new branch] gh/zhxchen17/1/base -> origin/gh/zhxchen17/1/base 2025-04-25T04:11:41.2368375Z * [new branch] gh/zhxchen17/1/head -> origin/gh/zhxchen17/1/head 2025-04-25T04:11:41.2368867Z * [new branch] gh/zhxchen17/1/orig -> origin/gh/zhxchen17/1/orig 2025-04-25T04:11:41.2369392Z * [new branch] gh/zhxchen17/2/base -> origin/gh/zhxchen17/2/base 2025-04-25T04:11:41.2369917Z * [new branch] gh/zhxchen17/2/head -> origin/gh/zhxchen17/2/head 2025-04-25T04:11:41.2370414Z * [new branch] gh/zhxchen17/2/orig -> origin/gh/zhxchen17/2/orig 2025-04-25T04:11:41.2370904Z * [new branch] gh/zhxchen17/3/base -> origin/gh/zhxchen17/3/base 2025-04-25T04:11:41.2371387Z * [new branch] gh/zhxchen17/3/head -> origin/gh/zhxchen17/3/head 2025-04-25T04:11:41.2371884Z * [new branch] gh/zhxchen17/3/orig -> origin/gh/zhxchen17/3/orig 2025-04-25T04:11:41.2797921Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-04-25T04:11:41.2798444Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-04-25T04:11:41.2798934Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-04-25T04:11:41.2799392Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-04-25T04:11:41.2799872Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-04-25T04:11:41.2800377Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-04-25T04:11:41.2800848Z * [new branch] gh/zklaus/3/base -> origin/gh/zklaus/3/base 2025-04-25T04:11:41.2801358Z * [new branch] gh/zklaus/3/head -> origin/gh/zklaus/3/head 2025-04-25T04:11:41.2801810Z * [new branch] gh/zklaus/3/orig -> origin/gh/zklaus/3/orig 2025-04-25T04:11:41.2802272Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-04-25T04:11:41.2802720Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-04-25T04:11:41.2803173Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-04-25T04:11:41.2803651Z * [new branch] gh/zou3519/1140/base -> origin/gh/zou3519/1140/base 2025-04-25T04:11:41.2804281Z * [new branch] gh/zou3519/1140/head -> origin/gh/zou3519/1140/head 2025-04-25T04:11:41.2804786Z * [new branch] gh/zou3519/1140/orig -> origin/gh/zou3519/1140/orig 2025-04-25T04:11:41.2805265Z * [new branch] gh/zou3519/1141/base -> origin/gh/zou3519/1141/base 2025-04-25T04:11:41.2805744Z * [new branch] gh/zou3519/1141/head -> origin/gh/zou3519/1141/head 2025-04-25T04:11:41.2806231Z * [new branch] gh/zou3519/1141/orig -> origin/gh/zou3519/1141/orig 2025-04-25T04:11:41.2806837Z * [new branch] gh/zou3519/1142/base -> origin/gh/zou3519/1142/base 2025-04-25T04:11:41.2807316Z * [new branch] gh/zou3519/1142/head -> origin/gh/zou3519/1142/head 2025-04-25T04:11:41.2807785Z * [new branch] gh/zou3519/1142/orig -> origin/gh/zou3519/1142/orig 2025-04-25T04:11:41.2808280Z * [new branch] gh/zou3519/1143/base -> origin/gh/zou3519/1143/base 2025-04-25T04:11:41.2808747Z * [new branch] gh/zou3519/1143/head -> origin/gh/zou3519/1143/head 2025-04-25T04:11:41.2809333Z * [new branch] gh/zou3519/1143/orig -> origin/gh/zou3519/1143/orig 2025-04-25T04:11:41.2809832Z * [new branch] gh/zou3519/1144/base -> origin/gh/zou3519/1144/base 2025-04-25T04:11:41.2810302Z * [new branch] gh/zou3519/1144/head -> origin/gh/zou3519/1144/head 2025-04-25T04:11:41.2810781Z * [new branch] gh/zou3519/1144/orig -> origin/gh/zou3519/1144/orig 2025-04-25T04:11:41.2811250Z * [new branch] gh/zou3519/1145/base -> origin/gh/zou3519/1145/base 2025-04-25T04:11:41.2811729Z * [new branch] gh/zou3519/1145/head -> origin/gh/zou3519/1145/head 2025-04-25T04:11:41.2812250Z * [new branch] gh/zou3519/1145/orig -> origin/gh/zou3519/1145/orig 2025-04-25T04:11:41.2812771Z * [new branch] gh/zou3519/1148/base -> origin/gh/zou3519/1148/base 2025-04-25T04:11:41.2813252Z * [new branch] gh/zou3519/1148/head -> origin/gh/zou3519/1148/head 2025-04-25T04:11:41.2813724Z * [new branch] gh/zou3519/1149/base -> origin/gh/zou3519/1149/base 2025-04-25T04:11:41.2814214Z * [new branch] gh/zou3519/1149/head -> origin/gh/zou3519/1149/head 2025-04-25T04:11:41.2814687Z * [new branch] gh/zou3519/1149/orig -> origin/gh/zou3519/1149/orig 2025-04-25T04:11:41.2815158Z * [new branch] gh/zou3519/1150/base -> origin/gh/zou3519/1150/base 2025-04-25T04:11:41.2815636Z * [new branch] gh/zou3519/1150/head -> origin/gh/zou3519/1150/head 2025-04-25T04:11:41.2816114Z * [new branch] gh/zou3519/1150/orig -> origin/gh/zou3519/1150/orig 2025-04-25T04:11:41.2816594Z * [new branch] gh/zou3519/1151/base -> origin/gh/zou3519/1151/base 2025-04-25T04:11:41.2817068Z * [new branch] gh/zou3519/1151/head -> origin/gh/zou3519/1151/head 2025-04-25T04:11:41.2817549Z * [new branch] gh/zou3519/1151/orig -> origin/gh/zou3519/1151/orig 2025-04-25T04:11:41.2818112Z * [new branch] gh/zou3519/1152/base -> origin/gh/zou3519/1152/base 2025-04-25T04:11:41.2818579Z * [new branch] gh/zou3519/1152/head -> origin/gh/zou3519/1152/head 2025-04-25T04:11:41.2819060Z * [new branch] gh/zou3519/1152/orig -> origin/gh/zou3519/1152/orig 2025-04-25T04:11:41.2819530Z * [new branch] gh/zou3519/1153/base -> origin/gh/zou3519/1153/base 2025-04-25T04:11:41.2820014Z * [new branch] gh/zou3519/1153/head -> origin/gh/zou3519/1153/head 2025-04-25T04:11:41.2820491Z * [new branch] gh/zou3519/1153/orig -> origin/gh/zou3519/1153/orig 2025-04-25T04:11:41.3235303Z * [new branch] gh/zou3519/1154/base -> origin/gh/zou3519/1154/base 2025-04-25T04:11:41.3235983Z * [new branch] gh/zou3519/1154/head -> origin/gh/zou3519/1154/head 2025-04-25T04:11:41.3236496Z * [new branch] gh/zou3519/1154/orig -> origin/gh/zou3519/1154/orig 2025-04-25T04:11:41.3236994Z * [new branch] gh/zou3519/1155/base -> origin/gh/zou3519/1155/base 2025-04-25T04:11:41.3237490Z * [new branch] gh/zou3519/1155/head -> origin/gh/zou3519/1155/head 2025-04-25T04:11:41.3237966Z * [new branch] gh/zou3519/1155/orig -> origin/gh/zou3519/1155/orig 2025-04-25T04:11:41.3239283Z * [new branch] gh/zou3519/1156/base -> origin/gh/zou3519/1156/base 2025-04-25T04:11:41.3239767Z * [new branch] gh/zou3519/1156/head -> origin/gh/zou3519/1156/head 2025-04-25T04:11:41.3240260Z * [new branch] gh/zou3519/1156/orig -> origin/gh/zou3519/1156/orig 2025-04-25T04:11:41.3240778Z * [new branch] gh/zou3519/1157/base -> origin/gh/zou3519/1157/base 2025-04-25T04:11:41.3241254Z * [new branch] gh/zou3519/1157/head -> origin/gh/zou3519/1157/head 2025-04-25T04:11:41.3241907Z * [new branch] gh/zou3519/1157/orig -> origin/gh/zou3519/1157/orig 2025-04-25T04:11:41.3242417Z * [new branch] gh/zou3519/1158/base -> origin/gh/zou3519/1158/base 2025-04-25T04:11:41.3242913Z * [new branch] gh/zou3519/1158/head -> origin/gh/zou3519/1158/head 2025-04-25T04:11:41.3243399Z * [new branch] gh/zou3519/1158/orig -> origin/gh/zou3519/1158/orig 2025-04-25T04:11:41.3244385Z * [new branch] gh/zou3519/1159/base -> origin/gh/zou3519/1159/base 2025-04-25T04:11:41.3245196Z * [new branch] gh/zou3519/1159/head -> origin/gh/zou3519/1159/head 2025-04-25T04:11:41.3245672Z * [new branch] gh/zou3519/1159/orig -> origin/gh/zou3519/1159/orig 2025-04-25T04:11:41.3246176Z * [new branch] gh/zou3519/1160/base -> origin/gh/zou3519/1160/base 2025-04-25T04:11:41.3246730Z * [new branch] gh/zou3519/1160/head -> origin/gh/zou3519/1160/head 2025-04-25T04:11:41.3247215Z * [new branch] gh/zou3519/1160/orig -> origin/gh/zou3519/1160/orig 2025-04-25T04:11:41.3247696Z * [new branch] gh/zou3519/1161/base -> origin/gh/zou3519/1161/base 2025-04-25T04:11:41.3248175Z * [new branch] gh/zou3519/1161/head -> origin/gh/zou3519/1161/head 2025-04-25T04:11:41.3248666Z * [new branch] gh/zou3519/1161/orig -> origin/gh/zou3519/1161/orig 2025-04-25T04:11:41.3249150Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-04-25T04:11:41.3250458Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-04-25T04:11:41.3250961Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-04-25T04:11:41.3251441Z * [new branch] gh/zou3519/1163/base -> origin/gh/zou3519/1163/base 2025-04-25T04:11:41.3251933Z * [new branch] gh/zou3519/1163/head -> origin/gh/zou3519/1163/head 2025-04-25T04:11:41.3252410Z * [new branch] gh/zou3519/1163/orig -> origin/gh/zou3519/1163/orig 2025-04-25T04:11:41.3252894Z * [new branch] gh/zou3519/754/base -> origin/gh/zou3519/754/base 2025-04-25T04:11:41.3253376Z * [new branch] gh/zou3519/754/head -> origin/gh/zou3519/754/head 2025-04-25T04:11:41.3253852Z * [new branch] gh/zou3519/754/orig -> origin/gh/zou3519/754/orig 2025-04-25T04:11:41.3254327Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-04-25T04:11:41.3254801Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-04-25T04:11:41.3256237Z * [new branch] google-main -> origin/google-main 2025-04-25T04:11:41.3256749Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-04-25T04:11:41.3257277Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-04-25T04:11:41.3257776Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-04-25T04:11:41.3258273Z * [new branch] guard_system -> origin/guard_system 2025-04-25T04:11:41.3258898Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-04-25T04:11:41.3259582Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-04-25T04:11:41.3260075Z * [new branch] hc_baseline -> origin/hc_baseline 2025-04-25T04:11:41.3260501Z * [new branch] hhh_rand -> origin/hhh_rand 2025-04-25T04:11:41.3261750Z * [new branch] hoy-update-wheel -> origin/hoy-update-wheel 2025-04-25T04:11:41.3262256Z * [new branch] hoy/autofdo/xblock -> origin/hoy/autofdo/xblock 2025-04-25T04:11:41.3262862Z * [new branch] hoy/autotune/nreg -> origin/hoy/autotune/nreg 2025-04-25T04:11:41.3664008Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-04-25T04:11:41.3664534Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-04-25T04:11:41.3665014Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-04-25T04:11:41.3665606Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-04-25T04:11:41.3666238Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-04-25T04:11:41.3666805Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-04-25T04:11:41.3667399Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-04-25T04:11:41.3667918Z * [new branch] improve_vec_log -> origin/improve_vec_log 2025-04-25T04:11:41.3669250Z * [new branch] inline -> origin/inline 2025-04-25T04:11:41.3669682Z * [new branch] inlining -> origin/inlining 2025-04-25T04:11:41.3670135Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-04-25T04:11:41.3670602Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-04-25T04:11:41.3671046Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-04-25T04:11:41.3671513Z * [new branch] ipiszy/fix -> origin/ipiszy/fix 2025-04-25T04:11:41.3671966Z * [new branch] ipiszy/fp8_test -> origin/ipiszy/fp8_test 2025-04-25T04:11:41.3672418Z * [new branch] ipiszy/mypy -> origin/ipiszy/mypy 2025-04-25T04:11:41.3672850Z * [new branch] issue#58739 -> origin/issue#58739 2025-04-25T04:11:41.3673286Z * [new branch] issue_150765_fix -> origin/issue_150765_fix 2025-04-25T04:11:41.3673849Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-04-25T04:11:41.3674380Z * [new branch] jack-reland -> origin/jack-reland 2025-04-25T04:11:41.3674969Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-04-25T04:11:41.3675657Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-04-25T04:11:41.3676297Z * [new branch] jeanschmidt/test-runners-queue -> origin/jeanschmidt/test-runners-queue 2025-04-25T04:11:41.3677103Z * [new branch] jeanschmidt/test_infra_250314 -> origin/jeanschmidt/test_infra_250314 2025-04-25T04:11:41.3677675Z * [new branch] justinchu/decomp-later -> origin/justinchu/decomp-later 2025-04-25T04:11:41.3678252Z * [new branch] justinchu/onnx-program-list -> origin/justinchu/onnx-program-list 2025-04-25T04:11:41.3678760Z * [new branch] jz/istft -> origin/jz/istft 2025-04-25T04:11:41.3679187Z * [new branch] kadeng/dev-1 -> origin/kadeng/dev-1 2025-04-25T04:11:41.3679853Z * [new branch] kadeng/inductor-backend/cutlass-evt-fusion-1 -> origin/kadeng/inductor-backend/cutlass-evt-fusion-1 2025-04-25T04:11:41.3680513Z * [new branch] kenjin/lambdas -> origin/kenjin/lambdas 2025-04-25T04:11:41.3680986Z * [new branch] kit1980-patch-2 -> origin/kit1980-patch-2 2025-04-25T04:11:41.3681554Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-04-25T04:11:41.3682206Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-04-25T04:11:41.3682901Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-04-25T04:11:41.3683404Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-04-25T04:11:41.3683926Z * [new branch] lucaskabela/fix_list_error -> origin/lucaskabela/fix_list_error 2025-04-25T04:11:41.3684591Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-04-25T04:11:41.3685318Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-04-25T04:11:41.3686016Z * [new branch] lucaskabela/unsqueeze_tensor_fix -> origin/lucaskabela/unsqueeze_tensor_fix 2025-04-25T04:11:41.3686610Z * [new branch] main -> origin/main 2025-04-25T04:11:41.3687038Z * [new branch] main_dev_hhh -> origin/main_dev_hhh 2025-04-25T04:11:41.3687505Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-04-25T04:11:41.3687983Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-04-25T04:11:41.3688464Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-04-25T04:11:41.3689870Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-04-25T04:11:41.3690348Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-04-25T04:11:41.4271776Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-04-25T04:11:41.4272308Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-04-25T04:11:41.4272825Z * [new branch] malfet-patch-17 -> origin/malfet-patch-17 2025-04-25T04:11:41.4273324Z * [new branch] malfet-patch-18 -> origin/malfet-patch-18 2025-04-25T04:11:41.4273791Z * [new branch] malfet-patch-19 -> origin/malfet-patch-19 2025-04-25T04:11:41.4274290Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-04-25T04:11:41.4274754Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-04-25T04:11:41.4275233Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-04-25T04:11:41.4275697Z * [new branch] malfet-patch-22 -> origin/malfet-patch-22 2025-04-25T04:11:41.4276180Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-04-25T04:11:41.4276654Z * [new branch] malfet-patch-24 -> origin/malfet-patch-24 2025-04-25T04:11:41.4277120Z * [new branch] malfet-patch-25 -> origin/malfet-patch-25 2025-04-25T04:11:41.4277744Z * [new branch] malfet-patch-26 -> origin/malfet-patch-26 2025-04-25T04:11:41.4278216Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-04-25T04:11:41.4278701Z * [new branch] malfet-patch-32 -> origin/malfet-patch-32 2025-04-25T04:11:41.4279195Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-04-25T04:11:41.4279649Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-04-25T04:11:41.4280117Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-04-25T04:11:41.4280572Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-04-25T04:11:41.4281033Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-04-25T04:11:41.4281564Z * [new branch] malfet/add-benchmark-func -> origin/malfet/add-benchmark-func 2025-04-25T04:11:41.4282112Z * [new branch] malfet/cp-150203-150294 -> origin/malfet/cp-150203-150294 2025-04-25T04:11:41.4282809Z * [new branch] malfet/cuda-do-not-vec128-on-12.6 -> origin/malfet/cuda-do-not-vec128-on-12.6 2025-04-25T04:11:41.4283425Z * [new branch] malfet/delete-find-openmp -> origin/malfet/delete-find-openmp 2025-04-25T04:11:41.4284007Z * [new branch] malfet/lets-revert-145746 -> origin/malfet/lets-revert-145746 2025-04-25T04:11:41.4284713Z * [new branch] malfet/make-pytorch-buildable-with-cmake-4 -> origin/malfet/make-pytorch-buildable-with-cmake-4 2025-04-25T04:11:41.4285463Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-04-25T04:11:41.4286114Z * [new branch] malfet/release-2.7-warn-prototype -> origin/malfet/release-2.7-warn-prototype 2025-04-25T04:11:41.4286802Z * [new branch] malfet/udpate-gloo -> origin/malfet/udpate-gloo 2025-04-25T04:11:41.4287340Z * [new branch] malfet/udpate-prr-regex -> origin/malfet/udpate-prr-regex 2025-04-25T04:11:41.4287836Z * [new branch] migrate_map -> origin/migrate_map 2025-04-25T04:11:41.4288370Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-04-25T04:11:41.4288911Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-04-25T04:11:41.4289372Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-04-25T04:11:41.4289856Z * [new branch] mlazos/adam-compiled -> origin/mlazos/adam-compiled 2025-04-25T04:11:41.4290381Z * [new branch] mlazos/adam-fused-bench -> origin/mlazos/adam-fused-bench 2025-04-25T04:11:41.4290922Z * [new branch] mlazos/adam-fused-bench2 -> origin/mlazos/adam-fused-bench2 2025-04-25T04:11:41.4291485Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-04-25T04:11:41.4292045Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-04-25T04:11:41.4292549Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-04-25T04:11:41.4293089Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-04-25T04:11:41.4293673Z * [new branch] mlazos/batch-fuse-opt -> origin/mlazos/batch-fuse-opt 2025-04-25T04:11:41.4294181Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-04-25T04:11:41.4294667Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-04-25T04:11:41.4295131Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-04-25T04:11:41.4295579Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-04-25T04:11:41.4296144Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-04-25T04:11:41.4956901Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-04-25T04:11:41.4957483Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-04-25T04:11:41.4957965Z * [new branch] mlazos/copy2 -> origin/mlazos/copy2 2025-04-25T04:11:41.4958434Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-04-25T04:11:41.4958957Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-04-25T04:11:41.4959552Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-04-25T04:11:41.4960119Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-04-25T04:11:41.4960616Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-04-25T04:11:41.4961112Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-04-25T04:11:41.4961588Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-04-25T04:11:41.4962269Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-04-25T04:11:41.4962907Z * [new branch] mlazos/disable-aa-config -> origin/mlazos/disable-aa-config 2025-04-25T04:11:41.4963464Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-04-25T04:11:41.4963984Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-04-25T04:11:41.4964478Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-04-25T04:11:41.4964936Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-04-25T04:11:41.4965401Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-04-25T04:11:41.4965873Z * [new branch] mlazos/faster -> origin/mlazos/faster 2025-04-25T04:11:41.4966373Z * [new branch] mlazos/faster2 -> origin/mlazos/faster2 2025-04-25T04:11:41.4966852Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-04-25T04:11:41.4967352Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-04-25T04:11:41.4967854Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-04-25T04:11:41.4968379Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-04-25T04:11:41.4968867Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-04-25T04:11:41.4969312Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-04-25T04:11:41.4969747Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-04-25T04:11:41.4970199Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-04-25T04:11:41.4970652Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-04-25T04:11:41.4971122Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-04-25T04:11:41.4971594Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-04-25T04:11:41.4972037Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-04-25T04:11:41.4972468Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-04-25T04:11:41.4972882Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-04-25T04:11:41.4973305Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-04-25T04:11:41.4973721Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-04-25T04:11:41.4974281Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-04-25T04:11:41.4974737Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-04-25T04:11:41.4975152Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-04-25T04:11:41.4975617Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-04-25T04:11:41.4976130Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-04-25T04:11:41.4976655Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-04-25T04:11:41.4977156Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-04-25T04:11:41.4977613Z * [new branch] mlazos/lint -> origin/mlazos/lint 2025-04-25T04:11:41.4978110Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-04-25T04:11:41.4978600Z * [new branch] mlazos/main -> origin/mlazos/main 2025-04-25T04:11:41.4979123Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-04-25T04:11:41.4979723Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-04-25T04:11:41.4980209Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-04-25T04:11:41.5405413Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-04-25T04:11:41.5405860Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-04-25T04:11:41.5406365Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-04-25T04:11:41.5406852Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-04-25T04:11:41.5407333Z * [new branch] mlazos/mlazos/clean -> origin/mlazos/mlazos/clean 2025-04-25T04:11:41.5407847Z * [new branch] mlazos/mlazos/faster2 -> origin/mlazos/mlazos/faster2 2025-04-25T04:11:41.5408429Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-04-25T04:11:41.5409041Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-04-25T04:11:41.5409630Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-04-25T04:11:41.5410181Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-04-25T04:11:41.5410672Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-04-25T04:11:41.5411210Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-04-25T04:11:41.5411684Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-04-25T04:11:41.5412226Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-04-25T04:11:41.5412809Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-04-25T04:11:41.5413340Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-04-25T04:11:41.5413842Z * [new branch] mlazos/opt-bench2 -> origin/mlazos/opt-bench2 2025-04-25T04:11:41.5414315Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-04-25T04:11:41.5414790Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-04-25T04:11:41.5415249Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-04-25T04:11:41.5415744Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-04-25T04:11:41.5416285Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-04-25T04:11:41.5416931Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-04-25T04:11:41.5417404Z * [new branch] mlazos/restart -> origin/mlazos/restart 2025-04-25T04:11:41.5417863Z * [new branch] mlazos/rm-old-tf -> origin/mlazos/rm-old-tf 2025-04-25T04:11:41.5418322Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-04-25T04:11:41.5418780Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-04-25T04:11:41.5419226Z * [new branch] mlazos/snt -> origin/mlazos/snt 2025-04-25T04:11:41.5419722Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-04-25T04:11:41.5420253Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-04-25T04:11:41.5420741Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-04-25T04:11:41.5421238Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-04-25T04:11:41.5421839Z * [new branch] mlazos/tensor-inherit-backup -> origin/mlazos/tensor-inherit-backup 2025-04-25T04:11:41.5422499Z * [new branch] mlazos/tensor-lr -> origin/mlazos/tensor-lr 2025-04-25T04:11:41.5422976Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-04-25T04:11:41.5423447Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-04-25T04:11:41.5423931Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-04-25T04:11:41.5424459Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-04-25T04:11:41.5424975Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-04-25T04:11:41.5425486Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-04-25T04:11:41.5426025Z * [new branch] mlazos/tf-subclass-stack -> origin/mlazos/tf-subclass-stack 2025-04-25T04:11:41.5426549Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-04-25T04:11:41.5427059Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-04-25T04:11:41.5427582Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-04-25T04:11:41.5428086Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-04-25T04:11:41.5428568Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-04-25T04:11:41.5429032Z * [new branch] moderniz29_cyy -> origin/moderniz29_cyy 2025-04-25T04:11:41.5429477Z * [new branch] move_unstash -> origin/move_unstash 2025-04-25T04:11:41.5875656Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-04-25T04:11:41.5876153Z * [new branch] mps_mm_decomp -> origin/mps_mm_decomp 2025-04-25T04:11:41.5876652Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-04-25T04:11:41.5877225Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-04-25T04:11:41.5877775Z * [new branch] msaroufim/noheader -> origin/msaroufim/noheader 2025-04-25T04:11:41.5878281Z * [new branch] msaroufim/warn_once -> origin/msaroufim/warn_once 2025-04-25T04:11:41.5878767Z * [new branch] my_fork_cherrypick -> origin/my_fork_cherrypick 2025-04-25T04:11:41.5879218Z * [new branch] mypy_fix -> origin/mypy_fix 2025-04-25T04:11:41.5879639Z * [new branch] myst_nb_trial -> origin/myst_nb_trial 2025-04-25T04:11:41.5880237Z * [new branch] nWEIdia-patch-1 -> origin/nWEIdia-patch-1 2025-04-25T04:11:41.5880777Z * [new branch] nestedfairseq2ops1 -> origin/nestedfairseq2ops1 2025-04-25T04:11:41.5881287Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-04-25T04:11:41.5881735Z * [new branch] ngimel/bits -> origin/ngimel/bits 2025-04-25T04:11:41.5882172Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-04-25T04:11:41.5882648Z * [new branch] ngimel/gather_perf -> origin/ngimel/gather_perf 2025-04-25T04:11:41.5883107Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-04-25T04:11:41.5883562Z * [new branch] ngimel/grouped_mm -> origin/ngimel/grouped_mm 2025-04-25T04:11:41.5884057Z * [new branch] ngimel/index_perf -> origin/ngimel/index_perf 2025-04-25T04:11:41.5884553Z * [new branch] ngimel/reduce_scatter -> origin/ngimel/reduce_scatter 2025-04-25T04:11:41.5885069Z * [new branch] ngimel/reland_gather -> origin/ngimel/reland_gather 2025-04-25T04:11:41.5885678Z * [new branch] ngimel/sym_mem_non_zero_copy -> origin/ngimel/sym_mem_non_zero_copy 2025-04-25T04:11:41.5886304Z * [new branch] ngimel/two_shot_symm_mem -> origin/ngimel/two_shot_symm_mem 2025-04-25T04:11:41.5886822Z * [new branch] nightly -> origin/nightly 2025-04-25T04:11:41.5887313Z * [new branch] nikitaved/solve_doc_update -> origin/nikitaved/solve_doc_update 2025-04-25T04:11:41.5887852Z * [new branch] nikitaved/tensordot -> origin/nikitaved/tensordot 2025-04-25T04:11:41.5888307Z * [new branch] offline -> origin/offline 2025-04-25T04:11:41.5888744Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-04-25T04:11:41.5889209Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-04-25T04:11:41.5889674Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-04-25T04:11:41.5890157Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-04-25T04:11:41.5890628Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-04-25T04:11:41.5891091Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-04-25T04:11:41.5891551Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-04-25T04:11:41.5892048Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-04-25T04:11:41.5892551Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-04-25T04:11:41.5893009Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-04-25T04:11:41.5893477Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-04-25T04:11:41.5893945Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-04-25T04:11:41.5894398Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-04-25T04:11:41.5894859Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-04-25T04:11:41.5895314Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-04-25T04:11:41.5895777Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-04-25T04:11:41.5896234Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-04-25T04:11:41.5896752Z * [new branch] origin/gh/stroxler/1/head -> origin/origin/gh/stroxler/1/head 2025-04-25T04:11:41.5897266Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-04-25T04:11:41.5897888Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-04-25T04:11:41.5898338Z * [new branch] outshape -> origin/outshape 2025-04-25T04:11:41.5898775Z * [new branch] padded-tensor -> origin/padded-tensor 2025-04-25T04:11:41.6282017Z * [new branch] parallel_cat -> origin/parallel_cat 2025-04-25T04:11:41.6282491Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-04-25T04:11:41.6282917Z * [new branch] pca2 -> origin/pca2 2025-04-25T04:11:41.6283363Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-04-25T04:11:41.6283882Z * [new branch] pianpwk/01_auto_warning -> origin/pianpwk/01_auto_warning 2025-04-25T04:11:41.6284444Z * [new branch] pianpwk/backed_oblivious_duck -> origin/pianpwk/backed_oblivious_duck 2025-04-25T04:11:41.6285107Z * [new branch] pianpwk/backed_size_oblivious_global -> origin/pianpwk/backed_size_oblivious_global 2025-04-25T04:11:41.6285820Z * [new branch] pianpwk/backed_symint_endofbounds -> origin/pianpwk/backed_symint_endofbounds 2025-04-25T04:11:41.6286607Z * [new branch] pianpwk/cse_bound_expr -> origin/pianpwk/cse_bound_expr 2025-04-25T04:11:41.6287199Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-04-25T04:11:41.6287787Z * [new branch] pianpwk/draft_strict_stack -> origin/pianpwk/draft_strict_stack 2025-04-25T04:11:41.6288354Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-04-25T04:11:41.6288908Z * [new branch] pianpwk/dynamo_export_ctx -> origin/pianpwk/dynamo_export_ctx 2025-04-25T04:11:41.6289493Z * [new branch] pianpwk/export_ds_partial_dict -> origin/pianpwk/export_ds_partial_dict 2025-04-25T04:11:41.6290080Z * [new branch] pianpwk/false_infer_size -> origin/pianpwk/false_infer_size 2025-04-25T04:11:41.6290610Z * [new branch] pianpwk/guard_or_false -> origin/pianpwk/guard_or_false 2025-04-25T04:11:41.6291151Z * [new branch] pianpwk/guard_or_false_cpp2 -> origin/pianpwk/guard_or_false_cpp2 2025-04-25T04:11:41.6291788Z * [new branch] pianpwk/inductor_unbacked_symint -> origin/pianpwk/inductor_unbacked_symint 2025-04-25T04:11:41.6292414Z * [new branch] pianpwk/input_hook_msg -> origin/pianpwk/input_hook_msg 2025-04-25T04:11:41.6292929Z * [new branch] pianpwk/kth_value_symint -> origin/pianpwk/kth_value_symint 2025-04-25T04:11:41.6293491Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-04-25T04:11:41.6294041Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-04-25T04:11:41.6294613Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-04-25T04:11:41.6295216Z * [new branch] pianpwk/oblivious_expand -> origin/pianpwk/oblivious_expand 2025-04-25T04:11:41.6295784Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-04-25T04:11:41.6296393Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-04-25T04:11:41.6297008Z * [new branch] pianpwk/oblivious_reshape_view -> origin/pianpwk/oblivious_reshape_view 2025-04-25T04:11:41.6297686Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-04-25T04:11:41.6298424Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-04-25T04:11:41.6299079Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-04-25T04:11:41.6299802Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-04-25T04:11:41.6300449Z * [new branch] pianpwk/oblivious_storagenbytes -> origin/pianpwk/oblivious_storagenbytes 2025-04-25T04:11:41.6301021Z * [new branch] pianpwk/pad_nd_meta -> origin/pianpwk/pad_nd_meta 2025-04-25T04:11:41.6301546Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-04-25T04:11:41.6302081Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-04-25T04:11:41.6302657Z * [new branch] pianpwk/should_swap_oblivious -> origin/pianpwk/should_swap_oblivious 2025-04-25T04:11:41.6303327Z * [new branch] pianpwk/size_oblivious_contiguous -> origin/pianpwk/size_oblivious_contiguous 2025-04-25T04:11:41.6303944Z * [new branch] pianpwk/skt_user_code -> origin/pianpwk/skt_user_code 2025-04-25T04:11:41.6304467Z * [new branch] pianpwk/strides_max_1 -> origin/pianpwk/strides_max_1 2025-04-25T04:11:41.6304959Z * [new branch] pianpwk/sym_and_or -> origin/pianpwk/sym_and_or 2025-04-25T04:11:41.6305593Z * [new branch] pianpwk/treat_sizes_as_size_like -> origin/pianpwk/treat_sizes_as_size_like 2025-04-25T04:11:41.6306226Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-04-25T04:11:41.6306762Z * [new branch] pin-new-theme -> origin/pin-new-theme 2025-04-25T04:11:41.6702648Z * [new branch] pr/131860 -> origin/pr/131860 2025-04-25T04:11:41.6703109Z * [new branch] pr150241 -> origin/pr150241 2025-04-25T04:11:41.6703622Z * [new branch] print_hostname_rocm_runners -> origin/print_hostname_rocm_runners 2025-04-25T04:11:41.6704131Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-04-25T04:11:41.6704662Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-04-25T04:11:41.6705176Z * [new branch] qat-conv-bn-1d -> origin/qat-conv-bn-1d 2025-04-25T04:11:41.6705680Z * [new branch] qat-remove-bias-temp -> origin/qat-remove-bias-temp 2025-04-25T04:11:41.6706203Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-04-25T04:11:41.6706683Z * [new branch] re-147027 -> origin/re-147027 2025-04-25T04:11:41.6707083Z * [new branch] readme -> origin/readme 2025-04-25T04:11:41.6707513Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-04-25T04:11:41.6707951Z * [new branch] release/1.10 -> origin/release/1.10 2025-04-25T04:11:41.6708382Z * [new branch] release/1.11 -> origin/release/1.11 2025-04-25T04:11:41.6708818Z * [new branch] release/1.12 -> origin/release/1.12 2025-04-25T04:11:41.6709234Z * [new branch] release/1.13 -> origin/release/1.13 2025-04-25T04:11:41.6709679Z * [new branch] release/1.4 -> origin/release/1.4 2025-04-25T04:11:41.6710100Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-04-25T04:11:41.6710534Z * [new branch] release/1.5 -> origin/release/1.5 2025-04-25T04:11:41.6710963Z * [new branch] release/1.6 -> origin/release/1.6 2025-04-25T04:11:41.6711387Z * [new branch] release/1.7 -> origin/release/1.7 2025-04-25T04:11:41.6711805Z * [new branch] release/1.8 -> origin/release/1.8 2025-04-25T04:11:41.6712217Z * [new branch] release/1.9 -> origin/release/1.9 2025-04-25T04:11:41.6712810Z * [new branch] release/2.0 -> origin/release/2.0 2025-04-25T04:11:41.6713240Z * [new branch] release/2.1 -> origin/release/2.1 2025-04-25T04:11:41.6713670Z * [new branch] release/2.2 -> origin/release/2.2 2025-04-25T04:11:41.6714107Z * [new branch] release/2.3 -> origin/release/2.3 2025-04-25T04:11:41.6714532Z * [new branch] release/2.4 -> origin/release/2.4 2025-04-25T04:11:41.6714965Z * [new branch] release/2.5 -> origin/release/2.5 2025-04-25T04:11:41.6715378Z * [new branch] release/2.6 -> origin/release/2.6 2025-04-25T04:11:41.6715795Z * [new branch] release/2.7 -> origin/release/2.7 2025-04-25T04:11:41.6716228Z * [new branch] release_notes -> origin/release_notes 2025-04-25T04:11:41.6716667Z * [new branch] remove_global_ns -> origin/remove_global_ns 2025-04-25T04:11:41.6717144Z * [new branch] remove_scaled_mm -> origin/remove_scaled_mm 2025-04-25T04:11:41.6717602Z * [new branch] requires_grad_fix -> origin/requires_grad_fix 2025-04-25T04:11:41.6718145Z * [new branch] revert-112125 -> origin/revert-112125 2025-04-25T04:11:41.6718780Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-04-25T04:11:41.6719512Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-04-25T04:11:41.6720361Z * [new branch] revert-150145-cherry-pick-149947-by-pytorch_bot_bot_ -> origin/revert-150145-cherry-pick-149947-by-pytorch_bot_bot_ 2025-04-25T04:11:41.6721128Z * [new branch] revert-150658-revert_blas -> origin/revert-150658-revert_blas 2025-04-25T04:11:41.6721910Z * [new branch] revert-150818-cherry-pick-150705-by-pytorch_bot_bot_ -> origin/revert-150818-cherry-pick-150705-by-pytorch_bot_bot_ 2025-04-25T04:11:41.6722651Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-04-25T04:11:41.6723124Z * [new branch] rocm_magma_tarball -> origin/rocm_magma_tarball 2025-04-25T04:11:41.6723621Z * [new branch] rocm_magma_tarball_part2 -> origin/rocm_magma_tarball_part2 2025-04-25T04:11:41.6724146Z * [new branch] rohan-varma-patch-15 -> origin/rohan-varma-patch-15 2025-04-25T04:11:41.6724677Z * [new branch] rohan-varma-patch-16 -> origin/rohan-varma-patch-16 2025-04-25T04:11:41.6725189Z * [new branch] rprop-playground -> origin/rprop-playground 2025-04-25T04:11:41.6725628Z * [new branch] rs-ac -> origin/rs-ac 2025-04-25T04:11:41.7140222Z * [new branch] run_inductor-rocm-mi300_on_release_branches -> origin/run_inductor-rocm-mi300_on_release_branches 2025-04-25T04:11:41.7141134Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-04-25T04:11:41.7141862Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-04-25T04:11:41.7142407Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-04-25T04:11:41.7142868Z * [new branch] rzou/fix -> origin/rzou/fix 2025-04-25T04:11:41.7143290Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-04-25T04:11:41.7143702Z * [new branch] rzou/njt -> origin/rzou/njt 2025-04-25T04:11:41.7144152Z * [new branch] rzou/operator -> origin/rzou/operator 2025-04-25T04:11:41.7144589Z * [new branch] rzou/pca -> origin/rzou/pca 2025-04-25T04:11:41.7145170Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-04-25T04:11:41.7145636Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-04-25T04:11:41.7146101Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-04-25T04:11:41.7146801Z * [new branch] sanchitintel/fix_woq_amx_microkernel_block_n_is_48 -> origin/sanchitintel/fix_woq_amx_microkernel_block_n_is_48 2025-04-25T04:11:41.7147751Z * [new branch] sanchitintel/gemm_template_avoid_malloc_lock_contention -> origin/sanchitintel/gemm_template_avoid_malloc_lock_contention 2025-04-25T04:11:41.7148579Z * [new branch] sanchitintel/modify_fp32_micro_gemm -> origin/sanchitintel/modify_fp32_micro_gemm 2025-04-25T04:11:41.7149299Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-04-25T04:11:41.7150171Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-04-25T04:11:41.7151092Z * [new branch] sanchitj/remove_duplicate_line_from_freezing.py -> origin/sanchitj/remove_duplicate_line_from_freezing.py 2025-04-25T04:11:41.7151902Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-04-25T04:11:41.7152389Z * [new branch] save -> origin/save 2025-04-25T04:11:41.7152818Z * [new branch] scatter-dim -> origin/scatter-dim 2025-04-25T04:11:41.7153251Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-04-25T04:11:41.7153707Z * [new branch] sdym/todo-docstring -> origin/sdym/todo-docstring 2025-04-25T04:11:41.7154195Z * [new branch] sdym/torchfix -> origin/sdym/torchfix 2025-04-25T04:11:41.7154661Z * [new branch] sdym/typed-storage -> origin/sdym/typed-storage 2025-04-25T04:11:41.7155172Z * [new branch] seemethere/s390x_2_7 -> origin/seemethere/s390x_2_7 2025-04-25T04:11:41.7155660Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-04-25T04:11:41.7156156Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-04-25T04:11:41.7156667Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-04-25T04:11:41.7157194Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-04-25T04:11:41.7157750Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-04-25T04:11:41.7158333Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-04-25T04:11:41.7158948Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-04-25T04:11:41.7159496Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-04-25T04:11:41.7160016Z * [new branch] speedup-mps-string-key -> origin/speedup-mps-string-key 2025-04-25T04:11:41.7160527Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-04-25T04:11:41.7161015Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-04-25T04:11:41.7161560Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-04-25T04:11:41.7162076Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-04-25T04:11:41.7162531Z * [new branch] stable-library -> origin/stable-library 2025-04-25T04:11:41.7162970Z * [new branch] stash_v -> origin/stash_v 2025-04-25T04:11:41.7163474Z * [new branch] subscribe_codeowners_lucasllc -> origin/subscribe_codeowners_lucasllc 2025-04-25T04:11:41.7164606Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-04-25T04:11:41.7165078Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-04-25T04:11:41.7515331Z * [new branch] svekars-patch-7 -> origin/svekars-patch-7 2025-04-25T04:11:41.7515806Z * [new branch] switch-bn -> origin/switch-bn 2025-04-25T04:11:41.7516274Z * [new branch] switch-to-new-theme -> origin/switch-to-new-theme 2025-04-25T04:11:41.7516811Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-04-25T04:11:41.7517300Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-04-25T04:11:41.7517742Z * [new branch] teja/dcp_poc -> origin/teja/dcp_poc 2025-04-25T04:11:41.7518179Z * [new branch] tensor_shelf -> origin/tensor_shelf 2025-04-25T04:11:41.7518665Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-04-25T04:11:41.7519270Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-04-25T04:11:41.7520401Z * [new branch] test-torchvision-install-ci -> origin/test-torchvision-install-ci 2025-04-25T04:11:41.7520938Z * [new branch] test/inductor -> origin/test/inductor 2025-04-25T04:11:41.7521424Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-04-25T04:11:41.7521944Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-04-25T04:11:41.7522489Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-04-25T04:11:41.7522982Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-04-25T04:11:41.7523443Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-04-25T04:11:41.7523945Z * [new branch] triton-cpu-arm-expriment -> origin/triton-cpu-arm-expriment 2025-04-25T04:11:41.7524490Z * [new branch] triton-update -> origin/triton-update 2025-04-25T04:11:41.7524976Z * [new branch] triton_kernel -> origin/triton_kernel 2025-04-25T04:11:41.7525436Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-04-25T04:11:41.7525896Z * [new branch] try-runllm -> origin/try-runllm 2025-04-25T04:11:41.7526421Z * [new branch] try-speedup-docbuild -> origin/try-speedup-docbuild 2025-04-25T04:11:41.7526897Z * [new branch] type_dec -> origin/type_dec 2025-04-25T04:11:41.7527527Z * [new branch] update-audio-commit-hash/14232193199-1523-1 -> origin/update-audio-commit-hash/14232193199-1523-1 2025-04-25T04:11:41.7528344Z * [new branch] update-audio-commit-hash/14543755404-1550-1 -> origin/update-audio-commit-hash/14543755404-1550-1 2025-04-25T04:11:41.7529157Z * [new branch] update-audio-commit-hash/14654232188-1560-1 -> origin/update-audio-commit-hash/14654232188-1560-1 2025-04-25T04:11:41.7529894Z * [new branch] update-doc-dependencies-local -> origin/update-doc-dependencies-local 2025-04-25T04:11:41.7530748Z * [new branch] update-executorch-commit-hash/13959284858-1506-1 -> origin/update-executorch-commit-hash/13959284858-1506-1 2025-04-25T04:11:41.7531660Z * [new branch] update-executorch-commit-hash/14013720981-1509-1 -> origin/update-executorch-commit-hash/14013720981-1509-1 2025-04-25T04:11:41.7532553Z * [new branch] update-executorch-commit-hash/14276381372-1527-1 -> origin/update-executorch-commit-hash/14276381372-1527-1 2025-04-25T04:11:41.7533455Z * [new branch] update-executorch-commit-hash/14434844604-1539-1 -> origin/update-executorch-commit-hash/14434844604-1539-1 2025-04-25T04:11:41.7534455Z * [new branch] update-executorch-commit-hash/14458474973-1540-1 -> origin/update-executorch-commit-hash/14458474973-1540-1 2025-04-25T04:11:41.7535360Z * [new branch] update-executorch-commit-hash/14505268217-1543-1 -> origin/update-executorch-commit-hash/14505268217-1543-1 2025-04-25T04:11:41.7536328Z * [new branch] update-executorch-commit-hash/14527153667-1549-1 -> origin/update-executorch-commit-hash/14527153667-1549-1 2025-04-25T04:11:41.7537236Z * [new branch] update-executorch-commit-hash/14543755404-1550-1 -> origin/update-executorch-commit-hash/14543755404-1550-1 2025-04-25T04:11:41.7538058Z * [new branch] update-inductor-perf-nightly-macos -> origin/update-inductor-perf-nightly-macos 2025-04-25T04:11:41.7538853Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-04-25T04:11:41.7539663Z * [new branch] update-vision-commit-hash/6634009725-750-1 -> origin/update-vision-commit-hash/6634009725-750-1 2025-04-25T04:11:41.7540461Z * [new branch] update-vision-commit-hash/6673463792-754-1 -> origin/update-vision-commit-hash/6673463792-754-1 2025-04-25T04:11:41.7541332Z * [new branch] update-vision-commit-hash/6700258936-758-1 -> origin/update-vision-commit-hash/6700258936-758-1 2025-04-25T04:11:41.7897778Z * [new branch] update-vision-commit-hash/6805589684-770-1 -> origin/update-vision-commit-hash/6805589684-770-1 2025-04-25T04:11:41.7898631Z * [new branch] update-vision-commit-hash/6818989957-773-1 -> origin/update-vision-commit-hash/6818989957-773-1 2025-04-25T04:11:41.7899432Z * [new branch] update-vision-commit-hash/6830864778-774-1 -> origin/update-vision-commit-hash/6830864778-774-1 2025-04-25T04:11:41.7900218Z * [new branch] update-vision-commit-hash/6857388096-777-1 -> origin/update-vision-commit-hash/6857388096-777-1 2025-04-25T04:11:41.7901022Z * [new branch] update-vision-commit-hash/6871122584-778-1 -> origin/update-vision-commit-hash/6871122584-778-1 2025-04-25T04:11:41.7901823Z * [new branch] update-vision-commit-hash/6884505667-779-1 -> origin/update-vision-commit-hash/6884505667-779-1 2025-04-25T04:11:41.7902610Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-04-25T04:11:41.7903463Z * [new branch] update-xla-commit-hash/10140112669-125-1 -> origin/update-xla-commit-hash/10140112669-125-1 2025-04-25T04:11:41.7904210Z * [new branch] update-xla-commit-hash/14440116118-180-1 -> origin/update-xla-commit-hash/14440116118-180-1 2025-04-25T04:11:41.7904956Z * [new branch] update-xla-commit-hash/6377302016-81-1 -> origin/update-xla-commit-hash/6377302016-81-1 2025-04-25T04:11:41.7905670Z * [new branch] update-xla-commit-hash/6610159969-84-1 -> origin/update-xla-commit-hash/6610159969-84-1 2025-04-25T04:11:41.7906380Z * [new branch] update-xla-commit-hash/6689695021-85-1 -> origin/update-xla-commit-hash/6689695021-85-1 2025-04-25T04:11:41.7907095Z * [new branch] update-xla-commit-hash/6767672412-86-1 -> origin/update-xla-commit-hash/6767672412-86-1 2025-04-25T04:11:41.7907806Z * [new branch] update-xla-commit-hash/6846986487-87-1 -> origin/update-xla-commit-hash/6846986487-87-1 2025-04-25T04:11:41.7908435Z * [new branch] update_deps_conda -> origin/update_deps_conda 2025-04-25T04:11:41.7909096Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-04-25T04:11:41.7909688Z * [new branch] update_pin_3 -> origin/update_pin_3 2025-04-25T04:11:41.7910191Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-04-25T04:11:41.7910874Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-04-25T04:11:41.7911434Z * [new branch] update_slow_tests_1742802025 -> origin/update_slow_tests_1742802025 2025-04-25T04:11:41.7911992Z * [new branch] update_slow_tests_1743406827 -> origin/update_slow_tests_1743406827 2025-04-25T04:11:41.7912534Z * [new branch] update_slow_tests_1744616441 -> origin/update_slow_tests_1744616441 2025-04-25T04:11:41.7913101Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-04-25T04:11:41.7913624Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-04-25T04:11:41.7914133Z * [new branch] users -> origin/users 2025-04-25T04:11:41.7914566Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-04-25T04:11:41.7914965Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-04-25T04:11:41.7915372Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-04-25T04:11:41.7915754Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-04-25T04:11:41.7916232Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-04-25T04:11:41.7916627Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-04-25T04:11:41.7917006Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-04-25T04:11:41.7917424Z * [new branch] validate_fn -> origin/validate_fn 2025-04-25T04:11:41.7917873Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-04-25T04:11:41.7918331Z * [new branch] viable/strict -> origin/viable/strict 2025-04-25T04:11:41.7918783Z * [new branch] vmoens-patch-1 -> origin/vmoens-patch-1 2025-04-25T04:11:41.7919287Z * [new branch] voz/fsdp_autograd_merge -> origin/voz/fsdp_autograd_merge 2025-04-25T04:11:41.7919855Z * [new branch] voz/fsdp_autograd_merge2 -> origin/voz/fsdp_autograd_merge2 2025-04-25T04:11:41.7920358Z * [new branch] voz/serde2 -> origin/voz/serde2 2025-04-25T04:11:41.7920846Z * [new branch] voz/soft_fork_autograd_fsdp -> origin/voz/soft_fork_autograd_fsdp 2025-04-25T04:11:41.7921353Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-04-25T04:11:41.7921817Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-04-25T04:11:41.8330174Z * [new branch] wdvr/sccache_nvcc -> origin/wdvr/sccache_nvcc 2025-04-25T04:11:41.8330730Z * [new branch] wdvr/sccache_simplified -> origin/wdvr/sccache_simplified 2025-04-25T04:11:41.8331213Z * [new branch] whc/flight -> origin/whc/flight 2025-04-25T04:11:41.8331685Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-04-25T04:11:41.8332122Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-04-25T04:11:41.8332564Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-04-25T04:11:41.8333014Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-04-25T04:11:41.8333464Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-04-25T04:11:41.8333906Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-04-25T04:11:41.8334338Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-04-25T04:11:41.8334755Z * [new branch] whc/uneven -> origin/whc/uneven 2025-04-25T04:11:41.8335210Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-04-25T04:11:41.8335817Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-04-25T04:11:41.8336281Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-04-25T04:11:41.8336728Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-04-25T04:11:41.8337165Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-04-25T04:11:41.8337629Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-04-25T04:11:41.8338102Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-04-25T04:11:41.8338563Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-04-25T04:11:41.8339024Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-04-25T04:11:41.8339525Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-04-25T04:11:41.8340015Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-04-25T04:11:41.8340447Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-04-25T04:11:41.8340978Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-04-25T04:11:41.8341421Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-04-25T04:11:41.8341885Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-04-25T04:11:41.8342359Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-04-25T04:11:41.8342872Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-04-25T04:11:41.8343433Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-04-25T04:11:41.8343949Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-04-25T04:11:41.8344434Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-04-25T04:11:41.8344957Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-04-25T04:11:41.8345464Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-04-25T04:11:41.8345962Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-04-25T04:11:41.8346460Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-04-25T04:11:41.8346941Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-04-25T04:11:41.8347431Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-04-25T04:11:41.8347880Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-04-25T04:11:41.8348337Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-04-25T04:11:41.8348793Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-04-25T04:11:41.8349266Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-04-25T04:11:41.8349819Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-04-25T04:11:41.8350458Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-04-25T04:11:41.8351135Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-04-25T04:11:41.8351753Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-04-25T04:11:41.8352359Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-04-25T04:11:41.8767663Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-04-25T04:11:41.8768434Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-04-25T04:11:41.8769136Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-04-25T04:11:41.8769881Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-04-25T04:11:41.8770506Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-04-25T04:11:41.8771084Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-04-25T04:11:41.8771680Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-04-25T04:11:41.8772351Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-04-25T04:11:41.8772965Z * [new branch] xmfan/fsdp_wraps -> origin/xmfan/fsdp_wraps 2025-04-25T04:11:41.8773442Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-04-25T04:11:41.8774041Z * [new branch] xmfan/oss_benchmark_script -> origin/xmfan/oss_benchmark_script 2025-04-25T04:11:41.8774596Z * [new branch] xmfan/retains_grad_hooks -> origin/xmfan/retains_grad_hooks 2025-04-25T04:11:41.8775123Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-04-25T04:11:41.8775614Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-04-25T04:11:41.8776145Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-04-25T04:11:41.8776615Z * [new branch] xmfan/test -> origin/xmfan/test 2025-04-25T04:11:41.8777050Z * [new branch] xmfan/yolov3_oom -> origin/xmfan/yolov3_oom 2025-04-25T04:11:41.8777575Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-04-25T04:11:41.8778104Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-04-25T04:11:41.8778668Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-04-25T04:11:41.8779414Z * [new branch] yguo/repro-segfault-triton-aoti-cpp-wrapper -> origin/yguo/repro-segfault-triton-aoti-cpp-wrapper 2025-04-25T04:11:41.8780100Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-04-25T04:11:41.8780584Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-04-25T04:11:41.8781053Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-04-25T04:11:41.8781527Z * [new branch] zainr/fix-sev-td -> origin/zainr/fix-sev-td 2025-04-25T04:11:41.8781990Z * [new branch] zainr/lint-fix -> origin/zainr/lint-fix 2025-04-25T04:11:41.8782472Z * [new branch] zainr/metrics-job-id -> origin/zainr/metrics-job-id 2025-04-25T04:11:41.8782992Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-04-25T04:11:41.8783511Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-04-25T04:11:41.8784011Z * [new branch] zainr/td-class -> origin/zainr/td-class 2025-04-25T04:11:41.8784497Z * [new branch] zainr/td-class-metrics -> origin/zainr/td-class-metrics 2025-04-25T04:11:41.8784990Z * [new branch] zainr/td-downgrade -> origin/zainr/td-downgrade 2025-04-25T04:11:41.8785515Z * [new branch] zainr/td-pass-class-times -> origin/zainr/td-pass-class-times 2025-04-25T04:11:41.8786006Z * [new branch] zainr/td-trial -> origin/zainr/td-trial 2025-04-25T04:11:41.8786560Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-04-25T04:11:41.8787033Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-04-25T04:11:41.8787489Z * [new branch] zb2p -> origin/zb2p 2025-04-25T04:11:41.8787924Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-04-25T04:11:41.8788386Z * [new branch] zdevito-patch-2 -> origin/zdevito-patch-2 2025-04-25T04:11:41.8788901Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-04-25T04:11:41.8789430Z * [new branch] zhxchen17/moodycamel -> origin/zhxchen17/moodycamel 2025-04-25T04:11:41.8789938Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-04-25T04:11:41.8790438Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-04-25T04:11:41.8790949Z * [new branch] zhxchen17/sticky_cache/0 -> origin/zhxchen17/sticky_cache/0 2025-04-25T04:11:41.8791472Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-04-25T04:11:41.8792010Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-04-25T04:11:41.9108428Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-04-25T04:11:41.9108937Z * [new branch] zxiiro/editor-config -> origin/zxiiro/editor-config 2025-04-25T04:11:41.9109435Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-04-25T04:11:41.9109924Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-04-25T04:11:41.9110427Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-04-25T04:11:41.9110912Z * [new branch] zxiiro/test-bazel -> origin/zxiiro/test-bazel 2025-04-25T04:11:41.9111434Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-04-25T04:11:41.9111872Z * [new branch] zxiiro/xpu -> origin/zxiiro/xpu 2025-04-25T04:11:41.9112608Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-04-25T04:11:41.9113302Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-04-25T04:11:41.9113706Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-04-25T04:11:41.9114104Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-04-25T04:11:41.9114484Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-04-25T04:11:41.9114899Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-04-25T04:11:41.9115328Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-04-25T04:11:41.9115762Z * [new tag] ciflow/binaries/145224 -> ciflow/binaries/145224 2025-04-25T04:11:41.9116198Z * [new tag] ciflow/binaries/146717 -> ciflow/binaries/146717 2025-04-25T04:11:41.9116635Z * [new tag] ciflow/binaries/147498 -> ciflow/binaries/147498 2025-04-25T04:11:41.9117066Z * [new tag] ciflow/binaries/147664 -> ciflow/binaries/147664 2025-04-25T04:11:41.9117492Z * [new tag] ciflow/binaries/147917 -> ciflow/binaries/147917 2025-04-25T04:11:41.9117926Z * [new tag] ciflow/binaries/148163 -> ciflow/binaries/148163 2025-04-25T04:11:41.9118350Z * [new tag] ciflow/binaries/148173 -> ciflow/binaries/148173 2025-04-25T04:11:41.9118777Z * [new tag] ciflow/binaries/149192 -> ciflow/binaries/149192 2025-04-25T04:11:41.9119205Z * [new tag] ciflow/binaries/149254 -> ciflow/binaries/149254 2025-04-25T04:11:41.9119748Z * [new tag] ciflow/binaries/150688 -> ciflow/binaries/150688 2025-04-25T04:11:41.9120191Z * [new tag] ciflow/binaries/150705 -> ciflow/binaries/150705 2025-04-25T04:11:41.9120623Z * [new tag] ciflow/binaries/151581 -> ciflow/binaries/151581 2025-04-25T04:11:41.9121067Z * [new tag] ciflow/binaries/152099 -> ciflow/binaries/152099 2025-04-25T04:11:41.9121532Z * [new tag] ciflow/binaries_wheel/138834 -> ciflow/binaries_wheel/138834 2025-04-25T04:11:41.9122024Z * [new tag] ciflow/binaries_wheel/146055 -> ciflow/binaries_wheel/146055 2025-04-25T04:11:41.9122535Z * [new tag] ciflow/binaries_wheel/147455 -> ciflow/binaries_wheel/147455 2025-04-25T04:11:41.9123011Z * [new tag] ciflow/binaries_wheel/148320 -> ciflow/binaries_wheel/148320 2025-04-25T04:11:41.9123497Z * [new tag] ciflow/binaries_wheel/149192 -> ciflow/binaries_wheel/149192 2025-04-25T04:11:41.9123986Z * [new tag] ciflow/binaries_wheel/150329 -> ciflow/binaries_wheel/150329 2025-04-25T04:11:41.9124460Z * [new tag] ciflow/binaries_wheel/150525 -> ciflow/binaries_wheel/150525 2025-04-25T04:11:41.9125028Z * [new tag] ciflow/binaries_wheel/151035 -> ciflow/binaries_wheel/151035 2025-04-25T04:11:41.9125513Z * [new tag] ciflow/binaries_wheel/151429 -> ciflow/binaries_wheel/151429 2025-04-25T04:11:41.9126000Z * [new tag] ciflow/binaries_wheel/151767 -> ciflow/binaries_wheel/151767 2025-04-25T04:11:41.9126620Z * [new tag] ciflow/binaries_wheel/151899 -> ciflow/binaries_wheel/151899 2025-04-25T04:11:41.9127095Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-04-25T04:11:41.9127497Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-04-25T04:11:41.9127890Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-04-25T04:11:41.9128516Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151581 -> ciflow/inductor-micro-benchmark-cpu-x86/151581 2025-04-25T04:11:41.9129364Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151585 -> ciflow/inductor-micro-benchmark-cpu-x86/151585 2025-04-25T04:11:41.9130121Z * [new tag] ciflow/inductor-micro-benchmark/151581 -> ciflow/inductor-micro-benchmark/151581 2025-04-25T04:11:41.9130818Z * [new tag] ciflow/inductor-micro-benchmark/151585 -> ciflow/inductor-micro-benchmark/151585 2025-04-25T04:11:41.9413435Z * [new tag] ciflow/inductor-perf-compare/151581 -> ciflow/inductor-perf-compare/151581 2025-04-25T04:11:41.9414082Z * [new tag] ciflow/inductor-perf-compare/151585 -> ciflow/inductor-perf-compare/151585 2025-04-25T04:11:41.9414815Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/148672 -> ciflow/inductor-perf-test-nightly-rocm/148672 2025-04-25T04:11:41.9415633Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149039 -> ciflow/inductor-perf-test-nightly-rocm/149039 2025-04-25T04:11:41.9416453Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149506 -> ciflow/inductor-perf-test-nightly-rocm/149506 2025-04-25T04:11:41.9417325Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151581 -> ciflow/inductor-perf-test-nightly-rocm/151581 2025-04-25T04:11:41.9418092Z * [new tag] ciflow/inductor-perf-test-nightly/151581 -> ciflow/inductor-perf-test-nightly/151581 2025-04-25T04:11:41.9418740Z * [new tag] ciflow/inductor-periodic/145612 -> ciflow/inductor-periodic/145612 2025-04-25T04:11:41.9419299Z * [new tag] ciflow/inductor-periodic/149949 -> ciflow/inductor-periodic/149949 2025-04-25T04:11:41.9419870Z * [new tag] ciflow/inductor-periodic/150411 -> ciflow/inductor-periodic/150411 2025-04-25T04:11:41.9420552Z * [new tag] ciflow/inductor-periodic/151581 -> ciflow/inductor-periodic/151581 2025-04-25T04:11:41.9421079Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-04-25T04:11:41.9421573Z * [new tag] ciflow/inductor-rocm/146903 -> ciflow/inductor-rocm/146903 2025-04-25T04:11:41.9422062Z * [new tag] ciflow/inductor-rocm/147583 -> ciflow/inductor-rocm/147583 2025-04-25T04:11:41.9422579Z * [new tag] ciflow/inductor-rocm/149041 -> ciflow/inductor-rocm/149041 2025-04-25T04:11:41.9423099Z * [new tag] ciflow/inductor-rocm/151368 -> ciflow/inductor-rocm/151368 2025-04-25T04:11:41.9423575Z * [new tag] ciflow/inductor-rocm/151581 -> ciflow/inductor-rocm/151581 2025-04-25T04:11:41.9424053Z * [new tag] ciflow/inductor-rocm/151708 -> ciflow/inductor-rocm/151708 2025-04-25T04:11:41.9424528Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-04-25T04:11:41.9424989Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-04-25T04:11:41.9425430Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-04-25T04:11:41.9425945Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-04-25T04:11:41.9426389Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-04-25T04:11:41.9426820Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-04-25T04:11:41.9427263Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-04-25T04:11:41.9427702Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-04-25T04:11:41.9428146Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-04-25T04:11:41.9428614Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-04-25T04:11:41.9429081Z * [new tag] ciflow/inductor/125806 -> ciflow/inductor/125806 2025-04-25T04:11:41.9429511Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-04-25T04:11:41.9429937Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-04-25T04:11:41.9430363Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-04-25T04:11:41.9430793Z * [new tag] ciflow/inductor/127171 -> ciflow/inductor/127171 2025-04-25T04:11:41.9431217Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-04-25T04:11:41.9431643Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-04-25T04:11:41.9432070Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-04-25T04:11:41.9432506Z * [new tag] ciflow/inductor/130141 -> ciflow/inductor/130141 2025-04-25T04:11:41.9432951Z * [new tag] ciflow/inductor/130499 -> ciflow/inductor/130499 2025-04-25T04:11:41.9433384Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-04-25T04:11:41.9433827Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-04-25T04:11:41.9434289Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-04-25T04:11:41.9434757Z * [new tag] ciflow/inductor/133121 -> ciflow/inductor/133121 2025-04-25T04:11:41.9435179Z * [new tag] ciflow/inductor/133287 -> ciflow/inductor/133287 2025-04-25T04:11:41.9435620Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-04-25T04:11:41.9436045Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-04-25T04:11:41.9436468Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-04-25T04:11:41.9736723Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-04-25T04:11:41.9737198Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-04-25T04:11:41.9737661Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-04-25T04:11:41.9738101Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-04-25T04:11:41.9738526Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-04-25T04:11:41.9738968Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-04-25T04:11:41.9739402Z * [new tag] ciflow/inductor/134681 -> ciflow/inductor/134681 2025-04-25T04:11:41.9739855Z * [new tag] ciflow/inductor/135708 -> ciflow/inductor/135708 2025-04-25T04:11:41.9740282Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-04-25T04:11:41.9740709Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-04-25T04:11:41.9741150Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-04-25T04:11:41.9741680Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-04-25T04:11:41.9742118Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-04-25T04:11:41.9742551Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-04-25T04:11:41.9742980Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-04-25T04:11:41.9743412Z * [new tag] ciflow/inductor/137884 -> ciflow/inductor/137884 2025-04-25T04:11:41.9743832Z * [new tag] ciflow/inductor/138202 -> ciflow/inductor/138202 2025-04-25T04:11:41.9744268Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-04-25T04:11:41.9744717Z * [new tag] ciflow/inductor/138388 -> ciflow/inductor/138388 2025-04-25T04:11:41.9745142Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-04-25T04:11:41.9745577Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-04-25T04:11:41.9746008Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-04-25T04:11:41.9746451Z * [new tag] ciflow/inductor/139094 -> ciflow/inductor/139094 2025-04-25T04:11:41.9746894Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-04-25T04:11:41.9747326Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-04-25T04:11:41.9747754Z * [new tag] ciflow/inductor/140032 -> ciflow/inductor/140032 2025-04-25T04:11:41.9748185Z * [new tag] ciflow/inductor/140159 -> ciflow/inductor/140159 2025-04-25T04:11:41.9748630Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-04-25T04:11:41.9749052Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-04-25T04:11:41.9749504Z * [new tag] ciflow/inductor/141213 -> ciflow/inductor/141213 2025-04-25T04:11:41.9749953Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-04-25T04:11:41.9750383Z * [new tag] ciflow/inductor/141684 -> ciflow/inductor/141684 2025-04-25T04:11:41.9750819Z * [new tag] ciflow/inductor/141700 -> ciflow/inductor/141700 2025-04-25T04:11:41.9751242Z * [new tag] ciflow/inductor/141730 -> ciflow/inductor/141730 2025-04-25T04:11:41.9751682Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-04-25T04:11:41.9752117Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-04-25T04:11:41.9752648Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-04-25T04:11:41.9753086Z * [new tag] ciflow/inductor/142372 -> ciflow/inductor/142372 2025-04-25T04:11:41.9753515Z * [new tag] ciflow/inductor/143457 -> ciflow/inductor/143457 2025-04-25T04:11:41.9753960Z * [new tag] ciflow/inductor/143527 -> ciflow/inductor/143527 2025-04-25T04:11:41.9754395Z * [new tag] ciflow/inductor/143544 -> ciflow/inductor/143544 2025-04-25T04:11:41.9754821Z * [new tag] ciflow/inductor/143666 -> ciflow/inductor/143666 2025-04-25T04:11:41.9755256Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-04-25T04:11:41.9755680Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-04-25T04:11:41.9756119Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-04-25T04:11:41.9756552Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-04-25T04:11:41.9756991Z * [new tag] ciflow/inductor/144272 -> ciflow/inductor/144272 2025-04-25T04:11:41.9757506Z * [new tag] ciflow/inductor/144293 -> ciflow/inductor/144293 2025-04-25T04:11:41.9757945Z * [new tag] ciflow/inductor/144332 -> ciflow/inductor/144332 2025-04-25T04:11:42.0064535Z * [new tag] ciflow/inductor/144333 -> ciflow/inductor/144333 2025-04-25T04:11:42.0065077Z * [new tag] ciflow/inductor/144353 -> ciflow/inductor/144353 2025-04-25T04:11:42.0065542Z * [new tag] ciflow/inductor/144365 -> ciflow/inductor/144365 2025-04-25T04:11:42.0066020Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-04-25T04:11:42.0066488Z * [new tag] ciflow/inductor/144405 -> ciflow/inductor/144405 2025-04-25T04:11:42.0066979Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-04-25T04:11:42.0067463Z * [new tag] ciflow/inductor/144501 -> ciflow/inductor/144501 2025-04-25T04:11:42.0067963Z * [new tag] ciflow/inductor/144505 -> ciflow/inductor/144505 2025-04-25T04:11:42.0068437Z * [new tag] ciflow/inductor/144507 -> ciflow/inductor/144507 2025-04-25T04:11:42.0068905Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-04-25T04:11:42.0069348Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-04-25T04:11:42.0069775Z * [new tag] ciflow/inductor/144548 -> ciflow/inductor/144548 2025-04-25T04:11:42.0070212Z * [new tag] ciflow/inductor/144551 -> ciflow/inductor/144551 2025-04-25T04:11:42.0070647Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-04-25T04:11:42.0071085Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-04-25T04:11:42.0071524Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-04-25T04:11:42.0071953Z * [new tag] ciflow/inductor/144721 -> ciflow/inductor/144721 2025-04-25T04:11:42.0072389Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-04-25T04:11:42.0072848Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-04-25T04:11:42.0073273Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-04-25T04:11:42.0073712Z * [new tag] ciflow/inductor/144992 -> ciflow/inductor/144992 2025-04-25T04:11:42.0074176Z * [new tag] ciflow/inductor/145024 -> ciflow/inductor/145024 2025-04-25T04:11:42.0074645Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-04-25T04:11:42.0075230Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-04-25T04:11:42.0075706Z * [new tag] ciflow/inductor/145475 -> ciflow/inductor/145475 2025-04-25T04:11:42.0076213Z * [new tag] ciflow/inductor/145540 -> ciflow/inductor/145540 2025-04-25T04:11:42.0076682Z * [new tag] ciflow/inductor/145559 -> ciflow/inductor/145559 2025-04-25T04:11:42.0077142Z * [new tag] ciflow/inductor/145594 -> ciflow/inductor/145594 2025-04-25T04:11:42.0077606Z * [new tag] ciflow/inductor/145595 -> ciflow/inductor/145595 2025-04-25T04:11:42.0078071Z * [new tag] ciflow/inductor/145612 -> ciflow/inductor/145612 2025-04-25T04:11:42.0078548Z * [new tag] ciflow/inductor/145647 -> ciflow/inductor/145647 2025-04-25T04:11:42.0079040Z * [new tag] ciflow/inductor/145681 -> ciflow/inductor/145681 2025-04-25T04:11:42.0079523Z * [new tag] ciflow/inductor/145865 -> ciflow/inductor/145865 2025-04-25T04:11:42.0079982Z * [new tag] ciflow/inductor/145885 -> ciflow/inductor/145885 2025-04-25T04:11:42.0080526Z * [new tag] ciflow/inductor/145911 -> ciflow/inductor/145911 2025-04-25T04:11:42.0081041Z * [new tag] ciflow/inductor/145922 -> ciflow/inductor/145922 2025-04-25T04:11:42.0081506Z * [new tag] ciflow/inductor/145936 -> ciflow/inductor/145936 2025-04-25T04:11:42.0081974Z * [new tag] ciflow/inductor/145969 -> ciflow/inductor/145969 2025-04-25T04:11:42.0082439Z * [new tag] ciflow/inductor/145979 -> ciflow/inductor/145979 2025-04-25T04:11:42.0082900Z * [new tag] ciflow/inductor/145992 -> ciflow/inductor/145992 2025-04-25T04:11:42.0083359Z * [new tag] ciflow/inductor/146063 -> ciflow/inductor/146063 2025-04-25T04:11:42.0083864Z * [new tag] ciflow/inductor/146101 -> ciflow/inductor/146101 2025-04-25T04:11:42.0084335Z * [new tag] ciflow/inductor/146115 -> ciflow/inductor/146115 2025-04-25T04:11:42.0084798Z * [new tag] ciflow/inductor/146172 -> ciflow/inductor/146172 2025-04-25T04:11:42.0085267Z * [new tag] ciflow/inductor/146180 -> ciflow/inductor/146180 2025-04-25T04:11:42.0085725Z * [new tag] ciflow/inductor/146218 -> ciflow/inductor/146218 2025-04-25T04:11:42.0086277Z * [new tag] ciflow/inductor/146228 -> ciflow/inductor/146228 2025-04-25T04:11:42.0086760Z * [new tag] ciflow/inductor/146267 -> ciflow/inductor/146267 2025-04-25T04:11:42.0087224Z * [new tag] ciflow/inductor/146275 -> ciflow/inductor/146275 2025-04-25T04:11:42.0405302Z * [new tag] ciflow/inductor/146280 -> ciflow/inductor/146280 2025-04-25T04:11:42.0405760Z * [new tag] ciflow/inductor/146288 -> ciflow/inductor/146288 2025-04-25T04:11:42.0406250Z * [new tag] ciflow/inductor/146319 -> ciflow/inductor/146319 2025-04-25T04:11:42.0406708Z * [new tag] ciflow/inductor/146335 -> ciflow/inductor/146335 2025-04-25T04:11:42.0407143Z * [new tag] ciflow/inductor/146341 -> ciflow/inductor/146341 2025-04-25T04:11:42.0407583Z * [new tag] ciflow/inductor/146395 -> ciflow/inductor/146395 2025-04-25T04:11:42.0408030Z * [new tag] ciflow/inductor/146415 -> ciflow/inductor/146415 2025-04-25T04:11:42.0408455Z * [new tag] ciflow/inductor/146436 -> ciflow/inductor/146436 2025-04-25T04:11:42.0408890Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-04-25T04:11:42.0409323Z * [new tag] ciflow/inductor/146526 -> ciflow/inductor/146526 2025-04-25T04:11:42.0409876Z * [new tag] ciflow/inductor/146530 -> ciflow/inductor/146530 2025-04-25T04:11:42.0410310Z * [new tag] ciflow/inductor/146535 -> ciflow/inductor/146535 2025-04-25T04:11:42.0410791Z * [new tag] ciflow/inductor/146558 -> ciflow/inductor/146558 2025-04-25T04:11:42.0411262Z * [new tag] ciflow/inductor/146561 -> ciflow/inductor/146561 2025-04-25T04:11:42.0411686Z * [new tag] ciflow/inductor/146562 -> ciflow/inductor/146562 2025-04-25T04:11:42.0412120Z * [new tag] ciflow/inductor/146661 -> ciflow/inductor/146661 2025-04-25T04:11:42.0412542Z * [new tag] ciflow/inductor/146678 -> ciflow/inductor/146678 2025-04-25T04:11:42.0412972Z * [new tag] ciflow/inductor/146718 -> ciflow/inductor/146718 2025-04-25T04:11:42.0413414Z * [new tag] ciflow/inductor/146779 -> ciflow/inductor/146779 2025-04-25T04:11:42.0413855Z * [new tag] ciflow/inductor/146781 -> ciflow/inductor/146781 2025-04-25T04:11:42.0414286Z * [new tag] ciflow/inductor/146844 -> ciflow/inductor/146844 2025-04-25T04:11:42.0414706Z * [new tag] ciflow/inductor/146845 -> ciflow/inductor/146845 2025-04-25T04:11:42.0415216Z * [new tag] ciflow/inductor/146850 -> ciflow/inductor/146850 2025-04-25T04:11:42.0415661Z * [new tag] ciflow/inductor/146864 -> ciflow/inductor/146864 2025-04-25T04:11:42.0416093Z * [new tag] ciflow/inductor/146874 -> ciflow/inductor/146874 2025-04-25T04:11:42.0416562Z * [new tag] ciflow/inductor/146894 -> ciflow/inductor/146894 2025-04-25T04:11:42.0417027Z * [new tag] ciflow/inductor/146895 -> ciflow/inductor/146895 2025-04-25T04:11:42.0417454Z * [new tag] ciflow/inductor/146935 -> ciflow/inductor/146935 2025-04-25T04:11:42.0417887Z * [new tag] ciflow/inductor/146942 -> ciflow/inductor/146942 2025-04-25T04:11:42.0418317Z * [new tag] ciflow/inductor/146962 -> ciflow/inductor/146962 2025-04-25T04:11:42.0418750Z * [new tag] ciflow/inductor/146983 -> ciflow/inductor/146983 2025-04-25T04:11:42.0419175Z * [new tag] ciflow/inductor/146989 -> ciflow/inductor/146989 2025-04-25T04:11:42.0419608Z * [new tag] ciflow/inductor/147007 -> ciflow/inductor/147007 2025-04-25T04:11:42.0420033Z * [new tag] ciflow/inductor/147021 -> ciflow/inductor/147021 2025-04-25T04:11:42.0420469Z * [new tag] ciflow/inductor/147036 -> ciflow/inductor/147036 2025-04-25T04:11:42.0420908Z * [new tag] ciflow/inductor/147049 -> ciflow/inductor/147049 2025-04-25T04:11:42.0421340Z * [new tag] ciflow/inductor/147146 -> ciflow/inductor/147146 2025-04-25T04:11:42.0421777Z * [new tag] ciflow/inductor/147155 -> ciflow/inductor/147155 2025-04-25T04:11:42.0422242Z * [new tag] ciflow/inductor/147178 -> ciflow/inductor/147178 2025-04-25T04:11:42.0422712Z * [new tag] ciflow/inductor/147314 -> ciflow/inductor/147314 2025-04-25T04:11:42.0423153Z * [new tag] ciflow/inductor/147341 -> ciflow/inductor/147341 2025-04-25T04:11:42.0423591Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-04-25T04:11:42.0424033Z * [new tag] ciflow/inductor/147368 -> ciflow/inductor/147368 2025-04-25T04:11:42.0424455Z * [new tag] ciflow/inductor/147410 -> ciflow/inductor/147410 2025-04-25T04:11:42.0424890Z * [new tag] ciflow/inductor/147414 -> ciflow/inductor/147414 2025-04-25T04:11:42.0425317Z * [new tag] ciflow/inductor/147415 -> ciflow/inductor/147415 2025-04-25T04:11:42.0425752Z * [new tag] ciflow/inductor/147481 -> ciflow/inductor/147481 2025-04-25T04:11:42.0426270Z * [new tag] ciflow/inductor/147498 -> ciflow/inductor/147498 2025-04-25T04:11:42.0426705Z * [new tag] ciflow/inductor/147514 -> ciflow/inductor/147514 2025-04-25T04:11:42.0427159Z * [new tag] ciflow/inductor/147528 -> ciflow/inductor/147528 2025-04-25T04:11:42.0732580Z * [new tag] ciflow/inductor/147562 -> ciflow/inductor/147562 2025-04-25T04:11:42.0733105Z * [new tag] ciflow/inductor/147583 -> ciflow/inductor/147583 2025-04-25T04:11:42.0733555Z * [new tag] ciflow/inductor/147603 -> ciflow/inductor/147603 2025-04-25T04:11:42.0733980Z * [new tag] ciflow/inductor/147745 -> ciflow/inductor/147745 2025-04-25T04:11:42.0734420Z * [new tag] ciflow/inductor/147797 -> ciflow/inductor/147797 2025-04-25T04:11:42.0734855Z * [new tag] ciflow/inductor/147800 -> ciflow/inductor/147800 2025-04-25T04:11:42.0735299Z * [new tag] ciflow/inductor/147881 -> ciflow/inductor/147881 2025-04-25T04:11:42.0735734Z * [new tag] ciflow/inductor/147899 -> ciflow/inductor/147899 2025-04-25T04:11:42.0736297Z * [new tag] ciflow/inductor/147902 -> ciflow/inductor/147902 2025-04-25T04:11:42.0736746Z * [new tag] ciflow/inductor/147903 -> ciflow/inductor/147903 2025-04-25T04:11:42.0737193Z * [new tag] ciflow/inductor/147908 -> ciflow/inductor/147908 2025-04-25T04:11:42.0737629Z * [new tag] ciflow/inductor/147910 -> ciflow/inductor/147910 2025-04-25T04:11:42.0738076Z * [new tag] ciflow/inductor/147915 -> ciflow/inductor/147915 2025-04-25T04:11:42.0738503Z * [new tag] ciflow/inductor/147917 -> ciflow/inductor/147917 2025-04-25T04:11:42.0738939Z * [new tag] ciflow/inductor/147927 -> ciflow/inductor/147927 2025-04-25T04:11:42.0739368Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-04-25T04:11:42.0739810Z * [new tag] ciflow/inductor/148008 -> ciflow/inductor/148008 2025-04-25T04:11:42.0748246Z * [new tag] ciflow/inductor/148010 -> ciflow/inductor/148010 2025-04-25T04:11:42.0748718Z * [new tag] ciflow/inductor/148104 -> ciflow/inductor/148104 2025-04-25T04:11:42.0749167Z * [new tag] ciflow/inductor/148160 -> ciflow/inductor/148160 2025-04-25T04:11:42.0749594Z * [new tag] ciflow/inductor/148163 -> ciflow/inductor/148163 2025-04-25T04:11:42.0750031Z * [new tag] ciflow/inductor/148173 -> ciflow/inductor/148173 2025-04-25T04:11:42.0750455Z * [new tag] ciflow/inductor/148186 -> ciflow/inductor/148186 2025-04-25T04:11:42.0750888Z * [new tag] ciflow/inductor/148202 -> ciflow/inductor/148202 2025-04-25T04:11:42.0751333Z * [new tag] ciflow/inductor/148206 -> ciflow/inductor/148206 2025-04-25T04:11:42.0751759Z * [new tag] ciflow/inductor/148234 -> ciflow/inductor/148234 2025-04-25T04:11:42.0752198Z * [new tag] ciflow/inductor/148235 -> ciflow/inductor/148235 2025-04-25T04:11:42.0752621Z * [new tag] ciflow/inductor/148294 -> ciflow/inductor/148294 2025-04-25T04:11:42.0753058Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-04-25T04:11:42.0753491Z * [new tag] ciflow/inductor/148357 -> ciflow/inductor/148357 2025-04-25T04:11:42.0753923Z * [new tag] ciflow/inductor/148380 -> ciflow/inductor/148380 2025-04-25T04:11:42.0754378Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-04-25T04:11:42.0754803Z * [new tag] ciflow/inductor/148413 -> ciflow/inductor/148413 2025-04-25T04:11:42.0755400Z * [new tag] ciflow/inductor/148414 -> ciflow/inductor/148414 2025-04-25T04:11:42.0755829Z * [new tag] ciflow/inductor/148415 -> ciflow/inductor/148415 2025-04-25T04:11:42.0756279Z * [new tag] ciflow/inductor/148418 -> ciflow/inductor/148418 2025-04-25T04:11:42.0756721Z * [new tag] ciflow/inductor/148424 -> ciflow/inductor/148424 2025-04-25T04:11:42.0757150Z * [new tag] ciflow/inductor/148459 -> ciflow/inductor/148459 2025-04-25T04:11:42.0757598Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-04-25T04:11:42.0758033Z * [new tag] ciflow/inductor/148485 -> ciflow/inductor/148485 2025-04-25T04:11:42.0758469Z * [new tag] ciflow/inductor/148488 -> ciflow/inductor/148488 2025-04-25T04:11:42.0758909Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-04-25T04:11:42.0759339Z * [new tag] ciflow/inductor/148502 -> ciflow/inductor/148502 2025-04-25T04:11:42.0759778Z * [new tag] ciflow/inductor/148529 -> ciflow/inductor/148529 2025-04-25T04:11:42.0760302Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-04-25T04:11:42.0760759Z * [new tag] ciflow/inductor/148613 -> ciflow/inductor/148613 2025-04-25T04:11:42.0761197Z * [new tag] ciflow/inductor/148618 -> ciflow/inductor/148618 2025-04-25T04:11:42.0761633Z * [new tag] ciflow/inductor/148630 -> ciflow/inductor/148630 2025-04-25T04:11:42.0762087Z * [new tag] ciflow/inductor/148684 -> ciflow/inductor/148684 2025-04-25T04:11:42.1062113Z * [new tag] ciflow/inductor/148694 -> ciflow/inductor/148694 2025-04-25T04:11:42.1062611Z * [new tag] ciflow/inductor/148710 -> ciflow/inductor/148710 2025-04-25T04:11:42.1063068Z * [new tag] ciflow/inductor/148712 -> ciflow/inductor/148712 2025-04-25T04:11:42.1063496Z * [new tag] ciflow/inductor/148731 -> ciflow/inductor/148731 2025-04-25T04:11:42.1063936Z * [new tag] ciflow/inductor/148742 -> ciflow/inductor/148742 2025-04-25T04:11:42.1064367Z * [new tag] ciflow/inductor/148773 -> ciflow/inductor/148773 2025-04-25T04:11:42.1064843Z * [new tag] ciflow/inductor/148780 -> ciflow/inductor/148780 2025-04-25T04:11:42.1065312Z * [new tag] ciflow/inductor/148893 -> ciflow/inductor/148893 2025-04-25T04:11:42.1065738Z * [new tag] ciflow/inductor/148898 -> ciflow/inductor/148898 2025-04-25T04:11:42.1066184Z * [new tag] ciflow/inductor/148932 -> ciflow/inductor/148932 2025-04-25T04:11:42.1066613Z * [new tag] ciflow/inductor/148947 -> ciflow/inductor/148947 2025-04-25T04:11:42.1067061Z * [new tag] ciflow/inductor/148962 -> ciflow/inductor/148962 2025-04-25T04:11:42.1067498Z * [new tag] ciflow/inductor/149003 -> ciflow/inductor/149003 2025-04-25T04:11:42.1067929Z * [new tag] ciflow/inductor/149039 -> ciflow/inductor/149039 2025-04-25T04:11:42.1068359Z * [new tag] ciflow/inductor/149041 -> ciflow/inductor/149041 2025-04-25T04:11:42.1068788Z * [new tag] ciflow/inductor/149055 -> ciflow/inductor/149055 2025-04-25T04:11:42.1069232Z * [new tag] ciflow/inductor/149066 -> ciflow/inductor/149066 2025-04-25T04:11:42.1069660Z * [new tag] ciflow/inductor/149067 -> ciflow/inductor/149067 2025-04-25T04:11:42.1070096Z * [new tag] ciflow/inductor/149068 -> ciflow/inductor/149068 2025-04-25T04:11:42.1070567Z * [new tag] ciflow/inductor/149069 -> ciflow/inductor/149069 2025-04-25T04:11:42.1071182Z * [new tag] ciflow/inductor/149140 -> ciflow/inductor/149140 2025-04-25T04:11:42.1071695Z * [new tag] ciflow/inductor/149167 -> ciflow/inductor/149167 2025-04-25T04:11:42.1072209Z * [new tag] ciflow/inductor/149173 -> ciflow/inductor/149173 2025-04-25T04:11:42.1072690Z * [new tag] ciflow/inductor/149192 -> ciflow/inductor/149192 2025-04-25T04:11:42.1073206Z * [new tag] ciflow/inductor/149267 -> ciflow/inductor/149267 2025-04-25T04:11:42.1073667Z * [new tag] ciflow/inductor/149288 -> ciflow/inductor/149288 2025-04-25T04:11:42.1074180Z * [new tag] ciflow/inductor/149346 -> ciflow/inductor/149346 2025-04-25T04:11:42.1074681Z * [new tag] ciflow/inductor/149348 -> ciflow/inductor/149348 2025-04-25T04:11:42.1075160Z * [new tag] ciflow/inductor/149373 -> ciflow/inductor/149373 2025-04-25T04:11:42.1075678Z * [new tag] ciflow/inductor/149420 -> ciflow/inductor/149420 2025-04-25T04:11:42.1076145Z * [new tag] ciflow/inductor/149426 -> ciflow/inductor/149426 2025-04-25T04:11:42.1076739Z * [new tag] ciflow/inductor/149427 -> ciflow/inductor/149427 2025-04-25T04:11:42.1077247Z * [new tag] ciflow/inductor/149439 -> ciflow/inductor/149439 2025-04-25T04:11:42.1077765Z * [new tag] ciflow/inductor/149486 -> ciflow/inductor/149486 2025-04-25T04:11:42.1078236Z * [new tag] ciflow/inductor/149506 -> ciflow/inductor/149506 2025-04-25T04:11:42.1078755Z * [new tag] ciflow/inductor/149518 -> ciflow/inductor/149518 2025-04-25T04:11:42.1079236Z * [new tag] ciflow/inductor/149547 -> ciflow/inductor/149547 2025-04-25T04:11:42.1079663Z * [new tag] ciflow/inductor/149560 -> ciflow/inductor/149560 2025-04-25T04:11:42.1080106Z * [new tag] ciflow/inductor/149561 -> ciflow/inductor/149561 2025-04-25T04:11:42.1080535Z * [new tag] ciflow/inductor/149562 -> ciflow/inductor/149562 2025-04-25T04:11:42.1080985Z * [new tag] ciflow/inductor/149580 -> ciflow/inductor/149580 2025-04-25T04:11:42.1081423Z * [new tag] ciflow/inductor/149629 -> ciflow/inductor/149629 2025-04-25T04:11:42.1081854Z * [new tag] ciflow/inductor/149643 -> ciflow/inductor/149643 2025-04-25T04:11:42.1082293Z * [new tag] ciflow/inductor/149697 -> ciflow/inductor/149697 2025-04-25T04:11:42.1082719Z * [new tag] ciflow/inductor/149701 -> ciflow/inductor/149701 2025-04-25T04:11:42.1083156Z * [new tag] ciflow/inductor/149706 -> ciflow/inductor/149706 2025-04-25T04:11:42.1083587Z * [new tag] ciflow/inductor/149707 -> ciflow/inductor/149707 2025-04-25T04:11:42.1084031Z * [new tag] ciflow/inductor/149733 -> ciflow/inductor/149733 2025-04-25T04:11:42.1084541Z * [new tag] ciflow/inductor/149748 -> ciflow/inductor/149748 2025-04-25T04:11:42.1085014Z * [new tag] ciflow/inductor/149763 -> ciflow/inductor/149763 2025-04-25T04:11:42.1379120Z * [new tag] ciflow/inductor/149764 -> ciflow/inductor/149764 2025-04-25T04:11:42.1379590Z * [new tag] ciflow/inductor/149769 -> ciflow/inductor/149769 2025-04-25T04:11:42.1380021Z * [new tag] ciflow/inductor/149773 -> ciflow/inductor/149773 2025-04-25T04:11:42.1380462Z * [new tag] ciflow/inductor/149784 -> ciflow/inductor/149784 2025-04-25T04:11:42.1380895Z * [new tag] ciflow/inductor/149898 -> ciflow/inductor/149898 2025-04-25T04:11:42.1381331Z * [new tag] ciflow/inductor/149899 -> ciflow/inductor/149899 2025-04-25T04:11:42.1381888Z * [new tag] ciflow/inductor/149913 -> ciflow/inductor/149913 2025-04-25T04:11:42.1382347Z * [new tag] ciflow/inductor/149949 -> ciflow/inductor/149949 2025-04-25T04:11:42.1382837Z * [new tag] ciflow/inductor/149958 -> ciflow/inductor/149958 2025-04-25T04:11:42.1383260Z * [new tag] ciflow/inductor/149959 -> ciflow/inductor/149959 2025-04-25T04:11:42.1383702Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-04-25T04:11:42.1384140Z * [new tag] ciflow/inductor/149967 -> ciflow/inductor/149967 2025-04-25T04:11:42.1384566Z * [new tag] ciflow/inductor/149998 -> ciflow/inductor/149998 2025-04-25T04:11:42.1385000Z * [new tag] ciflow/inductor/150003 -> ciflow/inductor/150003 2025-04-25T04:11:42.1385425Z * [new tag] ciflow/inductor/150032 -> ciflow/inductor/150032 2025-04-25T04:11:42.1385867Z * [new tag] ciflow/inductor/150044 -> ciflow/inductor/150044 2025-04-25T04:11:42.1386295Z * [new tag] ciflow/inductor/150080 -> ciflow/inductor/150080 2025-04-25T04:11:42.1386736Z * [new tag] ciflow/inductor/150107 -> ciflow/inductor/150107 2025-04-25T04:11:42.1387252Z * [new tag] ciflow/inductor/150108 -> ciflow/inductor/150108 2025-04-25T04:11:42.1387685Z * [new tag] ciflow/inductor/150116 -> ciflow/inductor/150116 2025-04-25T04:11:42.1388207Z * [new tag] ciflow/inductor/150166 -> ciflow/inductor/150166 2025-04-25T04:11:42.1388636Z * [new tag] ciflow/inductor/150241 -> ciflow/inductor/150241 2025-04-25T04:11:42.1389083Z * [new tag] ciflow/inductor/150287 -> ciflow/inductor/150287 2025-04-25T04:11:42.1389518Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-04-25T04:11:42.1389949Z * [new tag] ciflow/inductor/150331 -> ciflow/inductor/150331 2025-04-25T04:11:42.1390381Z * [new tag] ciflow/inductor/150349 -> ciflow/inductor/150349 2025-04-25T04:11:42.1390805Z * [new tag] ciflow/inductor/150355 -> ciflow/inductor/150355 2025-04-25T04:11:42.1391249Z * [new tag] ciflow/inductor/150365 -> ciflow/inductor/150365 2025-04-25T04:11:42.1391676Z * [new tag] ciflow/inductor/150411 -> ciflow/inductor/150411 2025-04-25T04:11:42.1392123Z * [new tag] ciflow/inductor/150415 -> ciflow/inductor/150415 2025-04-25T04:11:42.1392557Z * [new tag] ciflow/inductor/150429 -> ciflow/inductor/150429 2025-04-25T04:11:42.1392982Z * [new tag] ciflow/inductor/150455 -> ciflow/inductor/150455 2025-04-25T04:11:42.1393449Z * [new tag] ciflow/inductor/150466 -> ciflow/inductor/150466 2025-04-25T04:11:42.1393912Z * [new tag] ciflow/inductor/150474 -> ciflow/inductor/150474 2025-04-25T04:11:42.1394365Z * [new tag] ciflow/inductor/150481 -> ciflow/inductor/150481 2025-04-25T04:11:42.1394815Z * [new tag] ciflow/inductor/150483 -> ciflow/inductor/150483 2025-04-25T04:11:42.1395256Z * [new tag] ciflow/inductor/150511 -> ciflow/inductor/150511 2025-04-25T04:11:42.1395700Z * [new tag] ciflow/inductor/150525 -> ciflow/inductor/150525 2025-04-25T04:11:42.1396126Z * [new tag] ciflow/inductor/150527 -> ciflow/inductor/150527 2025-04-25T04:11:42.1396561Z * [new tag] ciflow/inductor/150546 -> ciflow/inductor/150546 2025-04-25T04:11:42.1397001Z * [new tag] ciflow/inductor/150564 -> ciflow/inductor/150564 2025-04-25T04:11:42.1397428Z * [new tag] ciflow/inductor/150567 -> ciflow/inductor/150567 2025-04-25T04:11:42.1397863Z * [new tag] ciflow/inductor/150582 -> ciflow/inductor/150582 2025-04-25T04:11:42.1398893Z * [new tag] ciflow/inductor/150583 -> ciflow/inductor/150583 2025-04-25T04:11:42.1399407Z * [new tag] ciflow/inductor/150634 -> ciflow/inductor/150634 2025-04-25T04:11:42.1399866Z * [new tag] ciflow/inductor/150646 -> ciflow/inductor/150646 2025-04-25T04:11:42.1400296Z * [new tag] ciflow/inductor/150654 -> ciflow/inductor/150654 2025-04-25T04:11:42.1400738Z * [new tag] ciflow/inductor/150669 -> ciflow/inductor/150669 2025-04-25T04:11:42.1401166Z * [new tag] ciflow/inductor/150673 -> ciflow/inductor/150673 2025-04-25T04:11:42.1708357Z * [new tag] ciflow/inductor/150689 -> ciflow/inductor/150689 2025-04-25T04:11:42.1708848Z * [new tag] ciflow/inductor/150704 -> ciflow/inductor/150704 2025-04-25T04:11:42.1709285Z * [new tag] ciflow/inductor/150717 -> ciflow/inductor/150717 2025-04-25T04:11:42.1709742Z * [new tag] ciflow/inductor/150719 -> ciflow/inductor/150719 2025-04-25T04:11:42.1710172Z * [new tag] ciflow/inductor/150720 -> ciflow/inductor/150720 2025-04-25T04:11:42.1711288Z * [new tag] ciflow/inductor/150727 -> ciflow/inductor/150727 2025-04-25T04:11:42.1711749Z * [new tag] ciflow/inductor/150738 -> ciflow/inductor/150738 2025-04-25T04:11:42.1712189Z * [new tag] ciflow/inductor/150739 -> ciflow/inductor/150739 2025-04-25T04:11:42.1712636Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-04-25T04:11:42.1713073Z * [new tag] ciflow/inductor/150767 -> ciflow/inductor/150767 2025-04-25T04:11:42.1713511Z * [new tag] ciflow/inductor/150787 -> ciflow/inductor/150787 2025-04-25T04:11:42.1713949Z * [new tag] ciflow/inductor/150788 -> ciflow/inductor/150788 2025-04-25T04:11:42.1714391Z * [new tag] ciflow/inductor/150789 -> ciflow/inductor/150789 2025-04-25T04:11:42.1714832Z * [new tag] ciflow/inductor/150790 -> ciflow/inductor/150790 2025-04-25T04:11:42.1715286Z * [new tag] ciflow/inductor/150791 -> ciflow/inductor/150791 2025-04-25T04:11:42.1715731Z * [new tag] ciflow/inductor/150792 -> ciflow/inductor/150792 2025-04-25T04:11:42.1716173Z * [new tag] ciflow/inductor/150793 -> ciflow/inductor/150793 2025-04-25T04:11:42.1716606Z * [new tag] ciflow/inductor/150794 -> ciflow/inductor/150794 2025-04-25T04:11:42.1717044Z * [new tag] ciflow/inductor/150795 -> ciflow/inductor/150795 2025-04-25T04:11:42.1717479Z * [new tag] ciflow/inductor/150796 -> ciflow/inductor/150796 2025-04-25T04:11:42.1717918Z * [new tag] ciflow/inductor/150797 -> ciflow/inductor/150797 2025-04-25T04:11:42.1718361Z * [new tag] ciflow/inductor/150858 -> ciflow/inductor/150858 2025-04-25T04:11:42.1718791Z * [new tag] ciflow/inductor/150869 -> ciflow/inductor/150869 2025-04-25T04:11:42.1719240Z * [new tag] ciflow/inductor/150872 -> ciflow/inductor/150872 2025-04-25T04:11:42.1719668Z * [new tag] ciflow/inductor/150879 -> ciflow/inductor/150879 2025-04-25T04:11:42.1720104Z * [new tag] ciflow/inductor/150899 -> ciflow/inductor/150899 2025-04-25T04:11:42.1720532Z * [new tag] ciflow/inductor/150904 -> ciflow/inductor/150904 2025-04-25T04:11:42.1720971Z * [new tag] ciflow/inductor/150905 -> ciflow/inductor/150905 2025-04-25T04:11:42.1721408Z * [new tag] ciflow/inductor/150906 -> ciflow/inductor/150906 2025-04-25T04:11:42.1721836Z * [new tag] ciflow/inductor/150907 -> ciflow/inductor/150907 2025-04-25T04:11:42.1722388Z * [new tag] ciflow/inductor/150908 -> ciflow/inductor/150908 2025-04-25T04:11:42.1722824Z * [new tag] ciflow/inductor/150909 -> ciflow/inductor/150909 2025-04-25T04:11:42.1723270Z * [new tag] ciflow/inductor/150910 -> ciflow/inductor/150910 2025-04-25T04:11:42.1723719Z * [new tag] ciflow/inductor/150937 -> ciflow/inductor/150937 2025-04-25T04:11:42.1724154Z * [new tag] ciflow/inductor/150944 -> ciflow/inductor/150944 2025-04-25T04:11:42.1724598Z * [new tag] ciflow/inductor/150954 -> ciflow/inductor/150954 2025-04-25T04:11:42.1725025Z * [new tag] ciflow/inductor/150962 -> ciflow/inductor/150962 2025-04-25T04:11:42.1725463Z * [new tag] ciflow/inductor/150968 -> ciflow/inductor/150968 2025-04-25T04:11:42.1725906Z * [new tag] ciflow/inductor/150971 -> ciflow/inductor/150971 2025-04-25T04:11:42.1726433Z * [new tag] ciflow/inductor/151002 -> ciflow/inductor/151002 2025-04-25T04:11:42.1726877Z * [new tag] ciflow/inductor/151009 -> ciflow/inductor/151009 2025-04-25T04:11:42.1727386Z * [new tag] ciflow/inductor/151023 -> ciflow/inductor/151023 2025-04-25T04:11:42.1727827Z * [new tag] ciflow/inductor/151038 -> ciflow/inductor/151038 2025-04-25T04:11:42.1728912Z * [new tag] ciflow/inductor/151041 -> ciflow/inductor/151041 2025-04-25T04:11:42.1729366Z * [new tag] ciflow/inductor/151056 -> ciflow/inductor/151056 2025-04-25T04:11:42.1729811Z * [new tag] ciflow/inductor/151067 -> ciflow/inductor/151067 2025-04-25T04:11:42.1730246Z * [new tag] ciflow/inductor/151109 -> ciflow/inductor/151109 2025-04-25T04:11:42.1730685Z * [new tag] ciflow/inductor/151115 -> ciflow/inductor/151115 2025-04-25T04:11:42.1731125Z * [new tag] ciflow/inductor/151120 -> ciflow/inductor/151120 2025-04-25T04:11:42.2035248Z * [new tag] ciflow/inductor/151135 -> ciflow/inductor/151135 2025-04-25T04:11:42.2035757Z * [new tag] ciflow/inductor/151184 -> ciflow/inductor/151184 2025-04-25T04:11:42.2036189Z * [new tag] ciflow/inductor/151210 -> ciflow/inductor/151210 2025-04-25T04:11:42.2036639Z * [new tag] ciflow/inductor/151217 -> ciflow/inductor/151217 2025-04-25T04:11:42.2037072Z * [new tag] ciflow/inductor/151225 -> ciflow/inductor/151225 2025-04-25T04:11:42.2037513Z * [new tag] ciflow/inductor/151256 -> ciflow/inductor/151256 2025-04-25T04:11:42.2037957Z * [new tag] ciflow/inductor/151265 -> ciflow/inductor/151265 2025-04-25T04:11:42.2038382Z * [new tag] ciflow/inductor/151271 -> ciflow/inductor/151271 2025-04-25T04:11:42.2038822Z * [new tag] ciflow/inductor/151277 -> ciflow/inductor/151277 2025-04-25T04:11:42.2039259Z * [new tag] ciflow/inductor/151278 -> ciflow/inductor/151278 2025-04-25T04:11:42.2039691Z * [new tag] ciflow/inductor/151315 -> ciflow/inductor/151315 2025-04-25T04:11:42.2040130Z * [new tag] ciflow/inductor/151318 -> ciflow/inductor/151318 2025-04-25T04:11:42.2040557Z * [new tag] ciflow/inductor/151343 -> ciflow/inductor/151343 2025-04-25T04:11:42.2040988Z * [new tag] ciflow/inductor/151349 -> ciflow/inductor/151349 2025-04-25T04:11:42.2041430Z * [new tag] ciflow/inductor/151357 -> ciflow/inductor/151357 2025-04-25T04:11:42.2041861Z * [new tag] ciflow/inductor/151405 -> ciflow/inductor/151405 2025-04-25T04:11:42.2042299Z * [new tag] ciflow/inductor/151406 -> ciflow/inductor/151406 2025-04-25T04:11:42.2042878Z * [new tag] ciflow/inductor/151407 -> ciflow/inductor/151407 2025-04-25T04:11:42.2043322Z * [new tag] ciflow/inductor/151421 -> ciflow/inductor/151421 2025-04-25T04:11:42.2043766Z * [new tag] ciflow/inductor/151422 -> ciflow/inductor/151422 2025-04-25T04:11:42.2044192Z * [new tag] ciflow/inductor/151481 -> ciflow/inductor/151481 2025-04-25T04:11:42.2044639Z * [new tag] ciflow/inductor/151495 -> ciflow/inductor/151495 2025-04-25T04:11:42.2045071Z * [new tag] ciflow/inductor/151497 -> ciflow/inductor/151497 2025-04-25T04:11:42.2045504Z * [new tag] ciflow/inductor/151530 -> ciflow/inductor/151530 2025-04-25T04:11:42.2045933Z * [new tag] ciflow/inductor/151533 -> ciflow/inductor/151533 2025-04-25T04:11:42.2046436Z * [new tag] ciflow/inductor/151548 -> ciflow/inductor/151548 2025-04-25T04:11:42.2046895Z * [new tag] ciflow/inductor/151568 -> ciflow/inductor/151568 2025-04-25T04:11:42.2047329Z * [new tag] ciflow/inductor/151581 -> ciflow/inductor/151581 2025-04-25T04:11:42.2047852Z * [new tag] ciflow/inductor/151585 -> ciflow/inductor/151585 2025-04-25T04:11:42.2048283Z * [new tag] ciflow/inductor/151588 -> ciflow/inductor/151588 2025-04-25T04:11:42.2048726Z * [new tag] ciflow/inductor/151604 -> ciflow/inductor/151604 2025-04-25T04:11:42.2049174Z * [new tag] ciflow/inductor/151608 -> ciflow/inductor/151608 2025-04-25T04:11:42.2049605Z * [new tag] ciflow/inductor/151620 -> ciflow/inductor/151620 2025-04-25T04:11:42.2050048Z * [new tag] ciflow/inductor/151655 -> ciflow/inductor/151655 2025-04-25T04:11:42.2050482Z * [new tag] ciflow/inductor/151677 -> ciflow/inductor/151677 2025-04-25T04:11:42.2050926Z * [new tag] ciflow/inductor/151679 -> ciflow/inductor/151679 2025-04-25T04:11:42.2051360Z * [new tag] ciflow/inductor/151691 -> ciflow/inductor/151691 2025-04-25T04:11:42.2051793Z * [new tag] ciflow/inductor/151711 -> ciflow/inductor/151711 2025-04-25T04:11:42.2052236Z * [new tag] ciflow/inductor/151713 -> ciflow/inductor/151713 2025-04-25T04:11:42.2052667Z * [new tag] ciflow/inductor/151718 -> ciflow/inductor/151718 2025-04-25T04:11:42.2053103Z * [new tag] ciflow/inductor/151719 -> ciflow/inductor/151719 2025-04-25T04:11:42.2053529Z * [new tag] ciflow/inductor/151728 -> ciflow/inductor/151728 2025-04-25T04:11:42.2053964Z * [new tag] ciflow/inductor/151731 -> ciflow/inductor/151731 2025-04-25T04:11:42.2054404Z * [new tag] ciflow/inductor/151756 -> ciflow/inductor/151756 2025-04-25T04:11:42.2054837Z * [new tag] ciflow/inductor/151764 -> ciflow/inductor/151764 2025-04-25T04:11:42.2055279Z * [new tag] ciflow/inductor/151770 -> ciflow/inductor/151770 2025-04-25T04:11:42.2055714Z * [new tag] ciflow/inductor/151773 -> ciflow/inductor/151773 2025-04-25T04:11:42.2056147Z * [new tag] ciflow/inductor/151774 -> ciflow/inductor/151774 2025-04-25T04:11:42.2056583Z * [new tag] ciflow/inductor/151775 -> ciflow/inductor/151775 2025-04-25T04:11:42.2057011Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-04-25T04:11:42.2347803Z * [new tag] ciflow/inductor/151778 -> ciflow/inductor/151778 2025-04-25T04:11:42.2348305Z * [new tag] ciflow/inductor/151822 -> ciflow/inductor/151822 2025-04-25T04:11:42.2348737Z * [new tag] ciflow/inductor/151825 -> ciflow/inductor/151825 2025-04-25T04:11:42.2349312Z * [new tag] ciflow/inductor/151833 -> ciflow/inductor/151833 2025-04-25T04:11:42.2349741Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-04-25T04:11:42.2350189Z * [new tag] ciflow/inductor/151852 -> ciflow/inductor/151852 2025-04-25T04:11:42.2350617Z * [new tag] ciflow/inductor/151854 -> ciflow/inductor/151854 2025-04-25T04:11:42.2351058Z * [new tag] ciflow/inductor/151860 -> ciflow/inductor/151860 2025-04-25T04:11:42.2351495Z * [new tag] ciflow/inductor/151875 -> ciflow/inductor/151875 2025-04-25T04:11:42.2351916Z * [new tag] ciflow/inductor/151885 -> ciflow/inductor/151885 2025-04-25T04:11:42.2352349Z * [new tag] ciflow/inductor/151900 -> ciflow/inductor/151900 2025-04-25T04:11:42.2352779Z * [new tag] ciflow/inductor/151919 -> ciflow/inductor/151919 2025-04-25T04:11:42.2353226Z * [new tag] ciflow/inductor/151920 -> ciflow/inductor/151920 2025-04-25T04:11:42.2353659Z * [new tag] ciflow/inductor/151923 -> ciflow/inductor/151923 2025-04-25T04:11:42.2354090Z * [new tag] ciflow/inductor/151924 -> ciflow/inductor/151924 2025-04-25T04:11:42.2354600Z * [new tag] ciflow/inductor/151928 -> ciflow/inductor/151928 2025-04-25T04:11:42.2355040Z * [new tag] ciflow/inductor/151935 -> ciflow/inductor/151935 2025-04-25T04:11:42.2355479Z * [new tag] ciflow/inductor/151941 -> ciflow/inductor/151941 2025-04-25T04:11:42.2355928Z * [new tag] ciflow/inductor/151948 -> ciflow/inductor/151948 2025-04-25T04:11:42.2356363Z * [new tag] ciflow/inductor/151956 -> ciflow/inductor/151956 2025-04-25T04:11:42.2356803Z * [new tag] ciflow/inductor/151958 -> ciflow/inductor/151958 2025-04-25T04:11:42.2357233Z * [new tag] ciflow/inductor/151962 -> ciflow/inductor/151962 2025-04-25T04:11:42.2357674Z * [new tag] ciflow/inductor/151968 -> ciflow/inductor/151968 2025-04-25T04:11:42.2358098Z * [new tag] ciflow/inductor/151970 -> ciflow/inductor/151970 2025-04-25T04:11:42.2358548Z * [new tag] ciflow/inductor/151971 -> ciflow/inductor/151971 2025-04-25T04:11:42.2358982Z * [new tag] ciflow/inductor/151988 -> ciflow/inductor/151988 2025-04-25T04:11:42.2359405Z * [new tag] ciflow/inductor/151989 -> ciflow/inductor/151989 2025-04-25T04:11:42.2359844Z * [new tag] ciflow/inductor/151990 -> ciflow/inductor/151990 2025-04-25T04:11:42.2360274Z * [new tag] ciflow/inductor/152011 -> ciflow/inductor/152011 2025-04-25T04:11:42.2360714Z * [new tag] ciflow/inductor/152015 -> ciflow/inductor/152015 2025-04-25T04:11:42.2361153Z * [new tag] ciflow/inductor/152035 -> ciflow/inductor/152035 2025-04-25T04:11:42.2361634Z * [new tag] ciflow/inductor/152037 -> ciflow/inductor/152037 2025-04-25T04:11:42.2362118Z * [new tag] ciflow/inductor/152038 -> ciflow/inductor/152038 2025-04-25T04:11:42.2362551Z * [new tag] ciflow/inductor/152041 -> ciflow/inductor/152041 2025-04-25T04:11:42.2362993Z * [new tag] ciflow/inductor/152043 -> ciflow/inductor/152043 2025-04-25T04:11:42.2363433Z * [new tag] ciflow/inductor/152048 -> ciflow/inductor/152048 2025-04-25T04:11:42.2363865Z * [new tag] ciflow/inductor/152060 -> ciflow/inductor/152060 2025-04-25T04:11:42.2364303Z * [new tag] ciflow/inductor/152061 -> ciflow/inductor/152061 2025-04-25T04:11:42.2364730Z * [new tag] ciflow/inductor/152062 -> ciflow/inductor/152062 2025-04-25T04:11:42.2365164Z * [new tag] ciflow/inductor/152066 -> ciflow/inductor/152066 2025-04-25T04:11:42.2365673Z * [new tag] ciflow/inductor/152071 -> ciflow/inductor/152071 2025-04-25T04:11:42.2366113Z * [new tag] ciflow/inductor/152072 -> ciflow/inductor/152072 2025-04-25T04:11:42.2366623Z * [new tag] ciflow/inductor/152073 -> ciflow/inductor/152073 2025-04-25T04:11:42.2367051Z * [new tag] ciflow/inductor/152092 -> ciflow/inductor/152092 2025-04-25T04:11:42.2367534Z * [new tag] ciflow/inductor/152103 -> ciflow/inductor/152103 2025-04-25T04:11:42.2367994Z * [new tag] ciflow/inductor/152119 -> ciflow/inductor/152119 2025-04-25T04:11:42.2368434Z * [new tag] ciflow/inductor/152120 -> ciflow/inductor/152120 2025-04-25T04:11:42.2368884Z * [new tag] ciflow/inductor/152125 -> ciflow/inductor/152125 2025-04-25T04:11:42.2369310Z * [new tag] ciflow/inductor/152136 -> ciflow/inductor/152136 2025-04-25T04:11:42.2656693Z * [new tag] ciflow/inductor/152137 -> ciflow/inductor/152137 2025-04-25T04:11:42.2657198Z * [new tag] ciflow/inductor/152139 -> ciflow/inductor/152139 2025-04-25T04:11:42.2657776Z * [new tag] ciflow/inductor/152142 -> ciflow/inductor/152142 2025-04-25T04:11:42.2658222Z * [new tag] ciflow/inductor/152145 -> ciflow/inductor/152145 2025-04-25T04:11:42.2658659Z * [new tag] ciflow/inductor/152146 -> ciflow/inductor/152146 2025-04-25T04:11:42.2659110Z * [new tag] ciflow/inductor/152147 -> ciflow/inductor/152147 2025-04-25T04:11:42.2659548Z * [new tag] ciflow/inductor/152148 -> ciflow/inductor/152148 2025-04-25T04:11:42.2659989Z * [new tag] ciflow/inductor/152149 -> ciflow/inductor/152149 2025-04-25T04:11:42.2660421Z * [new tag] ciflow/inductor/152153 -> ciflow/inductor/152153 2025-04-25T04:11:42.2660860Z * [new tag] ciflow/inductor/152159 -> ciflow/inductor/152159 2025-04-25T04:11:42.2661310Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-04-25T04:11:42.2661755Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-04-25T04:11:42.2662196Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-04-25T04:11:42.2662627Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-04-25T04:11:42.2663052Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-04-25T04:11:42.2663489Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-04-25T04:11:42.2663946Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-04-25T04:11:42.2664445Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-04-25T04:11:42.2664927Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-04-25T04:11:42.2665390Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-04-25T04:11:42.2665868Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-04-25T04:11:42.2666340Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-04-25T04:11:42.2666806Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-04-25T04:11:42.2667275Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-04-25T04:11:42.2667745Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-04-25T04:11:42.2668227Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-04-25T04:11:42.2668772Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-04-25T04:11:42.2669252Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-04-25T04:11:42.2669721Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-04-25T04:11:42.2670284Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-04-25T04:11:42.2670792Z * [new tag] ciflow/linux-aarch64/140159 -> ciflow/linux-aarch64/140159 2025-04-25T04:11:42.2671261Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-04-25T04:11:42.2671726Z * [new tag] ciflow/linux-aarch64/146895 -> ciflow/linux-aarch64/146895 2025-04-25T04:11:42.2672193Z * [new tag] ciflow/linux-aarch64/147073 -> ciflow/linux-aarch64/147073 2025-04-25T04:11:42.2672663Z * [new tag] ciflow/linux-aarch64/147341 -> ciflow/linux-aarch64/147341 2025-04-25T04:11:42.2673147Z * [new tag] ciflow/linux-aarch64/147359 -> ciflow/linux-aarch64/147359 2025-04-25T04:11:42.2673606Z * [new tag] ciflow/linux-aarch64/147498 -> ciflow/linux-aarch64/147498 2025-04-25T04:11:42.2674170Z * [new tag] ciflow/linux-aarch64/147763 -> ciflow/linux-aarch64/147763 2025-04-25T04:11:42.2674633Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-04-25T04:11:42.2675112Z * [new tag] ciflow/linux-aarch64/147917 -> ciflow/linux-aarch64/147917 2025-04-25T04:11:42.2675575Z * [new tag] ciflow/linux-aarch64/148163 -> ciflow/linux-aarch64/148163 2025-04-25T04:11:42.2676046Z * [new tag] ciflow/linux-aarch64/148173 -> ciflow/linux-aarch64/148173 2025-04-25T04:11:42.2676525Z * [new tag] ciflow/linux-aarch64/148424 -> ciflow/linux-aarch64/148424 2025-04-25T04:11:42.2676987Z * [new tag] ciflow/linux-aarch64/150095 -> ciflow/linux-aarch64/150095 2025-04-25T04:11:42.2677464Z * [new tag] ciflow/linux-aarch64/150525 -> ciflow/linux-aarch64/150525 2025-04-25T04:11:42.2677926Z * [new tag] ciflow/linux-aarch64/151896 -> ciflow/linux-aarch64/151896 2025-04-25T04:11:42.2678402Z * [new tag] ciflow/linux-aarch64/152001 -> ciflow/linux-aarch64/152001 2025-04-25T04:11:42.2984924Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-04-25T04:11:42.2985360Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-04-25T04:11:42.2985787Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-04-25T04:11:42.2986187Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-04-25T04:11:42.2986571Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-04-25T04:11:42.2986960Z * [new tag] ciflow/mps/138640 -> ciflow/mps/138640 2025-04-25T04:11:42.2987395Z * [new tag] ciflow/mps/140159 -> ciflow/mps/140159 2025-04-25T04:11:42.2987864Z * [new tag] ciflow/mps/142202 -> ciflow/mps/142202 2025-04-25T04:11:42.2988266Z * [new tag] ciflow/mps/143666 -> ciflow/mps/143666 2025-04-25T04:11:42.2988651Z * [new tag] ciflow/mps/144405 -> ciflow/mps/144405 2025-04-25T04:11:42.2989045Z * [new tag] ciflow/mps/145955 -> ciflow/mps/145955 2025-04-25T04:11:42.2989428Z * [new tag] ciflow/mps/146436 -> ciflow/mps/146436 2025-04-25T04:11:42.2989821Z * [new tag] ciflow/mps/146989 -> ciflow/mps/146989 2025-04-25T04:11:42.2990203Z * [new tag] ciflow/mps/147583 -> ciflow/mps/147583 2025-04-25T04:11:42.2990598Z * [new tag] ciflow/mps/147644 -> ciflow/mps/147644 2025-04-25T04:11:42.2991153Z * [new tag] ciflow/mps/147893 -> ciflow/mps/147893 2025-04-25T04:11:42.2991539Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-04-25T04:11:42.2991933Z * [new tag] ciflow/mps/148415 -> ciflow/mps/148415 2025-04-25T04:11:42.2992323Z * [new tag] ciflow/mps/149173 -> ciflow/mps/149173 2025-04-25T04:11:42.2992715Z * [new tag] ciflow/mps/150195 -> ciflow/mps/150195 2025-04-25T04:11:42.2993156Z * [new tag] ciflow/mps/150464 -> ciflow/mps/150464 2025-04-25T04:11:42.2993580Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-04-25T04:11:42.2993973Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-04-25T04:11:42.2994355Z * [new tag] ciflow/mps/150964 -> ciflow/mps/150964 2025-04-25T04:11:42.2994748Z * [new tag] ciflow/mps/151177 -> ciflow/mps/151177 2025-04-25T04:11:42.2995139Z * [new tag] ciflow/mps/151292 -> ciflow/mps/151292 2025-04-25T04:11:42.2995527Z * [new tag] ciflow/mps/151439 -> ciflow/mps/151439 2025-04-25T04:11:42.2996008Z * [new tag] ciflow/mps/151822 -> ciflow/mps/151822 2025-04-25T04:11:42.2996404Z * [new tag] ciflow/mps/151913 -> ciflow/mps/151913 2025-04-25T04:11:42.2996797Z * [new tag] ciflow/mps/151916 -> ciflow/mps/151916 2025-04-25T04:11:42.2997216Z * [new tag] ciflow/nightly/149192 -> ciflow/nightly/149192 2025-04-25T04:11:42.2997661Z * [new tag] ciflow/nightly/151567 -> ciflow/nightly/151567 2025-04-25T04:11:42.2998098Z * [new tag] ciflow/nightly/151581 -> ciflow/nightly/151581 2025-04-25T04:11:42.2998585Z * [new tag] ciflow/op-benchmark/151581 -> ciflow/op-benchmark/151581 2025-04-25T04:11:42.2999113Z * [new tag] ciflow/op-benchmark/151585 -> ciflow/op-benchmark/151585 2025-04-25T04:11:42.2999644Z * [new tag] ciflow/periodic-rocm-mi300/150580 -> ciflow/periodic-rocm-mi300/150580 2025-04-25T04:11:42.3000246Z * [new tag] ciflow/periodic-rocm-mi300/151368 -> ciflow/periodic-rocm-mi300/151368 2025-04-25T04:11:42.3000823Z * [new tag] ciflow/periodic-rocm-mi300/151581 -> ciflow/periodic-rocm-mi300/151581 2025-04-25T04:11:42.3001405Z * [new tag] ciflow/periodic-rocm-mi300/151708 -> ciflow/periodic-rocm-mi300/151708 2025-04-25T04:11:42.3001993Z * [new tag] ciflow/periodic-rocm-mi300/151977 -> ciflow/periodic-rocm-mi300/151977 2025-04-25T04:11:42.3002508Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-04-25T04:11:42.3002962Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-04-25T04:11:42.3003403Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-04-25T04:11:42.3003849Z * [new tag] ciflow/periodic/141730 -> ciflow/periodic/141730 2025-04-25T04:11:42.3004287Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-04-25T04:11:42.3004764Z * [new tag] ciflow/periodic/146903 -> ciflow/periodic/146903 2025-04-25T04:11:42.3005239Z * [new tag] ciflow/periodic/148760 -> ciflow/periodic/148760 2025-04-25T04:11:42.3005668Z * [new tag] ciflow/periodic/149192 -> ciflow/periodic/149192 2025-04-25T04:11:42.3006105Z * [new tag] ciflow/periodic/150411 -> ciflow/periodic/150411 2025-04-25T04:11:42.3006608Z * [new tag] ciflow/periodic/150422 -> ciflow/periodic/150422 2025-04-25T04:11:42.3310669Z * [new tag] ciflow/periodic/150434 -> ciflow/periodic/150434 2025-04-25T04:11:42.3311259Z * [new tag] ciflow/periodic/150705 -> ciflow/periodic/150705 2025-04-25T04:11:42.3311717Z * [new tag] ciflow/periodic/150895 -> ciflow/periodic/150895 2025-04-25T04:11:42.3312154Z * [new tag] ciflow/periodic/151292 -> ciflow/periodic/151292 2025-04-25T04:11:42.3312597Z * [new tag] ciflow/periodic/151297 -> ciflow/periodic/151297 2025-04-25T04:11:42.3313043Z * [new tag] ciflow/periodic/151368 -> ciflow/periodic/151368 2025-04-25T04:11:42.3313472Z * [new tag] ciflow/periodic/151581 -> ciflow/periodic/151581 2025-04-25T04:11:42.3313921Z * [new tag] ciflow/periodic/151585 -> ciflow/periodic/151585 2025-04-25T04:11:42.3314367Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-04-25T04:11:42.3314827Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-04-25T04:11:42.3315259Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-04-25T04:11:42.3315698Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-04-25T04:11:42.3316167Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-04-25T04:11:42.3316760Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-04-25T04:11:42.3317297Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-04-25T04:11:42.3317830Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-04-25T04:11:42.3318613Z * [new tag] ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc -> ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc 2025-04-25T04:11:42.3319386Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-04-25T04:11:42.3319898Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-04-25T04:11:42.3320426Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-04-25T04:11:42.3320893Z * [new tag] ciflow/rocm-mi300/139975 -> ciflow/rocm-mi300/139975 2025-04-25T04:11:42.3321330Z * [new tag] ciflow/rocm-mi300/150580 -> ciflow/rocm-mi300/150580 2025-04-25T04:11:42.3321769Z * [new tag] ciflow/rocm-mi300/151368 -> ciflow/rocm-mi300/151368 2025-04-25T04:11:42.3322207Z * [new tag] ciflow/rocm-mi300/151465 -> ciflow/rocm-mi300/151465 2025-04-25T04:11:42.3322639Z * [new tag] ciflow/rocm-mi300/151581 -> ciflow/rocm-mi300/151581 2025-04-25T04:11:42.3323075Z * [new tag] ciflow/rocm-mi300/151708 -> ciflow/rocm-mi300/151708 2025-04-25T04:11:42.3323500Z * [new tag] ciflow/rocm-mi300/151727 -> ciflow/rocm-mi300/151727 2025-04-25T04:11:42.3323924Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-04-25T04:11:42.3324330Z * [new tag] ciflow/rocm/130522 -> ciflow/rocm/130522 2025-04-25T04:11:42.3324731Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-04-25T04:11:42.3325122Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-04-25T04:11:42.3325517Z * [new tag] ciflow/rocm/142859 -> ciflow/rocm/142859 2025-04-25T04:11:42.3325913Z * [new tag] ciflow/rocm/144572 -> ciflow/rocm/144572 2025-04-25T04:11:42.3326363Z * [new tag] ciflow/rocm/145475 -> ciflow/rocm/145475 2025-04-25T04:11:42.3326765Z * [new tag] ciflow/rocm/145584 -> ciflow/rocm/145584 2025-04-25T04:11:42.3327152Z * [new tag] ciflow/rocm/145685 -> ciflow/rocm/145685 2025-04-25T04:11:42.3327556Z * [new tag] ciflow/rocm/146903 -> ciflow/rocm/146903 2025-04-25T04:11:42.3328050Z * [new tag] ciflow/rocm/148037 -> ciflow/rocm/148037 2025-04-25T04:11:42.3328447Z * [new tag] ciflow/rocm/148355 -> ciflow/rocm/148355 2025-04-25T04:11:42.3328858Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-04-25T04:11:42.3329250Z * [new tag] ciflow/rocm/148672 -> ciflow/rocm/148672 2025-04-25T04:11:42.3329646Z * [new tag] ciflow/rocm/148864 -> ciflow/rocm/148864 2025-04-25T04:11:42.3330038Z * [new tag] ciflow/rocm/148880 -> ciflow/rocm/148880 2025-04-25T04:11:42.3330449Z * [new tag] ciflow/rocm/149039 -> ciflow/rocm/149039 2025-04-25T04:11:42.3330850Z * [new tag] ciflow/rocm/149041 -> ciflow/rocm/149041 2025-04-25T04:11:42.3331237Z * [new tag] ciflow/rocm/149466 -> ciflow/rocm/149466 2025-04-25T04:11:42.3331637Z * [new tag] ciflow/rocm/149506 -> ciflow/rocm/149506 2025-04-25T04:11:42.3332025Z * [new tag] ciflow/rocm/151305 -> ciflow/rocm/151305 2025-04-25T04:11:42.3332424Z * [new tag] ciflow/rocm/151326 -> ciflow/rocm/151326 2025-04-25T04:11:42.3647305Z * [new tag] ciflow/rocm/151368 -> ciflow/rocm/151368 2025-04-25T04:11:42.3647719Z * [new tag] ciflow/rocm/151439 -> ciflow/rocm/151439 2025-04-25T04:11:42.3648145Z * [new tag] ciflow/rocm/151465 -> ciflow/rocm/151465 2025-04-25T04:11:42.3648542Z * [new tag] ciflow/rocm/151581 -> ciflow/rocm/151581 2025-04-25T04:11:42.3648929Z * [new tag] ciflow/rocm/151727 -> ciflow/rocm/151727 2025-04-25T04:11:42.3649326Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-04-25T04:11:42.3649719Z * [new tag] ciflow/rocm/152133 -> ciflow/rocm/152133 2025-04-25T04:11:42.3650126Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-04-25T04:11:42.3650506Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-04-25T04:11:42.3650904Z * [new tag] ciflow/s390/150116 -> ciflow/s390/150116 2025-04-25T04:11:42.3651302Z * [new tag] ciflow/s390/150195 -> ciflow/s390/150195 2025-04-25T04:11:42.3651687Z * [new tag] ciflow/s390/150297 -> ciflow/s390/150297 2025-04-25T04:11:42.3652088Z * [new tag] ciflow/s390/151581 -> ciflow/s390/151581 2025-04-25T04:11:42.3652473Z * [new tag] ciflow/s390/151585 -> ciflow/s390/151585 2025-04-25T04:11:42.3652875Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-04-25T04:11:42.3653286Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-04-25T04:11:42.3654030Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-04-25T04:11:42.3654884Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-04-25T04:11:42.3655292Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-04-25T04:11:42.3655697Z * [new tag] ciflow/slow/146903 -> ciflow/slow/146903 2025-04-25T04:11:42.3656099Z * [new tag] ciflow/slow/149192 -> ciflow/slow/149192 2025-04-25T04:11:42.3656490Z * [new tag] ciflow/slow/151207 -> ciflow/slow/151207 2025-04-25T04:11:42.3656893Z * [new tag] ciflow/slow/151581 -> ciflow/slow/151581 2025-04-25T04:11:42.3657292Z * [new tag] ciflow/slow/151585 -> ciflow/slow/151585 2025-04-25T04:11:42.3657691Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-04-25T04:11:42.3658181Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-04-25T04:11:42.3658603Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-04-25T04:11:42.3659022Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-04-25T04:11:42.3659431Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-04-25T04:11:42.3659839Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-04-25T04:11:42.3660236Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-04-25T04:11:42.3660647Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-04-25T04:11:42.3661350Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-04-25T04:11:42.3662034Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-04-25T04:11:42.3662451Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-04-25T04:11:42.3662856Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-04-25T04:11:42.3663345Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-04-25T04:11:42.3663748Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-04-25T04:11:42.3664485Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-04-25T04:11:42.3665221Z * [new tag] ciflow/torchao/149192 -> ciflow/torchao/149192 2025-04-25T04:11:42.3665668Z * [new tag] ciflow/torchbench/151581 -> ciflow/torchbench/151581 2025-04-25T04:11:42.3666133Z * [new tag] ciflow/torchbench/151585 -> ciflow/torchbench/151585 2025-04-25T04:11:42.3666567Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-04-25T04:11:42.3666972Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-04-25T04:11:42.3667392Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-04-25T04:11:42.3667786Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-04-25T04:11:42.3668195Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-04-25T04:11:42.3668590Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-04-25T04:11:42.3668997Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-04-25T04:11:42.3968209Z * [new tag] ciflow/trunk/125806 -> ciflow/trunk/125806 2025-04-25T04:11:42.3968651Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-04-25T04:11:42.3969061Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-04-25T04:11:42.3969483Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-04-25T04:11:42.3969876Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-04-25T04:11:42.3970278Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-04-25T04:11:42.3970669Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-04-25T04:11:42.3971072Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-04-25T04:11:42.3971475Z * [new tag] ciflow/trunk/130141 -> ciflow/trunk/130141 2025-04-25T04:11:42.3971876Z * [new tag] ciflow/trunk/130522 -> ciflow/trunk/130522 2025-04-25T04:11:42.3972278Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-04-25T04:11:42.3972671Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-04-25T04:11:42.3973189Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-04-25T04:11:42.3973593Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-04-25T04:11:42.3974008Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-04-25T04:11:42.3974411Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-04-25T04:11:42.3974811Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-04-25T04:11:42.3975213Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-04-25T04:11:42.3975617Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-04-25T04:11:42.3976023Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-04-25T04:11:42.3976419Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-04-25T04:11:42.3976820Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-04-25T04:11:42.3977227Z * [new tag] ciflow/trunk/136780 -> ciflow/trunk/136780 2025-04-25T04:11:42.3977707Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-04-25T04:11:42.3978118Z * [new tag] ciflow/trunk/136835 -> ciflow/trunk/136835 2025-04-25T04:11:42.3978515Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-04-25T04:11:42.3978920Z * [new tag] ciflow/trunk/138436 -> ciflow/trunk/138436 2025-04-25T04:11:42.3979334Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-04-25T04:11:42.3979732Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-04-25T04:11:42.3980141Z * [new tag] ciflow/trunk/138834 -> ciflow/trunk/138834 2025-04-25T04:11:42.3980544Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-04-25T04:11:42.3980942Z * [new tag] ciflow/trunk/139094 -> ciflow/trunk/139094 2025-04-25T04:11:42.3981333Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-04-25T04:11:42.3981735Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-04-25T04:11:42.3982137Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-04-25T04:11:42.3982533Z * [new tag] ciflow/trunk/140159 -> ciflow/trunk/140159 2025-04-25T04:11:42.3982940Z * [new tag] ciflow/trunk/140200 -> ciflow/trunk/140200 2025-04-25T04:11:42.3983338Z * [new tag] ciflow/trunk/140323 -> ciflow/trunk/140323 2025-04-25T04:11:42.3983743Z * [new tag] ciflow/trunk/140365 -> ciflow/trunk/140365 2025-04-25T04:11:42.3984144Z * [new tag] ciflow/trunk/140756 -> ciflow/trunk/140756 2025-04-25T04:11:42.3984548Z * [new tag] ciflow/trunk/140979 -> ciflow/trunk/140979 2025-04-25T04:11:42.3984950Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-04-25T04:11:42.3985351Z * [new tag] ciflow/trunk/141730 -> ciflow/trunk/141730 2025-04-25T04:11:42.3985758Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-04-25T04:11:42.3986153Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-04-25T04:11:42.3986554Z * [new tag] ciflow/trunk/142326 -> ciflow/trunk/142326 2025-04-25T04:11:42.3986959Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-04-25T04:11:42.3987361Z * [new tag] ciflow/trunk/142372 -> ciflow/trunk/142372 2025-04-25T04:11:42.3987768Z * [new tag] ciflow/trunk/142859 -> ciflow/trunk/142859 2025-04-25T04:11:42.3988249Z * [new tag] ciflow/trunk/143666 -> ciflow/trunk/143666 2025-04-25T04:11:42.3988657Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-04-25T04:11:42.4322736Z * [new tag] ciflow/trunk/143833 -> ciflow/trunk/143833 2025-04-25T04:11:42.4323203Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-04-25T04:11:42.4323630Z * [new tag] ciflow/trunk/144019 -> ciflow/trunk/144019 2025-04-25T04:11:42.4324037Z * [new tag] ciflow/trunk/144268 -> ciflow/trunk/144268 2025-04-25T04:11:42.4324440Z * [new tag] ciflow/trunk/144272 -> ciflow/trunk/144272 2025-04-25T04:11:42.4324852Z * [new tag] ciflow/trunk/144293 -> ciflow/trunk/144293 2025-04-25T04:11:42.4325250Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-04-25T04:11:42.4325662Z * [new tag] ciflow/trunk/144616 -> ciflow/trunk/144616 2025-04-25T04:11:42.4326057Z * [new tag] ciflow/trunk/144721 -> ciflow/trunk/144721 2025-04-25T04:11:42.4326511Z * [new tag] ciflow/trunk/144756 -> ciflow/trunk/144756 2025-04-25T04:11:42.4327050Z * [new tag] ciflow/trunk/144844 -> ciflow/trunk/144844 2025-04-25T04:11:42.4327457Z * [new tag] ciflow/trunk/144925 -> ciflow/trunk/144925 2025-04-25T04:11:42.4327859Z * [new tag] ciflow/trunk/144992 -> ciflow/trunk/144992 2025-04-25T04:11:42.4328262Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-04-25T04:11:42.4328668Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-04-25T04:11:42.4329082Z * [new tag] ciflow/trunk/145224 -> ciflow/trunk/145224 2025-04-25T04:11:42.4329483Z * [new tag] ciflow/trunk/145559 -> ciflow/trunk/145559 2025-04-25T04:11:42.4329894Z * [new tag] ciflow/trunk/145677 -> ciflow/trunk/145677 2025-04-25T04:11:42.4330294Z * [new tag] ciflow/trunk/145719 -> ciflow/trunk/145719 2025-04-25T04:11:42.4330705Z * [new tag] ciflow/trunk/145936 -> ciflow/trunk/145936 2025-04-25T04:11:42.4331098Z * [new tag] ciflow/trunk/145979 -> ciflow/trunk/145979 2025-04-25T04:11:42.4331502Z * [new tag] ciflow/trunk/146055 -> ciflow/trunk/146055 2025-04-25T04:11:42.4331904Z * [new tag] ciflow/trunk/146090 -> ciflow/trunk/146090 2025-04-25T04:11:42.4332302Z * [new tag] ciflow/trunk/146115 -> ciflow/trunk/146115 2025-04-25T04:11:42.4332707Z * [new tag] ciflow/trunk/146182 -> ciflow/trunk/146182 2025-04-25T04:11:42.4333100Z * [new tag] ciflow/trunk/146275 -> ciflow/trunk/146275 2025-04-25T04:11:42.4333502Z * [new tag] ciflow/trunk/146289 -> ciflow/trunk/146289 2025-04-25T04:11:42.4333902Z * [new tag] ciflow/trunk/146335 -> ciflow/trunk/146335 2025-04-25T04:11:42.4334302Z * [new tag] ciflow/trunk/146489 -> ciflow/trunk/146489 2025-04-25T04:11:42.4334708Z * [new tag] ciflow/trunk/146530 -> ciflow/trunk/146530 2025-04-25T04:11:42.4335109Z * [new tag] ciflow/trunk/146561 -> ciflow/trunk/146561 2025-04-25T04:11:42.4335509Z * [new tag] ciflow/trunk/146562 -> ciflow/trunk/146562 2025-04-25T04:11:42.4335902Z * [new tag] ciflow/trunk/146622 -> ciflow/trunk/146622 2025-04-25T04:11:42.4336309Z * [new tag] ciflow/trunk/146661 -> ciflow/trunk/146661 2025-04-25T04:11:42.4336701Z * [new tag] ciflow/trunk/146718 -> ciflow/trunk/146718 2025-04-25T04:11:42.4337190Z * [new tag] ciflow/trunk/146777 -> ciflow/trunk/146777 2025-04-25T04:11:42.4337592Z * [new tag] ciflow/trunk/146845 -> ciflow/trunk/146845 2025-04-25T04:11:42.4338001Z * [new tag] ciflow/trunk/146874 -> ciflow/trunk/146874 2025-04-25T04:11:42.4338412Z * [new tag] ciflow/trunk/146903 -> ciflow/trunk/146903 2025-04-25T04:11:42.4338808Z * [new tag] ciflow/trunk/146942 -> ciflow/trunk/146942 2025-04-25T04:11:42.4339215Z * [new tag] ciflow/trunk/147053 -> ciflow/trunk/147053 2025-04-25T04:11:42.4339607Z * [new tag] ciflow/trunk/147095 -> ciflow/trunk/147095 2025-04-25T04:11:42.4340010Z * [new tag] ciflow/trunk/147155 -> ciflow/trunk/147155 2025-04-25T04:11:42.4340412Z * [new tag] ciflow/trunk/147314 -> ciflow/trunk/147314 2025-04-25T04:11:42.4340806Z * [new tag] ciflow/trunk/147368 -> ciflow/trunk/147368 2025-04-25T04:11:42.4341213Z * [new tag] ciflow/trunk/147433 -> ciflow/trunk/147433 2025-04-25T04:11:42.4341606Z * [new tag] ciflow/trunk/147470 -> ciflow/trunk/147470 2025-04-25T04:11:42.4342076Z * [new tag] ciflow/trunk/147481 -> ciflow/trunk/147481 2025-04-25T04:11:42.4342483Z * [new tag] ciflow/trunk/147498 -> ciflow/trunk/147498 2025-04-25T04:11:42.4342892Z * [new tag] ciflow/trunk/147583 -> ciflow/trunk/147583 2025-04-25T04:11:42.4343302Z * [new tag] ciflow/trunk/147664 -> ciflow/trunk/147664 2025-04-25T04:11:42.4343706Z * [new tag] ciflow/trunk/147670 -> ciflow/trunk/147670 2025-04-25T04:11:42.4663869Z * [new tag] ciflow/trunk/147758 -> ciflow/trunk/147758 2025-04-25T04:11:42.4664321Z * [new tag] ciflow/trunk/147797 -> ciflow/trunk/147797 2025-04-25T04:11:42.4664747Z * [new tag] ciflow/trunk/147808 -> ciflow/trunk/147808 2025-04-25T04:11:42.4665150Z * [new tag] ciflow/trunk/147820 -> ciflow/trunk/147820 2025-04-25T04:11:42.4665559Z * [new tag] ciflow/trunk/147881 -> ciflow/trunk/147881 2025-04-25T04:11:42.4665950Z * [new tag] ciflow/trunk/147902 -> ciflow/trunk/147902 2025-04-25T04:11:42.4666348Z * [new tag] ciflow/trunk/147910 -> ciflow/trunk/147910 2025-04-25T04:11:42.4666766Z * [new tag] ciflow/trunk/147917 -> ciflow/trunk/147917 2025-04-25T04:11:42.4667163Z * [new tag] ciflow/trunk/148024 -> ciflow/trunk/148024 2025-04-25T04:11:42.4667567Z * [new tag] ciflow/trunk/148037 -> ciflow/trunk/148037 2025-04-25T04:11:42.4667956Z * [new tag] ciflow/trunk/148104 -> ciflow/trunk/148104 2025-04-25T04:11:42.4668369Z * [new tag] ciflow/trunk/148140 -> ciflow/trunk/148140 2025-04-25T04:11:42.4668760Z * [new tag] ciflow/trunk/148163 -> ciflow/trunk/148163 2025-04-25T04:11:42.4669172Z * [new tag] ciflow/trunk/148173 -> ciflow/trunk/148173 2025-04-25T04:11:42.4669581Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-04-25T04:11:42.4669972Z * [new tag] ciflow/trunk/148206 -> ciflow/trunk/148206 2025-04-25T04:11:42.4670373Z * [new tag] ciflow/trunk/148380 -> ciflow/trunk/148380 2025-04-25T04:11:42.4670772Z * [new tag] ciflow/trunk/148419 -> ciflow/trunk/148419 2025-04-25T04:11:42.4671170Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-04-25T04:11:42.4671567Z * [new tag] ciflow/trunk/148502 -> ciflow/trunk/148502 2025-04-25T04:11:42.4672099Z * [new tag] ciflow/trunk/148590 -> ciflow/trunk/148590 2025-04-25T04:11:42.4672506Z * [new tag] ciflow/trunk/148605 -> ciflow/trunk/148605 2025-04-25T04:11:42.4672900Z * [new tag] ciflow/trunk/148611 -> ciflow/trunk/148611 2025-04-25T04:11:42.4673320Z * [new tag] ciflow/trunk/148684 -> ciflow/trunk/148684 2025-04-25T04:11:42.4673727Z * [new tag] ciflow/trunk/148753 -> ciflow/trunk/148753 2025-04-25T04:11:42.4674117Z * [new tag] ciflow/trunk/148773 -> ciflow/trunk/148773 2025-04-25T04:11:42.4674513Z * [new tag] ciflow/trunk/148864 -> ciflow/trunk/148864 2025-04-25T04:11:42.4674907Z * [new tag] ciflow/trunk/148880 -> ciflow/trunk/148880 2025-04-25T04:11:42.4675316Z * [new tag] ciflow/trunk/148893 -> ciflow/trunk/148893 2025-04-25T04:11:42.4675708Z * [new tag] ciflow/trunk/148900 -> ciflow/trunk/148900 2025-04-25T04:11:42.4676119Z * [new tag] ciflow/trunk/148903 -> ciflow/trunk/148903 2025-04-25T04:11:42.4676523Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-04-25T04:11:42.4676997Z * [new tag] ciflow/trunk/148994 -> ciflow/trunk/148994 2025-04-25T04:11:42.4677404Z * [new tag] ciflow/trunk/149041 -> ciflow/trunk/149041 2025-04-25T04:11:42.4677798Z * [new tag] ciflow/trunk/149069 -> ciflow/trunk/149069 2025-04-25T04:11:42.4678207Z * [new tag] ciflow/trunk/149113 -> ciflow/trunk/149113 2025-04-25T04:11:42.4678614Z * [new tag] ciflow/trunk/149114 -> ciflow/trunk/149114 2025-04-25T04:11:42.4679006Z * [new tag] ciflow/trunk/149144 -> ciflow/trunk/149144 2025-04-25T04:11:42.4679410Z * [new tag] ciflow/trunk/149192 -> ciflow/trunk/149192 2025-04-25T04:11:42.4679824Z * [new tag] ciflow/trunk/149213 -> ciflow/trunk/149213 2025-04-25T04:11:42.4680229Z * [new tag] ciflow/trunk/149254 -> ciflow/trunk/149254 2025-04-25T04:11:42.4680632Z * [new tag] ciflow/trunk/149330 -> ciflow/trunk/149330 2025-04-25T04:11:42.4681042Z * [new tag] ciflow/trunk/149338 -> ciflow/trunk/149338 2025-04-25T04:11:42.4681441Z * [new tag] ciflow/trunk/149346 -> ciflow/trunk/149346 2025-04-25T04:11:42.4681836Z * [new tag] ciflow/trunk/149348 -> ciflow/trunk/149348 2025-04-25T04:11:42.4682240Z * [new tag] ciflow/trunk/149373 -> ciflow/trunk/149373 2025-04-25T04:11:42.4682639Z * [new tag] ciflow/trunk/149427 -> ciflow/trunk/149427 2025-04-25T04:11:42.4683047Z * [new tag] ciflow/trunk/149486 -> ciflow/trunk/149486 2025-04-25T04:11:42.4683452Z * [new tag] ciflow/trunk/149602 -> ciflow/trunk/149602 2025-04-25T04:11:42.4683850Z * [new tag] ciflow/trunk/149744 -> ciflow/trunk/149744 2025-04-25T04:11:42.4684252Z * [new tag] ciflow/trunk/149764 -> ciflow/trunk/149764 2025-04-25T04:11:42.5013381Z * [new tag] ciflow/trunk/149769 -> ciflow/trunk/149769 2025-04-25T04:11:42.5013843Z * [new tag] ciflow/trunk/149814 -> ciflow/trunk/149814 2025-04-25T04:11:42.5014250Z * [new tag] ciflow/trunk/149843 -> ciflow/trunk/149843 2025-04-25T04:11:42.5014657Z * [new tag] ciflow/trunk/149949 -> ciflow/trunk/149949 2025-04-25T04:11:42.5015056Z * [new tag] ciflow/trunk/149967 -> ciflow/trunk/149967 2025-04-25T04:11:42.5015461Z * [new tag] ciflow/trunk/150032 -> ciflow/trunk/150032 2025-04-25T04:11:42.5015853Z * [new tag] ciflow/trunk/150079 -> ciflow/trunk/150079 2025-04-25T04:11:42.5016432Z * [new tag] ciflow/trunk/150095 -> ciflow/trunk/150095 2025-04-25T04:11:42.5016838Z * [new tag] ciflow/trunk/150105 -> ciflow/trunk/150105 2025-04-25T04:11:42.5017242Z * [new tag] ciflow/trunk/150107 -> ciflow/trunk/150107 2025-04-25T04:11:42.5017655Z * [new tag] ciflow/trunk/150108 -> ciflow/trunk/150108 2025-04-25T04:11:42.5018051Z * [new tag] ciflow/trunk/150116 -> ciflow/trunk/150116 2025-04-25T04:11:42.5018458Z * [new tag] ciflow/trunk/150166 -> ciflow/trunk/150166 2025-04-25T04:11:42.5018862Z * [new tag] ciflow/trunk/150227 -> ciflow/trunk/150227 2025-04-25T04:11:42.5019260Z * [new tag] ciflow/trunk/150297 -> ciflow/trunk/150297 2025-04-25T04:11:42.5019665Z * [new tag] ciflow/trunk/150318 -> ciflow/trunk/150318 2025-04-25T04:11:42.5020063Z * [new tag] ciflow/trunk/150338 -> ciflow/trunk/150338 2025-04-25T04:11:42.5020466Z * [new tag] ciflow/trunk/150365 -> ciflow/trunk/150365 2025-04-25T04:11:42.5020944Z * [new tag] ciflow/trunk/150383 -> ciflow/trunk/150383 2025-04-25T04:11:42.5021358Z * [new tag] ciflow/trunk/150415 -> ciflow/trunk/150415 2025-04-25T04:11:42.5021769Z * [new tag] ciflow/trunk/150429 -> ciflow/trunk/150429 2025-04-25T04:11:42.5022167Z * [new tag] ciflow/trunk/150511 -> ciflow/trunk/150511 2025-04-25T04:11:42.5022578Z * [new tag] ciflow/trunk/150546 -> ciflow/trunk/150546 2025-04-25T04:11:42.5022972Z * [new tag] ciflow/trunk/150583 -> ciflow/trunk/150583 2025-04-25T04:11:42.5023372Z * [new tag] ciflow/trunk/150634 -> ciflow/trunk/150634 2025-04-25T04:11:42.5023776Z * [new tag] ciflow/trunk/150669 -> ciflow/trunk/150669 2025-04-25T04:11:42.5024174Z * [new tag] ciflow/trunk/150678 -> ciflow/trunk/150678 2025-04-25T04:11:42.5024577Z * [new tag] ciflow/trunk/150705 -> ciflow/trunk/150705 2025-04-25T04:11:42.5024979Z * [new tag] ciflow/trunk/150717 -> ciflow/trunk/150717 2025-04-25T04:11:42.5025383Z * [new tag] ciflow/trunk/150719 -> ciflow/trunk/150719 2025-04-25T04:11:42.5025774Z * [new tag] ciflow/trunk/150732 -> ciflow/trunk/150732 2025-04-25T04:11:42.5026170Z * [new tag] ciflow/trunk/150738 -> ciflow/trunk/150738 2025-04-25T04:11:42.5026573Z * [new tag] ciflow/trunk/150739 -> ciflow/trunk/150739 2025-04-25T04:11:42.5027045Z * [new tag] ciflow/trunk/150827 -> ciflow/trunk/150827 2025-04-25T04:11:42.5027493Z * [new tag] ciflow/trunk/150872 -> ciflow/trunk/150872 2025-04-25T04:11:42.5027902Z * [new tag] ciflow/trunk/150897 -> ciflow/trunk/150897 2025-04-25T04:11:42.5028307Z * [new tag] ciflow/trunk/150904 -> ciflow/trunk/150904 2025-04-25T04:11:42.5028716Z * [new tag] ciflow/trunk/150905 -> ciflow/trunk/150905 2025-04-25T04:11:42.5029106Z * [new tag] ciflow/trunk/150937 -> ciflow/trunk/150937 2025-04-25T04:11:42.5029506Z * [new tag] ciflow/trunk/150954 -> ciflow/trunk/150954 2025-04-25T04:11:42.5029895Z * [new tag] ciflow/trunk/150979 -> ciflow/trunk/150979 2025-04-25T04:11:42.5030295Z * [new tag] ciflow/trunk/151002 -> ciflow/trunk/151002 2025-04-25T04:11:42.5030690Z * [new tag] ciflow/trunk/151023 -> ciflow/trunk/151023 2025-04-25T04:11:42.5031091Z * [new tag] ciflow/trunk/151034 -> ciflow/trunk/151034 2025-04-25T04:11:42.5031591Z * [new tag] ciflow/trunk/151041 -> ciflow/trunk/151041 2025-04-25T04:11:42.5031985Z * [new tag] ciflow/trunk/151069 -> ciflow/trunk/151069 2025-04-25T04:11:42.5032453Z * [new tag] ciflow/trunk/151079 -> ciflow/trunk/151079 2025-04-25T04:11:42.5032850Z * [new tag] ciflow/trunk/151109 -> ciflow/trunk/151109 2025-04-25T04:11:42.5033308Z * [new tag] ciflow/trunk/151125 -> ciflow/trunk/151125 2025-04-25T04:11:42.5033711Z * [new tag] ciflow/trunk/151126 -> ciflow/trunk/151126 2025-04-25T04:11:42.5034103Z * [new tag] ciflow/trunk/151146 -> ciflow/trunk/151146 2025-04-25T04:11:42.5359279Z * [new tag] ciflow/trunk/151150 -> ciflow/trunk/151150 2025-04-25T04:11:42.5359691Z * [new tag] ciflow/trunk/151177 -> ciflow/trunk/151177 2025-04-25T04:11:42.5360115Z * [new tag] ciflow/trunk/151184 -> ciflow/trunk/151184 2025-04-25T04:11:42.5360523Z * [new tag] ciflow/trunk/151207 -> ciflow/trunk/151207 2025-04-25T04:11:42.5361034Z * [new tag] ciflow/trunk/151210 -> ciflow/trunk/151210 2025-04-25T04:11:42.5361448Z * [new tag] ciflow/trunk/151221 -> ciflow/trunk/151221 2025-04-25T04:11:42.5361851Z * [new tag] ciflow/trunk/151226 -> ciflow/trunk/151226 2025-04-25T04:11:42.5362270Z * [new tag] ciflow/trunk/151253 -> ciflow/trunk/151253 2025-04-25T04:11:42.5362676Z * [new tag] ciflow/trunk/151256 -> ciflow/trunk/151256 2025-04-25T04:11:42.5363074Z * [new tag] ciflow/trunk/151292 -> ciflow/trunk/151292 2025-04-25T04:11:42.5363487Z * [new tag] ciflow/trunk/151305 -> ciflow/trunk/151305 2025-04-25T04:11:42.5363883Z * [new tag] ciflow/trunk/151318 -> ciflow/trunk/151318 2025-04-25T04:11:42.5364295Z * [new tag] ciflow/trunk/151343 -> ciflow/trunk/151343 2025-04-25T04:11:42.5364687Z * [new tag] ciflow/trunk/151349 -> ciflow/trunk/151349 2025-04-25T04:11:42.5365094Z * [new tag] ciflow/trunk/151357 -> ciflow/trunk/151357 2025-04-25T04:11:42.5365498Z * [new tag] ciflow/trunk/151407 -> ciflow/trunk/151407 2025-04-25T04:11:42.5365897Z * [new tag] ciflow/trunk/151411 -> ciflow/trunk/151411 2025-04-25T04:11:42.5366353Z * [new tag] ciflow/trunk/151439 -> ciflow/trunk/151439 2025-04-25T04:11:42.5366772Z * [new tag] ciflow/trunk/151456 -> ciflow/trunk/151456 2025-04-25T04:11:42.5367169Z * [new tag] ciflow/trunk/151464 -> ciflow/trunk/151464 2025-04-25T04:11:42.5367574Z * [new tag] ciflow/trunk/151473 -> ciflow/trunk/151473 2025-04-25T04:11:42.5367975Z * [new tag] ciflow/trunk/151481 -> ciflow/trunk/151481 2025-04-25T04:11:42.5368374Z * [new tag] ciflow/trunk/151527 -> ciflow/trunk/151527 2025-04-25T04:11:42.5368782Z * [new tag] ciflow/trunk/151530 -> ciflow/trunk/151530 2025-04-25T04:11:42.5369184Z * [new tag] ciflow/trunk/151548 -> ciflow/trunk/151548 2025-04-25T04:11:42.5369584Z * [new tag] ciflow/trunk/151557 -> ciflow/trunk/151557 2025-04-25T04:11:42.5369974Z * [new tag] ciflow/trunk/151567 -> ciflow/trunk/151567 2025-04-25T04:11:42.5370376Z * [new tag] ciflow/trunk/151581 -> ciflow/trunk/151581 2025-04-25T04:11:42.5370769Z * [new tag] ciflow/trunk/151585 -> ciflow/trunk/151585 2025-04-25T04:11:42.5371171Z * [new tag] ciflow/trunk/151596 -> ciflow/trunk/151596 2025-04-25T04:11:42.5372226Z * [new tag] ciflow/trunk/151647 -> ciflow/trunk/151647 2025-04-25T04:11:42.5372628Z * [new tag] ciflow/trunk/151655 -> ciflow/trunk/151655 2025-04-25T04:11:42.5373046Z * [new tag] ciflow/trunk/151676 -> ciflow/trunk/151676 2025-04-25T04:11:42.5373446Z * [new tag] ciflow/trunk/151677 -> ciflow/trunk/151677 2025-04-25T04:11:42.5373850Z * [new tag] ciflow/trunk/151691 -> ciflow/trunk/151691 2025-04-25T04:11:42.5374252Z * [new tag] ciflow/trunk/151728 -> ciflow/trunk/151728 2025-04-25T04:11:42.5374655Z * [new tag] ciflow/trunk/151752 -> ciflow/trunk/151752 2025-04-25T04:11:42.5375058Z * [new tag] ciflow/trunk/151764 -> ciflow/trunk/151764 2025-04-25T04:11:42.5375459Z * [new tag] ciflow/trunk/151774 -> ciflow/trunk/151774 2025-04-25T04:11:42.5375870Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-04-25T04:11:42.5376271Z * [new tag] ciflow/trunk/151795 -> ciflow/trunk/151795 2025-04-25T04:11:42.5376679Z * [new tag] ciflow/trunk/151817 -> ciflow/trunk/151817 2025-04-25T04:11:42.5377720Z * [new tag] ciflow/trunk/151849 -> ciflow/trunk/151849 2025-04-25T04:11:42.5378152Z * [new tag] ciflow/trunk/151850 -> ciflow/trunk/151850 2025-04-25T04:11:42.5378562Z * [new tag] ciflow/trunk/151852 -> ciflow/trunk/151852 2025-04-25T04:11:42.5378960Z * [new tag] ciflow/trunk/151875 -> ciflow/trunk/151875 2025-04-25T04:11:42.5379371Z * [new tag] ciflow/trunk/151920 -> ciflow/trunk/151920 2025-04-25T04:11:42.5379770Z * [new tag] ciflow/trunk/151943 -> ciflow/trunk/151943 2025-04-25T04:11:42.5380175Z * [new tag] ciflow/trunk/151968 -> ciflow/trunk/151968 2025-04-25T04:11:42.5380594Z * [new tag] ciflow/trunk/151974 -> ciflow/trunk/151974 2025-04-25T04:11:42.5380994Z * [new tag] ciflow/trunk/152026 -> ciflow/trunk/152026 2025-04-25T04:11:42.5717828Z * [new tag] ciflow/trunk/152030 -> ciflow/trunk/152030 2025-04-25T04:11:42.5718313Z * [new tag] ciflow/trunk/152038 -> ciflow/trunk/152038 2025-04-25T04:11:42.5718716Z * [new tag] ciflow/trunk/152041 -> ciflow/trunk/152041 2025-04-25T04:11:42.5719126Z * [new tag] ciflow/trunk/152045 -> ciflow/trunk/152045 2025-04-25T04:11:42.5719530Z * [new tag] ciflow/trunk/152048 -> ciflow/trunk/152048 2025-04-25T04:11:42.5719943Z * [new tag] ciflow/trunk/152060 -> ciflow/trunk/152060 2025-04-25T04:11:42.5720351Z * [new tag] ciflow/trunk/152062 -> ciflow/trunk/152062 2025-04-25T04:11:42.5720750Z * [new tag] ciflow/trunk/152066 -> ciflow/trunk/152066 2025-04-25T04:11:42.5721154Z * [new tag] ciflow/trunk/152069 -> ciflow/trunk/152069 2025-04-25T04:11:42.5721559Z * [new tag] ciflow/trunk/152076 -> ciflow/trunk/152076 2025-04-25T04:11:42.5721963Z * [new tag] ciflow/trunk/152092 -> ciflow/trunk/152092 2025-04-25T04:11:42.5722364Z * [new tag] ciflow/trunk/152103 -> ciflow/trunk/152103 2025-04-25T04:11:42.5722761Z * [new tag] ciflow/trunk/152111 -> ciflow/trunk/152111 2025-04-25T04:11:42.5723164Z * [new tag] ciflow/trunk/152125 -> ciflow/trunk/152125 2025-04-25T04:11:42.5723556Z * [new tag] ciflow/trunk/152133 -> ciflow/trunk/152133 2025-04-25T04:11:42.5723962Z * [new tag] ciflow/trunk/152139 -> ciflow/trunk/152139 2025-04-25T04:11:42.5724529Z * [new tag] ciflow/trunk/152145 -> ciflow/trunk/152145 2025-04-25T04:11:42.5724935Z * [new tag] ciflow/trunk/152148 -> ciflow/trunk/152148 2025-04-25T04:11:42.5725340Z * [new tag] ciflow/trunk/152149 -> ciflow/trunk/152149 2025-04-25T04:11:42.5725741Z * [new tag] ciflow/trunk/152151 -> ciflow/trunk/152151 2025-04-25T04:11:42.5726147Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-04-25T04:11:42.5726606Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-04-25T04:11:42.5727019Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-04-25T04:11:42.5727462Z * [new tag] ciflow/unstable/146104 -> ciflow/unstable/146104 2025-04-25T04:11:42.5727883Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-04-25T04:11:42.5728282Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-04-25T04:11:42.5728678Z * [new tag] ciflow/xpu/140365 -> ciflow/xpu/140365 2025-04-25T04:11:42.5729073Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-04-25T04:11:42.5729546Z * [new tag] ciflow/xpu/143833 -> ciflow/xpu/143833 2025-04-25T04:11:42.5729938Z * [new tag] ciflow/xpu/147355 -> ciflow/xpu/147355 2025-04-25T04:11:42.5730331Z * [new tag] ciflow/xpu/147498 -> ciflow/xpu/147498 2025-04-25T04:11:42.5730712Z * [new tag] ciflow/xpu/147583 -> ciflow/xpu/147583 2025-04-25T04:11:42.5731111Z * [new tag] ciflow/xpu/147593 -> ciflow/xpu/147593 2025-04-25T04:11:42.5731499Z * [new tag] ciflow/xpu/147664 -> ciflow/xpu/147664 2025-04-25T04:11:42.5731897Z * [new tag] ciflow/xpu/148864 -> ciflow/xpu/148864 2025-04-25T04:11:42.5732290Z * [new tag] ciflow/xpu/148880 -> ciflow/xpu/148880 2025-04-25T04:11:42.5732673Z * [new tag] ciflow/xpu/149113 -> ciflow/xpu/149113 2025-04-25T04:11:42.5733065Z * [new tag] ciflow/xpu/149114 -> ciflow/xpu/149114 2025-04-25T04:11:42.5733451Z * [new tag] ciflow/xpu/150095 -> ciflow/xpu/150095 2025-04-25T04:11:42.5733846Z * [new tag] ciflow/xpu/150525 -> ciflow/xpu/150525 2025-04-25T04:11:42.5734228Z * [new tag] ciflow/xpu/150673 -> ciflow/xpu/150673 2025-04-25T04:11:42.5734627Z * [new tag] ciflow/xpu/150827 -> ciflow/xpu/150827 2025-04-25T04:11:42.5735015Z * [new tag] ciflow/xpu/150927 -> ciflow/xpu/150927 2025-04-25T04:11:42.5735405Z * [new tag] ciflow/xpu/150983 -> ciflow/xpu/150983 2025-04-25T04:11:42.5735795Z * [new tag] ciflow/xpu/151116 -> ciflow/xpu/151116 2025-04-25T04:11:42.5736179Z * [new tag] ciflow/xpu/151226 -> ciflow/xpu/151226 2025-04-25T04:11:42.5736574Z * [new tag] ciflow/xpu/151420 -> ciflow/xpu/151420 2025-04-25T04:11:42.5736967Z * [new tag] ciflow/xpu/151439 -> ciflow/xpu/151439 2025-04-25T04:11:42.5737350Z * [new tag] ciflow/xpu/151533 -> ciflow/xpu/151533 2025-04-25T04:11:42.5737737Z * [new tag] ciflow/xpu/151560 -> ciflow/xpu/151560 2025-04-25T04:11:42.5738119Z * [new tag] ciflow/xpu/151581 -> ciflow/xpu/151581 2025-04-25T04:11:42.5738509Z * [new tag] ciflow/xpu/151596 -> ciflow/xpu/151596 2025-04-25T04:11:42.6162611Z * [new tag] ciflow/xpu/151655 -> ciflow/xpu/151655 2025-04-25T04:11:42.6163024Z * [new tag] ciflow/xpu/151767 -> ciflow/xpu/151767 2025-04-25T04:11:42.6163554Z * [new tag] ciflow/xpu/151777 -> ciflow/xpu/151777 2025-04-25T04:11:42.6163942Z * [new tag] ciflow/xpu/151976 -> ciflow/xpu/151976 2025-04-25T04:11:42.6164365Z * [new tag] ciflow/xpu/152001 -> ciflow/xpu/152001 2025-04-25T04:11:42.6164740Z * [new tag] cslpull75 -> cslpull75 2025-04-25T04:11:42.6165103Z * [new tag] cslpull76 -> cslpull76 2025-04-25T04:11:42.6165540Z * [new tag] cslpull77 -> cslpull77 2025-04-25T04:11:42.6165981Z * [new tag] cslpull78 -> cslpull78 2025-04-25T04:11:42.6166404Z * [new tag] cslpull79 -> cslpull79 2025-04-25T04:11:42.6166749Z * [new tag] cslpull80 -> cslpull80 2025-04-25T04:11:42.6167107Z * [new tag] cslpull81 -> cslpull81 2025-04-25T04:11:42.6167469Z * [new tag] cslpull82 -> cslpull82 2025-04-25T04:11:42.6167819Z * [new tag] cslpull83 -> cslpull83 2025-04-25T04:11:42.6168175Z * [new tag] cslpull84 -> cslpull84 2025-04-25T04:11:42.6168617Z * [new tag] cslpull85 -> cslpull85 2025-04-25T04:11:42.6168977Z * [new tag] cslpull86 -> cslpull86 2025-04-25T04:11:42.6169323Z * [new tag] cslpull87 -> cslpull87 2025-04-25T04:11:42.6169682Z * [new tag] cslpull88 -> cslpull88 2025-04-25T04:11:42.6170042Z * [new tag] cslpull89 -> cslpull89 2025-04-25T04:11:42.6170389Z * [new tag] cslpull90 -> cslpull90 2025-04-25T04:11:42.6170744Z * [new tag] cslpull91 -> cslpull91 2025-04-25T04:11:42.6171102Z * [new tag] cslpull92 -> cslpull92 2025-04-25T04:11:42.6171463Z * [new tag] flight_5 -> flight_5 2025-04-25T04:11:42.6171827Z * [new tag] flight_5.1 -> flight_5.1 2025-04-25T04:11:42.6172179Z * [new tag] flight_5.2 -> flight_5.2 2025-04-25T04:11:42.6172541Z * [new tag] flight_5.3 -> flight_5.3 2025-04-25T04:11:42.6172892Z * [new tag] forpull1 -> forpull1 2025-04-25T04:11:42.6173275Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-04-25T04:11:42.6173676Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-04-25T04:11:42.6174087Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-04-25T04:11:42.6174491Z * [new tag] nightly-binary -> nightly-binary 2025-04-25T04:11:42.6174907Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-04-25T04:11:42.6175320Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-04-25T04:11:42.6175689Z * [new tag] v0.1.1 -> v0.1.1 2025-04-25T04:11:42.6176040Z * [new tag] v0.1.10 -> v0.1.10 2025-04-25T04:11:42.6176377Z * [new tag] v0.1.11 -> v0.1.11 2025-04-25T04:11:42.6176716Z * [new tag] v0.1.12 -> v0.1.12 2025-04-25T04:11:42.6177066Z * [new tag] v0.1.2 -> v0.1.2 2025-04-25T04:11:42.6177393Z * [new tag] v0.1.3 -> v0.1.3 2025-04-25T04:11:42.6177725Z * [new tag] v0.1.4 -> v0.1.4 2025-04-25T04:11:42.6178052Z * [new tag] v0.1.5 -> v0.1.5 2025-04-25T04:11:42.6178383Z * [new tag] v0.1.6 -> v0.1.6 2025-04-25T04:11:42.6178801Z * [new tag] v0.1.7 -> v0.1.7 2025-04-25T04:11:42.6179132Z * [new tag] v0.1.8 -> v0.1.8 2025-04-25T04:11:42.6179481Z * [new tag] v0.1.9 -> v0.1.9 2025-04-25T04:11:42.6179808Z * [new tag] v0.2.0 -> v0.2.0 2025-04-25T04:11:42.6180140Z * [new tag] v0.3.0 -> v0.3.0 2025-04-25T04:11:42.6180467Z * [new tag] v0.3.1 -> v0.3.1 2025-04-25T04:11:42.6180800Z * [new tag] v0.4.0 -> v0.4.0 2025-04-25T04:11:42.6181135Z * [new tag] v0.4.1 -> v0.4.1 2025-04-25T04:11:42.6181461Z * [new tag] v1.0.0 -> v1.0.0 2025-04-25T04:11:42.6181804Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-04-25T04:11:42.6182143Z * [new tag] v1.0.1 -> v1.0.1 2025-04-25T04:11:42.6182485Z * [new tag] v1.0rc0 -> v1.0rc0 2025-04-25T04:11:42.6182825Z * [new tag] v1.0rc1 -> v1.0rc1 2025-04-25T04:11:42.6183240Z * [new tag] v1.1.0 -> v1.1.0 2025-04-25T04:11:42.6183592Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-04-25T04:11:42.6564884Z * [new tag] v1.10.0 -> v1.10.0 2025-04-25T04:11:42.6565316Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-04-25T04:11:42.6565691Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-04-25T04:11:42.6566043Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-04-25T04:11:42.6566442Z * [new tag] v1.10.1 -> v1.10.1 2025-04-25T04:11:42.6566799Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-04-25T04:11:42.6567156Z * [new tag] v1.10.2 -> v1.10.2 2025-04-25T04:11:42.6567498Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-04-25T04:11:42.6567852Z * [new tag] v1.11.0 -> v1.11.0 2025-04-25T04:11:42.6579421Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-04-25T04:11:42.6579821Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-04-25T04:11:42.6580246Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-04-25T04:11:42.6580670Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-04-25T04:11:42.6581024Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-04-25T04:11:42.6581391Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-04-25T04:11:42.6581748Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-04-25T04:11:42.6582113Z * [new tag] v1.12.0 -> v1.12.0 2025-04-25T04:11:42.6582460Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-04-25T04:11:42.6582813Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-04-25T04:11:42.6583172Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-04-25T04:11:42.6583518Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-04-25T04:11:42.6583876Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-04-25T04:11:42.6584228Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-04-25T04:11:42.6584575Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-04-25T04:11:42.6584933Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-04-25T04:11:42.6585278Z * [new tag] v1.12.1 -> v1.12.1 2025-04-25T04:11:42.6585832Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-04-25T04:11:42.6586234Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-04-25T04:11:42.6586598Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-04-25T04:11:42.6586963Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-04-25T04:11:42.6587311Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-04-25T04:11:42.6587667Z * [new tag] v1.13.0 -> v1.13.0 2025-04-25T04:11:42.6588005Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-04-25T04:11:42.6588373Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-04-25T04:11:42.6588737Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-04-25T04:11:42.6589089Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-04-25T04:11:42.6589451Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-04-25T04:11:42.6589802Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-04-25T04:11:42.6590246Z * [new tag] v1.13.1 -> v1.13.1 2025-04-25T04:11:42.6590595Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-04-25T04:11:42.6590973Z * [new tag] v1.2.0 -> v1.2.0 2025-04-25T04:11:42.6591390Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-04-25T04:11:42.6591778Z * [new tag] v1.3.0 -> v1.3.0 2025-04-25T04:11:42.6592133Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-04-25T04:11:42.6592475Z * [new tag] v1.3.1 -> v1.3.1 2025-04-25T04:11:42.6592818Z * [new tag] v1.4.0 -> v1.4.0 2025-04-25T04:11:42.6593164Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-04-25T04:11:42.6593514Z * [new tag] v1.4.1 -> v1.4.1 2025-04-25T04:11:42.6593854Z * [new tag] v1.5.0 -> v1.5.0 2025-04-25T04:11:42.6594203Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-04-25T04:11:42.6594566Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-04-25T04:11:42.6594914Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-04-25T04:11:42.6595280Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-04-25T04:11:42.6595632Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-04-25T04:11:42.6595967Z * [new tag] v1.5.1 -> v1.5.1 2025-04-25T04:11:42.6596313Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-04-25T04:11:42.6596652Z * [new tag] v1.6.0 -> v1.6.0 2025-04-25T04:11:42.6597049Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-04-25T04:11:42.6973710Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-04-25T04:11:42.6974104Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-04-25T04:11:42.6974475Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-04-25T04:11:42.6974821Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-04-25T04:11:42.6975180Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-04-25T04:11:42.6975527Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-04-25T04:11:42.6975873Z * [new tag] v1.7.0 -> v1.7.0 2025-04-25T04:11:42.6976272Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-04-25T04:11:42.6976666Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-04-25T04:11:42.6977155Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-04-25T04:11:42.6977504Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-04-25T04:11:42.6977859Z * [new tag] v1.7.1 -> v1.7.1 2025-04-25T04:11:42.6978198Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-04-25T04:11:42.6978554Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-04-25T04:11:42.6978911Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-04-25T04:11:42.6979252Z * [new tag] v1.8.0 -> v1.8.0 2025-04-25T04:11:42.6979617Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-04-25T04:11:42.6979964Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-04-25T04:11:42.6980322Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-04-25T04:11:42.6980689Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-04-25T04:11:42.6981032Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-04-25T04:11:42.6981461Z * [new tag] v1.8.1 -> v1.8.1 2025-04-25T04:11:42.6981848Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-04-25T04:11:42.6982249Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-04-25T04:11:42.6982594Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-04-25T04:11:42.6982941Z * [new tag] v1.8.2 -> v1.8.2 2025-04-25T04:11:42.6983292Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-04-25T04:11:42.6983642Z * [new tag] v1.9.0 -> v1.9.0 2025-04-25T04:11:42.6984003Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-04-25T04:11:42.6984354Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-04-25T04:11:42.6984721Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-04-25T04:11:42.6985084Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-04-25T04:11:42.6985430Z * [new tag] v1.9.1 -> v1.9.1 2025-04-25T04:11:42.6985793Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-04-25T04:11:42.6986143Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-04-25T04:11:42.6986499Z * [new tag] v2.0.0 -> v2.0.0 2025-04-25T04:11:42.6986838Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-04-25T04:11:42.6987197Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-04-25T04:11:42.6987604Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-04-25T04:11:42.6988003Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-04-25T04:11:42.6988366Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-04-25T04:11:42.6988709Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-04-25T04:11:42.6989069Z * [new tag] v2.0.1 -> v2.0.1 2025-04-25T04:11:42.6989409Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-04-25T04:11:42.6989764Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-04-25T04:11:42.6990116Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-04-25T04:11:42.6990456Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-04-25T04:11:42.6990798Z * [new tag] v2.1.0 -> v2.1.0 2025-04-25T04:11:42.6991132Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-04-25T04:11:42.6991594Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-04-25T04:11:42.6991952Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-04-25T04:11:42.6992297Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-04-25T04:11:42.6992660Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-04-25T04:11:42.6993049Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-04-25T04:11:42.6993446Z * [new tag] v2.1.1 -> v2.1.1 2025-04-25T04:11:42.6993787Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-04-25T04:11:42.6994141Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-04-25T04:11:42.6994490Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-04-25T04:11:42.6994831Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-04-25T04:11:42.7359664Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-04-25T04:11:42.7360067Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-04-25T04:11:42.7360432Z * [new tag] v2.1.2 -> v2.1.2 2025-04-25T04:11:42.7360902Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-04-25T04:11:42.7361249Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-04-25T04:11:42.7361605Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-04-25T04:11:42.7361948Z * [new tag] v2.2.0 -> v2.2.0 2025-04-25T04:11:42.7362355Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-04-25T04:11:42.7362769Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-04-25T04:11:42.7363116Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-04-25T04:11:42.7363467Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-04-25T04:11:42.7363820Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-04-25T04:11:42.7364178Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-04-25T04:11:42.7364531Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-04-25T04:11:42.7364879Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-04-25T04:11:42.7365227Z * [new tag] v2.2.1 -> v2.2.1 2025-04-25T04:11:42.7365566Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-04-25T04:11:42.7365915Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-04-25T04:11:42.7366304Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-04-25T04:11:42.7366654Z * [new tag] v2.2.2 -> v2.2.2 2025-04-25T04:11:42.7366992Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-04-25T04:11:42.7367349Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-04-25T04:11:42.7367694Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-04-25T04:11:42.7368089Z * [new tag] v2.3.0 -> v2.3.0 2025-04-25T04:11:42.7368476Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-04-25T04:11:42.7368824Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-04-25T04:11:42.7369183Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-04-25T04:11:42.7369537Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-04-25T04:11:42.7369883Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-04-25T04:11:42.7370238Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-04-25T04:11:42.7370582Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-04-25T04:11:42.7371038Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-04-25T04:11:42.7371383Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-04-25T04:11:42.7371745Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-04-25T04:11:42.7372105Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-04-25T04:11:42.7372447Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-04-25T04:11:42.7372794Z * [new tag] v2.3.1 -> v2.3.1 2025-04-25T04:11:42.7373128Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-04-25T04:11:42.7373478Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-04-25T04:11:42.7373874Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-04-25T04:11:42.7374268Z * [new tag] v2.4.0 -> v2.4.0 2025-04-25T04:11:42.7374616Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-04-25T04:11:42.7374964Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-04-25T04:11:42.7375323Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-04-25T04:11:42.7375746Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-04-25T04:11:42.7376110Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-04-25T04:11:42.7376467Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-04-25T04:11:42.7376821Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-04-25T04:11:42.7377179Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-04-25T04:11:42.7377526Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-04-25T04:11:42.7377875Z * [new tag] v2.4.1 -> v2.4.1 2025-04-25T04:11:42.7378211Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-04-25T04:11:42.7378566Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-04-25T04:11:42.7378916Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-04-25T04:11:42.7379262Z * [new tag] v2.5.0 -> v2.5.0 2025-04-25T04:11:42.7379665Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-04-25T04:11:42.7380060Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-04-25T04:11:42.7380415Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-04-25T04:11:43.0312073Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-04-25T04:11:43.0312482Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-04-25T04:11:43.0312849Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-04-25T04:11:43.0313199Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-04-25T04:11:43.0313584Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-04-25T04:11:43.0313941Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-04-25T04:11:43.0314294Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-04-25T04:11:43.0314643Z * [new tag] v2.5.1 -> v2.5.1 2025-04-25T04:11:43.0314985Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-04-25T04:11:43.0315328Z * [new tag] v2.6.0 -> v2.6.0 2025-04-25T04:11:43.0315665Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-04-25T04:11:43.0316017Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-04-25T04:11:43.0316368Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-04-25T04:11:43.0316711Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-04-25T04:11:43.0317272Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-04-25T04:11:43.0317620Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-04-25T04:11:43.0317977Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-04-25T04:11:43.0318328Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-04-25T04:11:43.0318689Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-04-25T04:11:43.0319036Z * [new tag] v2.7.0 -> v2.7.0 2025-04-25T04:11:43.0319375Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-04-25T04:11:43.0319732Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-04-25T04:11:43.0320082Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-04-25T04:11:43.0320437Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-04-25T04:11:43.0320801Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-04-25T04:11:43.0321146Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-04-25T04:11:43.0321489Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-04-25T04:11:43.0321951Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-04-25T04:11:43.0322304Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-04-25T04:11:43.0322655Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-04-25T04:11:43.0323017Z * [new tag] whc_flight_1 -> whc_flight_1 2025-04-25T04:11:43.0323392Z * [new tag] whc_flight_2 -> whc_flight_2 2025-04-25T04:11:43.0323748Z * [new tag] whc_flight_4 -> whc_flight_4 2025-04-25T04:11:43.0500464Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet b68c0effe97351b0c24b2f7aef671559be6aa977^{object} 2025-04-25T04:11:43.0697832Z b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:11:43.0730293Z ##[endgroup] 2025-04-25T04:11:43.0730681Z ##[group]Determining the checkout info 2025-04-25T04:11:43.0731757Z ##[endgroup] 2025-04-25T04:11:43.0741107Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-04-25T04:11:43.0996761Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-04-25T04:11:43.1226182Z ##[group]Checking out the ref 2025-04-25T04:11:43.1235517Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:11:44.2892729Z Updating files: 15% (2533/16547) 2025-04-25T04:11:44.3592354Z Updating files: 16% (2648/16547) 2025-04-25T04:11:44.4134823Z Updating files: 17% (2813/16547) 2025-04-25T04:11:44.4651402Z Updating files: 18% (2979/16547) 2025-04-25T04:11:44.5252963Z Updating files: 19% (3144/16547) 2025-04-25T04:11:44.5902251Z Updating files: 20% (3310/16547) 2025-04-25T04:11:44.6546906Z Updating files: 21% (3475/16547) 2025-04-25T04:11:44.7303375Z Updating files: 22% (3641/16547) 2025-04-25T04:11:44.8071270Z Updating files: 23% (3806/16547) 2025-04-25T04:11:44.9108507Z Updating files: 24% (3972/16547) 2025-04-25T04:11:44.9744876Z Updating files: 25% (4137/16547) 2025-04-25T04:11:45.1635567Z Updating files: 26% (4303/16547) 2025-04-25T04:11:45.1743630Z Updating files: 27% (4468/16547) 2025-04-25T04:11:45.2343846Z Updating files: 27% (4483/16547) 2025-04-25T04:11:45.3081046Z Updating files: 28% (4634/16547) 2025-04-25T04:11:45.4162013Z Updating files: 29% (4799/16547) 2025-04-25T04:11:45.4893719Z Updating files: 30% (4965/16547) 2025-04-25T04:11:45.5721031Z Updating files: 31% (5130/16547) 2025-04-25T04:11:45.7070834Z Updating files: 32% (5296/16547) 2025-04-25T04:11:45.7581248Z Updating files: 33% (5461/16547) 2025-04-25T04:11:45.7919096Z Updating files: 34% (5626/16547) 2025-04-25T04:11:45.8565366Z Updating files: 35% (5792/16547) 2025-04-25T04:11:45.8886796Z Updating files: 36% (5957/16547) 2025-04-25T04:11:45.9197387Z Updating files: 37% (6123/16547) 2025-04-25T04:11:46.0299215Z Updating files: 38% (6288/16547) 2025-04-25T04:11:46.0633310Z Updating files: 39% (6454/16547) 2025-04-25T04:11:46.1178745Z Updating files: 40% (6619/16547) 2025-04-25T04:11:46.1872780Z Updating files: 41% (6785/16547) 2025-04-25T04:11:46.2034211Z Updating files: 41% (6865/16547) 2025-04-25T04:11:46.2338960Z Updating files: 42% (6950/16547) 2025-04-25T04:11:46.2677083Z Updating files: 43% (7116/16547) 2025-04-25T04:11:46.3425114Z Updating files: 44% (7281/16547) 2025-04-25T04:11:46.4810923Z Updating files: 45% (7447/16547) 2025-04-25T04:11:46.5188437Z Updating files: 46% (7612/16547) 2025-04-25T04:11:46.5595573Z Updating files: 47% (7778/16547) 2025-04-25T04:11:46.6048573Z Updating files: 48% (7943/16547) 2025-04-25T04:11:46.6500340Z Updating files: 49% (8109/16547) 2025-04-25T04:11:46.7184629Z Updating files: 50% (8274/16547) 2025-04-25T04:11:46.7558449Z Updating files: 51% (8439/16547) 2025-04-25T04:11:46.7930839Z Updating files: 52% (8605/16547) 2025-04-25T04:11:46.8859616Z Updating files: 53% (8770/16547) 2025-04-25T04:11:46.9242540Z Updating files: 54% (8936/16547) 2025-04-25T04:11:46.9630446Z Updating files: 55% (9101/16547) 2025-04-25T04:11:47.0845077Z Updating files: 56% (9267/16547) 2025-04-25T04:11:47.1239262Z Updating files: 57% (9432/16547) 2025-04-25T04:11:47.1626374Z Updating files: 58% (9598/16547) 2025-04-25T04:11:47.1777168Z Updating files: 59% (9763/16547) 2025-04-25T04:11:47.2009423Z Updating files: 59% (9828/16547) 2025-04-25T04:11:47.2764335Z Updating files: 60% (9929/16547) 2025-04-25T04:11:47.3152349Z Updating files: 61% (10094/16547) 2025-04-25T04:11:47.3539927Z Updating files: 62% (10260/16547) 2025-04-25T04:11:47.3978073Z Updating files: 63% (10425/16547) 2025-04-25T04:11:47.4604337Z Updating files: 64% (10591/16547) 2025-04-25T04:11:47.7650847Z Updating files: 65% (10756/16547) 2025-04-25T04:11:47.8632379Z Updating files: 66% (10922/16547) 2025-04-25T04:11:47.9452073Z Updating files: 67% (11087/16547) 2025-04-25T04:11:48.0766104Z Updating files: 68% (11252/16547) 2025-04-25T04:11:48.1311226Z Updating files: 69% (11418/16547) 2025-04-25T04:11:48.1898467Z Updating files: 70% (11583/16547) 2025-04-25T04:11:48.2273018Z Updating files: 70% (11691/16547) 2025-04-25T04:11:48.3772985Z Updating files: 71% (11749/16547) 2025-04-25T04:11:48.4705878Z Updating files: 72% (11914/16547) 2025-04-25T04:11:48.5712924Z Updating files: 73% (12080/16547) 2025-04-25T04:11:48.6440088Z Updating files: 74% (12245/16547) 2025-04-25T04:11:48.7282367Z Updating files: 75% (12411/16547) 2025-04-25T04:11:48.8260697Z Updating files: 76% (12576/16547) 2025-04-25T04:11:48.9189083Z Updating files: 77% (12742/16547) 2025-04-25T04:11:49.0248135Z Updating files: 78% (12907/16547) 2025-04-25T04:11:49.1307134Z Updating files: 79% (13073/16547) 2025-04-25T04:11:49.1945449Z Updating files: 80% (13238/16547) 2025-04-25T04:11:49.2276180Z Updating files: 80% (13341/16547) 2025-04-25T04:11:49.3129322Z Updating files: 81% (13404/16547) 2025-04-25T04:11:49.3859351Z Updating files: 82% (13569/16547) 2025-04-25T04:11:49.4748811Z Updating files: 83% (13735/16547) 2025-04-25T04:11:49.5811655Z Updating files: 84% (13900/16547) 2025-04-25T04:11:49.6713886Z Updating files: 85% (14065/16547) 2025-04-25T04:11:49.7511032Z Updating files: 86% (14231/16547) 2025-04-25T04:11:49.8200506Z Updating files: 87% (14396/16547) 2025-04-25T04:11:49.8981639Z Updating files: 88% (14562/16547) 2025-04-25T04:11:50.1097388Z Updating files: 89% (14727/16547) 2025-04-25T04:11:50.1931787Z Updating files: 90% (14893/16547) 2025-04-25T04:11:50.1951958Z Updating files: 91% (15058/16547) 2025-04-25T04:11:50.3733418Z Updating files: 91% (15061/16547) 2025-04-25T04:11:50.4468737Z Updating files: 92% (15224/16547) 2025-04-25T04:11:50.5315899Z Updating files: 93% (15389/16547) 2025-04-25T04:11:50.6236727Z Updating files: 94% (15555/16547) 2025-04-25T04:11:50.7261872Z Updating files: 95% (15720/16547) 2025-04-25T04:11:50.8060501Z Updating files: 96% (15886/16547) 2025-04-25T04:11:50.9240747Z Updating files: 97% (16051/16547) 2025-04-25T04:11:51.0103426Z Updating files: 98% (16217/16547) 2025-04-25T04:11:51.1014804Z Updating files: 99% (16382/16547) 2025-04-25T04:11:51.1015136Z Updating files: 100% (16547/16547) 2025-04-25T04:11:51.1015410Z Updating files: 100% (16547/16547), done. 2025-04-25T04:11:51.1422695Z Note: switching to 'b68c0effe97351b0c24b2f7aef671559be6aa977'. 2025-04-25T04:11:51.1423009Z 2025-04-25T04:11:51.1423213Z You are in 'detached HEAD' state. You can look around, make experimental 2025-04-25T04:11:51.1423726Z changes and commit them, and you can discard any commits you make in this 2025-04-25T04:11:51.1424242Z state without impacting any branches by switching back to a branch. 2025-04-25T04:11:51.1424540Z 2025-04-25T04:11:51.1424757Z If you want to create a new branch to retain commits you create, you may 2025-04-25T04:11:51.1425273Z do so (now or later) by using -c with the switch command. Example: 2025-04-25T04:11:51.1425547Z 2025-04-25T04:11:51.1425682Z git switch -c 2025-04-25T04:11:51.1570219Z 2025-04-25T04:11:51.1570757Z Or undo this operation with: 2025-04-25T04:11:51.1570969Z 2025-04-25T04:11:51.1571070Z git switch - 2025-04-25T04:11:51.1571189Z 2025-04-25T04:11:51.1571410Z Turn off this advice by setting config variable advice.detachedHead to false 2025-04-25T04:11:51.1571755Z 2025-04-25T04:11:51.1572150Z HEAD is now at b68c0effe97 Update on "use statically known true instead of guard size oblivious in bmm and mm decompositions . " 2025-04-25T04:11:51.1574101Z ##[endgroup] 2025-04-25T04:11:51.1574498Z ##[group]Setting up auth for fetching submodules 2025-04-25T04:11:51.1582796Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-04-25T04:11:51.1830926Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-04-25T04:11:51.2063639Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-04-25T04:11:51.2293795Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-04-25T04:11:51.2511385Z ##[endgroup] 2025-04-25T04:11:51.2511832Z ##[group]Fetching submodules 2025-04-25T04:11:51.2520322Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-04-25T04:11:51.5901117Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-04-25T04:11:51.9984128Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-04-25T04:11:51.9985090Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-04-25T04:11:51.9986137Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-04-25T04:11:51.9987064Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-04-25T04:11:51.9987867Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-04-25T04:11:51.9988981Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-04-25T04:11:51.9990129Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-04-25T04:11:51.9990996Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-04-25T04:11:51.9992276Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-04-25T04:11:51.9993299Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-04-25T04:11:51.9994219Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-04-25T04:11:51.9995163Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-04-25T04:11:51.9996092Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-04-25T04:11:51.9996908Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-04-25T04:11:51.9997793Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-04-25T04:11:51.9998734Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-04-25T04:11:51.9999883Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-04-25T04:11:52.0000743Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-04-25T04:11:52.0001626Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:11:52.0002571Z Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' 2025-04-25T04:11:52.0003540Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-04-25T04:11:52.0004380Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-04-25T04:11:52.0005168Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-04-25T04:11:52.0006019Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-04-25T04:11:52.0006891Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-04-25T04:11:52.0007815Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-04-25T04:11:52.0008723Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-04-25T04:11:52.0009563Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-04-25T04:11:52.0010527Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-04-25T04:11:52.0011581Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-04-25T04:11:52.0012524Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-04-25T04:11:52.0013470Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-04-25T04:11:52.0014535Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-04-25T04:11:52.0076363Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-04-25T04:11:52.0077314Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-04-25T04:11:52.0078342Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-04-25T04:11:52.0079284Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-04-25T04:11:52.0639621Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-04-25T04:11:53.4542675Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-04-25T04:11:53.4543805Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-04-25T04:11:53.4545889Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-04-25T04:11:53.8934523Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-04-25T04:12:01.4251321Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-04-25T04:12:01.4253391Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-04-25T04:12:01.4254973Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-04-25T04:12:01.4260374Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-04-25T04:12:01.4262606Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-04-25T04:12:01.4263807Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-04-25T04:12:01.4274673Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-04-25T04:12:01.4276690Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-04-25T04:12:01.4277744Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-04-25T04:12:01.4279411Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-04-25T04:12:01.4280440Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-04-25T04:12:01.4282471Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-04-25T04:12:01.4285377Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-04-25T04:12:01.7991987Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-04-25T04:12:16.1658372Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-04-25T04:12:16.1658986Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-04-25T04:12:16.1659539Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-04-25T04:12:16.1660113Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-04-25T04:12:16.1660725Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-04-25T04:12:16.1661323Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/eigen'... 2025-04-25T04:12:16.1661886Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-04-25T04:12:16.1662450Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-04-25T04:12:16.1663032Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-04-25T04:12:16.1663613Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-04-25T04:12:16.1664270Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-04-25T04:12:16.1664839Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-04-25T04:12:16.1665373Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-04-25T04:12:16.1665916Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-04-25T04:12:16.1666454Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-04-25T04:12:16.1666992Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-04-25T04:12:16.1667735Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-04-25T04:12:16.1668315Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-04-25T04:12:16.2741722Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-04-25T04:12:16.3665767Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-04-25T04:12:16.4311540Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-04-25T04:12:16.6059421Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-04-25T04:12:17.3336077Z Submodule path 'third_party/NVTX': checked out 'e170594ac7cf1dac584da473d4ca9301087090c1' 2025-04-25T04:12:17.6062528Z Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-04-25T04:12:23.9807626Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-04-25T04:12:24.1166273Z Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' 2025-04-25T04:12:26.5145674Z Submodule path 'third_party/composable_kernel': checked out '8086bbe3a78d931eb96fe12fdc014082e18d18d3' 2025-04-25T04:12:26.7634965Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-04-25T04:12:27.1933899Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-04-25T04:12:27.4094299Z Submodule path 'third_party/cudnn_frontend': checked out '8801fd7b31c2f798732ed1e1dd4711a9cde4217d' 2025-04-25T04:12:31.7954714Z Submodule path 'third_party/cutlass': checked out 'afa1772203677c5118fcd82537a9c8fefbcc7008' 2025-04-25T04:12:33.8153144Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-04-25T04:12:34.7201536Z Submodule path 'third_party/fbgemm': checked out 'dbc3157bf256f1339b3fa1fef2be89ac4078be0e' 2025-04-25T04:12:34.7365485Z Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:12:34.7366524Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:12:34.7367507Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:12:34.7368573Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:12:34.7369744Z Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:12:34.8220807Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit'... 2025-04-25T04:12:37.6562792Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/hipify_torch'... 2025-04-25T04:12:37.6563581Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cpuinfo'... 2025-04-25T04:12:37.6564370Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cutlass'... 2025-04-25T04:12:37.6565183Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/googletest'... 2025-04-25T04:12:37.8326822Z Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' 2025-04-25T04:12:38.3561527Z Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' 2025-04-25T04:12:42.5757058Z Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' 2025-04-25T04:12:42.9320607Z Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' 2025-04-25T04:12:43.0147898Z Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '23f53b025b466d8ec3c45d52290d3442f7fbe6b1' 2025-04-25T04:12:43.5978191Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-04-25T04:12:43.6102136Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:12:43.6103235Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:12:47.7534044Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-04-25T04:12:47.7534859Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-04-25T04:12:49.9261663Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-04-25T04:12:54.0639570Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-04-25T04:12:55.3789294Z Submodule path 'third_party/flatbuffers': checked out '01834de25e4bf3975a9a00e816292b1ad0fe184b' 2025-04-25T04:12:55.5312937Z Submodule path 'third_party/fmt': checked out '123913715afeb8a437e6388b4473fcc4753e1c9a' 2025-04-25T04:12:55.7750163Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-04-25T04:12:56.1520742Z Submodule path 'third_party/gloo': checked out 'c61070427610ccd923efe3e7f8b3eca12bbcc31a' 2025-04-25T04:12:56.4621965Z Submodule path 'third_party/googletest': checked out 'b514bdc898e2951020cbdca1304b75f5950d1f59' 2025-04-25T04:12:56.5402243Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-04-25T04:12:56.5487710Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-04-25T04:13:08.0142052Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-04-25T04:13:10.9675133Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-04-25T04:13:11.0636145Z Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' 2025-04-25T04:13:11.3526269Z Submodule path 'third_party/kineto': checked out '5fa4bd8c8fb581a621f72957d0cb11431cc4714f' 2025-04-25T04:13:11.3656682Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:13:11.3657875Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:13:11.3659013Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:13:13.6138662Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-04-25T04:13:13.6139527Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-04-25T04:13:13.6140311Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-04-25T04:13:13.9678638Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-04-25T04:13:13.9896994Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:13:13.9898144Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:13:13.9899498Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:13:13.9900666Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:13:13.9901830Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:13:13.9903060Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:13:13.9904288Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:13:13.9905419Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:13:14.0479174Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-04-25T04:13:22.1143793Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-04-25T04:13:22.1144879Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-04-25T04:13:22.1145798Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-04-25T04:13:22.1146713Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-04-25T04:13:22.1147628Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-04-25T04:13:22.1148601Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-04-25T04:13:22.1149597Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-04-25T04:13:22.8898891Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-04-25T04:13:23.0272534Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-04-25T04:13:23.2119734Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-04-25T04:13:23.2953233Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-04-25T04:13:23.3039111Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:13:23.8595747Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-04-25T04:13:23.9108865Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-04-25T04:13:24.0406492Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-04-25T04:13:24.2587485Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-04-25T04:13:24.8783117Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-04-25T04:13:25.0283876Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-04-25T04:13:25.1744391Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-04-25T04:13:25.4059701Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-04-25T04:13:25.6774936Z Submodule path 'third_party/kleidiai': checked out 'ef685a13cfbe8d418aa2ed34350e21e4938358b6' 2025-04-25T04:13:25.8893258Z Submodule path 'third_party/mimalloc': checked out 'b66e3214d8a104669c2ec05ae91ebc26a8f5ab78' 2025-04-25T04:13:26.4851402Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-04-25T04:13:30.2657029Z Submodule path 'third_party/onnx': checked out 'b8baa8446686496da4cc8fda09f2b6fe65c2a02c' 2025-04-25T04:13:30.2767967Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-04-25T04:13:31.5953630Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-04-25T04:13:31.7820034Z Submodule path 'third_party/onnx/third_party/pybind11': checked out '3e9dfa2866941655c56877882565e7577de6fc7b' 2025-04-25T04:13:32.6469581Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-04-25T04:13:32.6695217Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:13:32.6696343Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:13:32.6697421Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:13:32.6698496Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:13:32.6699812Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:13:32.6701219Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:13:32.6702509Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:13:32.6703595Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:13:32.7152500Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-04-25T04:13:42.2899968Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-04-25T04:13:42.2900919Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-04-25T04:13:42.2901770Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-04-25T04:13:42.2902687Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-04-25T04:13:42.2903571Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-04-25T04:13:42.2904417Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-04-25T04:13:42.2905206Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-04-25T04:13:42.4007879Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-04-25T04:13:42.5959454Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-04-25T04:13:42.6806868Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-04-25T04:13:43.2338831Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-04-25T04:13:43.4678445Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-04-25T04:13:43.5822895Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-04-25T04:13:43.7273035Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-04-25T04:13:43.7381712Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:13:43.7383228Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:13:46.0008617Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-04-25T04:13:46.0009699Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-04-25T04:13:46.7974184Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-04-25T04:13:47.0240093Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-04-25T04:13:53.2274806Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-04-25T04:13:53.2926902Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-04-25T04:13:55.1182475Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-04-25T04:13:55.1318782Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:13:55.1319895Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-04-25T04:13:56.5873923Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-04-25T04:13:56.5874806Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-04-25T04:13:56.6631063Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-04-25T04:13:56.9037692Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-04-25T04:13:56.9706674Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-04-25T04:13:57.0556271Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-04-25T04:13:57.4301550Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-04-25T04:13:57.5576599Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-04-25T04:13:57.7470467Z Submodule path 'third_party/sleef': checked out '56e1f79cb140fb9326d612d0be06b5250565cade' 2025-04-25T04:13:57.9229306Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-04-25T04:13:57.9380767Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:13:57.9381842Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:13:57.9382805Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:13:57.9383819Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:01.0596942Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-04-25T04:14:01.0597730Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-04-25T04:14:01.0598594Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-04-25T04:14:01.0599331Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-04-25T04:14:01.2593609Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-04-25T04:14:01.3655919Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-04-25T04:14:01.6292310Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-04-25T04:14:01.7727246Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-04-25T04:14:01.7818487Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:02.1867133Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-04-25T04:14:02.2376674Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-04-25T04:14:02.2591272Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-04-25T04:14:02.5760901Z Entering 'android/libs/fbjni' 2025-04-25T04:14:02.6107752Z Entering 'third_party/FP16' 2025-04-25T04:14:02.6474403Z Entering 'third_party/FXdiv' 2025-04-25T04:14:02.6814094Z Entering 'third_party/NNPACK' 2025-04-25T04:14:02.7145513Z Entering 'third_party/NVTX' 2025-04-25T04:14:02.7491415Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:02.7823035Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:02.8165155Z Entering 'third_party/benchmark' 2025-04-25T04:14:02.8496778Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:02.8838951Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:02.9169586Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:02.9514998Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:02.9847192Z Entering 'third_party/cutlass' 2025-04-25T04:14:03.0188633Z Entering 'third_party/eigen' 2025-04-25T04:14:03.0519304Z Entering 'third_party/fbgemm' 2025-04-25T04:14:03.0838210Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:03.1174672Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:03.1504159Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:03.1843990Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:03.2170887Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:03.2517471Z Entering 'third_party/flash-attention' 2025-04-25T04:14:03.2836875Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:03.3191851Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:03.3551029Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:03.3898971Z Entering 'third_party/fmt' 2025-04-25T04:14:03.4220180Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:03.4583137Z Entering 'third_party/gloo' 2025-04-25T04:14:03.4906625Z Entering 'third_party/googletest' 2025-04-25T04:14:03.5235806Z Entering 'third_party/ideep' 2025-04-25T04:14:03.5562027Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:03.5925260Z Entering 'third_party/ittapi' 2025-04-25T04:14:03.6251415Z Entering 'third_party/kineto' 2025-04-25T04:14:03.6576319Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:03.6898532Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:03.7225489Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:03.7547492Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:03.7866130Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:03.8171736Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:03.8517284Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:03.8843183Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:03.9215999Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:03.9548759Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:03.9894435Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:04.0233895Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:04.0580025Z Entering 'third_party/kleidiai' 2025-04-25T04:14:04.0932215Z Entering 'third_party/mimalloc' 2025-04-25T04:14:04.1267710Z Entering 'third_party/nlohmann' 2025-04-25T04:14:04.1593830Z Entering 'third_party/onnx' 2025-04-25T04:14:04.1918540Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:04.2254984Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:04.2566349Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:04.2888750Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:04.3206236Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:04.3532495Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:04.3851284Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:04.4172356Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:04.4511675Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:04.4829974Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:04.5158161Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:04.5498167Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:04.5854243Z Entering 'third_party/pocketfft' 2025-04-25T04:14:04.6211384Z Entering 'third_party/protobuf' 2025-04-25T04:14:04.6521430Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:04.6846161Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:04.7197893Z Entering 'third_party/psimd' 2025-04-25T04:14:04.7518955Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:04.7838413Z Entering 'third_party/pybind11' 2025-04-25T04:14:04.8181421Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:04.8503523Z Entering 'third_party/sleef' 2025-04-25T04:14:04.8824296Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:04.9130078Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:04.9456343Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:04.9778455Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:05.0102708Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:05.0408861Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:05.0842720Z ##[endgroup] 2025-04-25T04:14:05.0843154Z ##[group]Persisting credentials for submodules 2025-04-25T04:14:05.0855990Z [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-04-25T04:14:05.4900287Z Entering 'android/libs/fbjni' 2025-04-25T04:14:05.5418550Z Entering 'third_party/FP16' 2025-04-25T04:14:05.5909707Z Entering 'third_party/FXdiv' 2025-04-25T04:14:05.6450559Z Entering 'third_party/NNPACK' 2025-04-25T04:14:05.6950183Z Entering 'third_party/NVTX' 2025-04-25T04:14:05.7452446Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:05.7949865Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:05.8496376Z Entering 'third_party/benchmark' 2025-04-25T04:14:05.9006418Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:05.9531486Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:06.0044855Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:06.0575606Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:06.1084891Z Entering 'third_party/cutlass' 2025-04-25T04:14:06.1608602Z Entering 'third_party/eigen' 2025-04-25T04:14:06.2124060Z Entering 'third_party/fbgemm' 2025-04-25T04:14:06.2654267Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:06.3190450Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:06.3728250Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:06.4258645Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:06.4813006Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:06.5360620Z Entering 'third_party/flash-attention' 2025-04-25T04:14:06.5865924Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:06.6394278Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:06.6945364Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:06.7468028Z Entering 'third_party/fmt' 2025-04-25T04:14:06.8000070Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:06.8530169Z Entering 'third_party/gloo' 2025-04-25T04:14:06.9044174Z Entering 'third_party/googletest' 2025-04-25T04:14:06.9573388Z Entering 'third_party/ideep' 2025-04-25T04:14:07.0066507Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:07.0613767Z Entering 'third_party/ittapi' 2025-04-25T04:14:07.1136177Z Entering 'third_party/kineto' 2025-04-25T04:14:07.1632338Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:07.2177366Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:07.2703008Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:07.3233206Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:07.3754071Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:07.4254354Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:07.4818707Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:07.5339042Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:07.5864884Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:07.6416223Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:07.6952639Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:07.7484167Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:07.8023014Z Entering 'third_party/kleidiai' 2025-04-25T04:14:07.8545848Z Entering 'third_party/mimalloc' 2025-04-25T04:14:07.9060004Z Entering 'third_party/nlohmann' 2025-04-25T04:14:07.9596442Z Entering 'third_party/onnx' 2025-04-25T04:14:08.0123356Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:08.0673766Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:08.1208724Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:08.1753628Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:08.2279828Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:08.2824088Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:08.3367353Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:08.3895207Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:08.4418388Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:08.4960554Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:08.5490376Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:08.6055715Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:08.6618851Z Entering 'third_party/pocketfft' 2025-04-25T04:14:08.7162694Z Entering 'third_party/protobuf' 2025-04-25T04:14:08.7670491Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:08.8207755Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:08.8740348Z Entering 'third_party/psimd' 2025-04-25T04:14:08.9254522Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:08.9782316Z Entering 'third_party/pybind11' 2025-04-25T04:14:09.0289376Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:09.0819253Z Entering 'third_party/sleef' 2025-04-25T04:14:09.1338031Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:09.1844910Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:09.2383175Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:09.2910312Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:09.3449092Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:09.3984506Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:09.4631618Z [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-04-25T04:14:09.8011069Z Entering 'android/libs/fbjni' 2025-04-25T04:14:09.8522699Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-04-25T04:14:09.8643538Z Entering 'third_party/FP16' 2025-04-25T04:14:09.9152173Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-04-25T04:14:09.9272550Z Entering 'third_party/FXdiv' 2025-04-25T04:14:09.9769666Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-04-25T04:14:09.9892316Z Entering 'third_party/NNPACK' 2025-04-25T04:14:10.0397052Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-04-25T04:14:10.0517575Z Entering 'third_party/NVTX' 2025-04-25T04:14:10.1056735Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-04-25T04:14:10.1174467Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:10.1672338Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-04-25T04:14:10.1794628Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:10.2293216Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-04-25T04:14:10.2428933Z Entering 'third_party/benchmark' 2025-04-25T04:14:10.2924099Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:14:10.3042922Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:10.3555761Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-04-25T04:14:10.3685430Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:10.4195249Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-04-25T04:14:10.4316123Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:10.4810235Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-04-25T04:14:10.4928423Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:10.5425121Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-04-25T04:14:10.5543778Z Entering 'third_party/cutlass' 2025-04-25T04:14:10.6046994Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-04-25T04:14:10.6176787Z Entering 'third_party/eigen' 2025-04-25T04:14:10.6675667Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-04-25T04:14:10.6797691Z Entering 'third_party/fbgemm' 2025-04-25T04:14:10.7304465Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-04-25T04:14:10.7434316Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:10.7935948Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/asmjit/config remote.origin.url 2025-04-25T04:14:10.8054354Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:10.8547626Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cpuinfo/config remote.origin.url 2025-04-25T04:14:10.8666601Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:10.9189991Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cutlass/config remote.origin.url 2025-04-25T04:14:10.9317714Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:10.9810523Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:10.9941237Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:11.0435880Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/hipify_torch/config remote.origin.url 2025-04-25T04:14:11.0577499Z Entering 'third_party/flash-attention' 2025-04-25T04:14:11.1076976Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-04-25T04:14:11.1182806Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:11.1686245Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-04-25T04:14:11.1812233Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:11.2306038Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-04-25T04:14:11.2456003Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:11.2949918Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-04-25T04:14:11.3070974Z Entering 'third_party/fmt' 2025-04-25T04:14:11.3556058Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-04-25T04:14:11.3674465Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:11.4170219Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-04-25T04:14:11.4291725Z Entering 'third_party/gloo' 2025-04-25T04:14:11.4772345Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-04-25T04:14:11.4892267Z Entering 'third_party/googletest' 2025-04-25T04:14:11.5400158Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:11.5531198Z Entering 'third_party/ideep' 2025-04-25T04:14:11.6018462Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-04-25T04:14:11.6122064Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:11.6619003Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-04-25T04:14:11.6760711Z Entering 'third_party/ittapi' 2025-04-25T04:14:11.7251018Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-04-25T04:14:11.7371941Z Entering 'third_party/kineto' 2025-04-25T04:14:11.7860185Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-04-25T04:14:11.7968948Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:11.8468049Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-04-25T04:14:11.8574983Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:11.9076622Z 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-04-25T04:14:11.9197897Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:11.9700354Z 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-04-25T04:14:11.9823409Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:12.0324724Z 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-04-25T04:14:12.0448081Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:12.0943543Z 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-04-25T04:14:12.1051116Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:12.1563661Z 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-04-25T04:14:12.1697934Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:12.2228536Z 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-04-25T04:14:12.2346934Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:12.2845990Z 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-04-25T04:14:12.2993281Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:12.3482564Z 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-04-25T04:14:12.3610647Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:12.4125689Z 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-04-25T04:14:12.4259935Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:12.4751960Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-04-25T04:14:12.4874881Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:12.5369077Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-04-25T04:14:12.5510842Z Entering 'third_party/kleidiai' 2025-04-25T04:14:12.5998473Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-04-25T04:14:12.6118416Z Entering 'third_party/mimalloc' 2025-04-25T04:14:12.6609042Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-04-25T04:14:12.6727266Z Entering 'third_party/nlohmann' 2025-04-25T04:14:12.7215865Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-04-25T04:14:12.7334437Z Entering 'third_party/onnx' 2025-04-25T04:14:12.7823813Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-04-25T04:14:12.7949516Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:12.8449977Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:14:12.8590608Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:12.9100532Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-04-25T04:14:12.9210812Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:12.9717365Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:14:12.9837804Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:13.0336614Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:13.0457962Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:13.0954007Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-04-25T04:14:13.1074762Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:13.1583852Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-04-25T04:14:13.1703458Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:13.2205571Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-04-25T04:14:13.2328333Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:13.2816716Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-04-25T04:14:13.2935772Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:13.3450603Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-04-25T04:14:13.3558616Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:13.4071863Z 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-04-25T04:14:13.4195996Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:13.4698239Z 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-04-25T04:14:13.4833425Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:13.5324549Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-04-25T04:14:13.5484848Z Entering 'third_party/pocketfft' 2025-04-25T04:14:13.5993889Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-04-25T04:14:13.6115765Z Entering 'third_party/protobuf' 2025-04-25T04:14:13.6623981Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-04-25T04:14:13.6732400Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:13.7227590Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:14:13.7350605Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:13.7842511Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:13.7994156Z Entering 'third_party/psimd' 2025-04-25T04:14:13.8492142Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-04-25T04:14:13.8610805Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:13.9114933Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-04-25T04:14:13.9239046Z Entering 'third_party/pybind11' 2025-04-25T04:14:13.9726043Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:14:13.9843456Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:14.0335013Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-04-25T04:14:14.0472915Z Entering 'third_party/sleef' 2025-04-25T04:14:14.0992149Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-04-25T04:14:14.1113091Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:14.1619109Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-04-25T04:14:14.1844430Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:14.2353894Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:14.2476250Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:14.2966379Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-04-25T04:14:14.3086827Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:14.3576529Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-04-25T04:14:14.3705652Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:14.4211690Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:14:14.4329163Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:14.4853138Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-04-25T04:14:14.5408390Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-04-25T04:14:14.8818592Z Entering 'android/libs/fbjni' 2025-04-25T04:14:14.9160118Z Entering 'third_party/FP16' 2025-04-25T04:14:14.9491363Z Entering 'third_party/FXdiv' 2025-04-25T04:14:14.9820449Z Entering 'third_party/NNPACK' 2025-04-25T04:14:15.0161865Z Entering 'third_party/NVTX' 2025-04-25T04:14:15.0486770Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:15.0811538Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:15.1157091Z Entering 'third_party/benchmark' 2025-04-25T04:14:15.1479749Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:15.1831058Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:15.2188240Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:15.2551316Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:15.2908618Z Entering 'third_party/cutlass' 2025-04-25T04:14:15.3264239Z Entering 'third_party/eigen' 2025-04-25T04:14:15.3594460Z Entering 'third_party/fbgemm' 2025-04-25T04:14:15.3915005Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:15.4253585Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:15.4584166Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:15.4973726Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:15.5673757Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:15.6042497Z Entering 'third_party/flash-attention' 2025-04-25T04:14:15.6368533Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:15.6720724Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:15.7080634Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:15.7420638Z Entering 'third_party/fmt' 2025-04-25T04:14:15.7755623Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:15.8087270Z Entering 'third_party/gloo' 2025-04-25T04:14:15.8414844Z Entering 'third_party/googletest' 2025-04-25T04:14:15.8755977Z Entering 'third_party/ideep' 2025-04-25T04:14:15.9082273Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:15.9460911Z Entering 'third_party/ittapi' 2025-04-25T04:14:15.9824514Z Entering 'third_party/kineto' 2025-04-25T04:14:16.0138739Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:16.0460885Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:16.0811174Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:16.1140806Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:16.1473956Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:16.1799045Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:16.2164597Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:16.2529077Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:16.2872531Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:16.3203762Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:16.3574586Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:16.3905792Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:16.4258156Z Entering 'third_party/kleidiai' 2025-04-25T04:14:16.4587480Z Entering 'third_party/mimalloc' 2025-04-25T04:14:16.4924116Z Entering 'third_party/nlohmann' 2025-04-25T04:14:16.5264859Z Entering 'third_party/onnx' 2025-04-25T04:14:16.5608246Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:16.5960325Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:16.6292829Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:16.6624064Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:16.6960796Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:16.7295749Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:16.7628132Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:16.7961659Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:16.8294783Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:16.8613721Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:16.8995123Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:16.9364778Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:16.9730994Z Entering 'third_party/pocketfft' 2025-04-25T04:14:17.0066892Z Entering 'third_party/protobuf' 2025-04-25T04:14:17.0387464Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:17.0719618Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:17.1072298Z Entering 'third_party/psimd' 2025-04-25T04:14:17.1403139Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:17.1735218Z Entering 'third_party/pybind11' 2025-04-25T04:14:17.2069021Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:17.2402303Z Entering 'third_party/sleef' 2025-04-25T04:14:17.2728961Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:17.3043945Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:17.3383626Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:17.3712201Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:17.4045527Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:17.4375658Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:17.4851532Z [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-04-25T04:14:17.8174866Z Entering 'android/libs/fbjni' 2025-04-25T04:14:17.8511966Z Entering 'third_party/FP16' 2025-04-25T04:14:17.8849360Z Entering 'third_party/FXdiv' 2025-04-25T04:14:17.9180350Z Entering 'third_party/NNPACK' 2025-04-25T04:14:17.9515491Z Entering 'third_party/NVTX' 2025-04-25T04:14:17.9885074Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:18.0233528Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:18.0598081Z Entering 'third_party/benchmark' 2025-04-25T04:14:18.0940353Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:18.1281942Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:18.1617677Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:18.1950686Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:18.2279454Z Entering 'third_party/cutlass' 2025-04-25T04:14:18.2624378Z Entering 'third_party/eigen' 2025-04-25T04:14:18.2967198Z Entering 'third_party/fbgemm' 2025-04-25T04:14:18.3279600Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:18.3632480Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:18.3964159Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:18.4302192Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:18.4633253Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:18.5005611Z Entering 'third_party/flash-attention' 2025-04-25T04:14:18.5319470Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:18.5693774Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:18.6057128Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:18.6415927Z Entering 'third_party/fmt' 2025-04-25T04:14:18.6744636Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:18.7077751Z Entering 'third_party/gloo' 2025-04-25T04:14:18.7450566Z Entering 'third_party/googletest' 2025-04-25T04:14:18.7776423Z Entering 'third_party/ideep' 2025-04-25T04:14:18.8096336Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:18.8491670Z Entering 'third_party/ittapi' 2025-04-25T04:14:18.8820437Z Entering 'third_party/kineto' 2025-04-25T04:14:18.9142646Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:18.9475209Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:18.9823665Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:19.0170512Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:19.0521804Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:19.0843282Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:19.1198090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:19.1536275Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:19.1873145Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:19.2219395Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:19.2574084Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:19.2935535Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:19.3294466Z Entering 'third_party/kleidiai' 2025-04-25T04:14:19.3634512Z Entering 'third_party/mimalloc' 2025-04-25T04:14:19.3977947Z Entering 'third_party/nlohmann' 2025-04-25T04:14:19.4326978Z Entering 'third_party/onnx' 2025-04-25T04:14:19.4667492Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:19.5022245Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:19.5343867Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:19.5689647Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:19.6032987Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:19.6358082Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:19.6741022Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:19.7077763Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:19.7419542Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:19.7737240Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:19.8080858Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:19.8437006Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:19.8799595Z Entering 'third_party/pocketfft' 2025-04-25T04:14:19.9130109Z Entering 'third_party/protobuf' 2025-04-25T04:14:19.9450580Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:19.9783269Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:20.0143603Z Entering 'third_party/psimd' 2025-04-25T04:14:20.0474161Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:20.0807532Z Entering 'third_party/pybind11' 2025-04-25T04:14:20.1162138Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:20.1491407Z Entering 'third_party/sleef' 2025-04-25T04:14:20.1832006Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:20.2175999Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:20.2517834Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:20.2849261Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:20.3180020Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:20.3495004Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:20.3987245Z ##[endgroup] 2025-04-25T04:14:20.4249494Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-04-25T04:14:20.4450947Z b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:14:20.4734449Z Prepare all required actions 2025-04-25T04:14:20.4798340Z ##[group]Run ./.github/actions/setup-win 2025-04-25T04:14:20.4798793Z with: 2025-04-25T04:14:20.4798973Z cuda-version: cpu 2025-04-25T04:14:20.4799182Z env: 2025-04-25T04:14:20.4799361Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:20.4799596Z ##[endgroup] 2025-04-25T04:14:20.4880627Z ##[group]Run set -euo pipefail 2025-04-25T04:14:20.4880999Z set -euo pipefail 2025-04-25T04:14:20.4881277Z function get_ec2_metadata() { 2025-04-25T04:14:20.4881618Z  # Pulled from instance metadata endpoint for EC2 2025-04-25T04:14:20.4882215Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-04-25T04:14:20.4882732Z  category=$1 2025-04-25T04:14:20.4883604Z  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-04-25T04:14:20.4884489Z } 2025-04-25T04:14:20.4884777Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-04-25T04:14:20.4885171Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-04-25T04:14:20.4885600Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-04-25T04:14:20.4885987Z echo "system info $(uname -a)" 2025-04-25T04:14:20.4904934Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:20.4905352Z env: 2025-04-25T04:14:20.4905566Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:20.4905808Z ##[endgroup] 2025-04-25T04:14:20.5457367Z ami-id: ami-047591c381c19028d 2025-04-25T04:14:20.5924700Z instance-id: i-0533c757f4ff2fec3 2025-04-25T04:14:20.6211232Z instance-type: c5d.4xlarge 2025-04-25T04:14:20.6395250Z 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-04-25T04:14:20.6490823Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-04-25T04:14:20.6491940Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-04-25T04:14:20.6507865Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:14:20.6508331Z env: 2025-04-25T04:14:20.6508526Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:20.6508766Z ##[endgroup] 2025-04-25T04:14:21.0256398Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:14:21.0327241Z Finished 2025-04-25T04:14:21.0630436Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-04-25T04:14:21.0630928Z # Windows conda is baked into the AMI at this location 2025-04-25T04:14:21.0631340Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-04-25T04:14:21.0631677Z  2025-04-25T04:14:21.0631895Z { 2025-04-25T04:14:21.0632159Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-04-25T04:14:21.0632717Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-04-25T04:14:21.0633076Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-04-25T04:14:21.0633375Z } >> "${GITHUB_ENV}" 2025-04-25T04:14:21.0652421Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:21.0652862Z env: 2025-04-25T04:14:21.0653046Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:21.0653284Z ##[endgroup] 2025-04-25T04:14:21.0924683Z ##[group]Run set +e 2025-04-25T04:14:21.0924931Z set +e 2025-04-25T04:14:21.0925137Z set -x 2025-04-25T04:14:21.0925325Z  2025-04-25T04:14:21.0925549Z PYTHON3=$(${CONDA_RUN} which python3) 2025-04-25T04:14:21.0925863Z EXIT_CODE=$? 2025-04-25T04:14:21.0926068Z  2025-04-25T04:14:21.0927469Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-04-25T04:14:21.0927881Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-04-25T04:14:21.0928399Z  2025-04-25T04:14:21.0928612Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-04-25T04:14:21.0928958Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-04-25T04:14:21.0929252Z else 2025-04-25T04:14:21.0929697Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-04-25T04:14:21.0930399Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-04-25T04:14:21.0931057Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-04-25T04:14:21.0931627Z  # needed. In both cases, Python binary is just called python 2025-04-25T04:14:21.0932039Z  PYTHON=$(${CONDA_RUN} which python) 2025-04-25T04:14:21.0932328Z  EXIT_CODE=$? 2025-04-25T04:14:21.0932564Z  2025-04-25T04:14:21.0932764Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-04-25T04:14:21.0933223Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-04-25T04:14:21.0933638Z  2025-04-25T04:14:21.0944552Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-04-25T04:14:21.0945146Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-04-25T04:14:21.0945611Z  # here pointing to Python 2025-04-25T04:14:21.0945899Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-04-25T04:14:21.0946173Z  2025-04-25T04:14:21.0946379Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-04-25T04:14:21.0946710Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-04-25T04:14:21.0946996Z  else 2025-04-25T04:14:21.0947231Z  echo "Found no Python using ${CONDA_RUN}" 2025-04-25T04:14:21.0947529Z  fi 2025-04-25T04:14:21.0947700Z fi 2025-04-25T04:14:21.0965230Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:21.0965712Z env: 2025-04-25T04:14:21.0965886Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:21.0966253Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:21.0966774Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:21.0967229Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:21.0967573Z ##[endgroup] 2025-04-25T04:14:21.1199630Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-04-25T04:14:28.3573880Z 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-04-25T04:14:28.3600095Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-04-25T04:14:28.4261129Z + PYTHON3= 2025-04-25T04:14:28.4261343Z + EXIT_CODE=1 2025-04-25T04:14:28.4262127Z + [[ 1 == \0 ]] 2025-04-25T04:14:28.4319771Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-04-25T04:14:30.0623505Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-04-25T04:14:30.0623832Z + EXIT_CODE=0 2025-04-25T04:14:30.0624016Z + [[ 0 == \0 ]] 2025-04-25T04:14:30.0624443Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-04-25T04:14:30.0626066Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-04-25T04:14:30.0735143Z ++ echo /c/Jenkins/Miniconda3/python 2025-04-25T04:14:30.0784879Z ++ sed s/python/python3/ 2025-04-25T04:14:30.0847775Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-04-25T04:14:30.0848193Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-04-25T04:14:30.1050390Z ++ dirname /c/Jenkins/Miniconda3/python 2025-04-25T04:14:30.1122975Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-04-25T04:14:30.1123298Z + echo /c/Jenkins/Miniconda3 2025-04-25T04:14:30.1236475Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-04-25T04:14:30.1237085Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-04-25T04:14:30.1237537Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-04-25T04:14:30.1258369Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:30.1258824Z env: 2025-04-25T04:14:30.1259010Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:30.1259396Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:30.1259896Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:30.1260374Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:30.1260720Z ##[endgroup] 2025-04-25T04:14:30.2091306Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-04-25T04:14:30.2092250Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-04-25T04:14:30.2093024Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-04-25T04:14:30.2093475Z # that it doesn't interfere 2025-04-25T04:14:30.2093925Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-04-25T04:14:30.2108751Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:14:30.2109216Z env: 2025-04-25T04:14:30.2109392Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:30.2109760Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:30.2110272Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:30.2110724Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:30.2111125Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:30.2111402Z ##[endgroup] 2025-04-25T04:14:30.5719794Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:14:30.5785258Z Finished 2025-04-25T04:14:31.4206717Z ##[group]Run choco install handle -y 2025-04-25T04:14:31.4207038Z choco install handle -y 2025-04-25T04:14:31.4207358Z handle C:\actions-runner\_work\ 2025-04-25T04:14:31.4222433Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:14:31.4222920Z env: 2025-04-25T04:14:31.4223112Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:31.4223501Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:31.4224017Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:31.4224593Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:31.4225002Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:31.4225301Z ##[endgroup] 2025-04-25T04:14:31.7835688Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:14:31.7906441Z Finished 2025-04-25T04:14:34.7152689Z Chocolatey v2.4.2 2025-04-25T04:14:34.8826703Z Installing the following packages: 2025-04-25T04:14:34.8831854Z handle 2025-04-25T04:14:34.8835807Z By installing, you accept licenses for the packages. 2025-04-25T04:14:36.2731384Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-04-25T04:14:36.3859401Z 2025-04-25T04:14:36.3860058Z Progress: Downloading Handle 5.0... 15% 2025-04-25T04:14:36.3860440Z Progress: Downloading Handle 5.0... 45% 2025-04-25T04:14:36.3860826Z Progress: Downloading Handle 5.0... 75% 2025-04-25T04:14:36.3861125Z Progress: Downloading Handle 5.0... 100% 2025-04-25T04:14:36.6418485Z 2025-04-25T04:14:36.6418875Z handle v5.0.0 [Approved] 2025-04-25T04:14:36.6618112Z handle package files install completed. Performing other installation steps. 2025-04-25T04:14:38.3746106Z Downloading Handle 2025-04-25T04:14:38.3746506Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-04-25T04:14:38.4651018Z 2025-04-25T04:14:38.4762277Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-04-25T04:14:38.4776231Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-04-25T04:14:38.4790993Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-04-25T04:14:38.4810003Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-04-25T04:14:38.4813213Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-04-25T04:14:38.4819402Z Download of Handle.zip (729.82 KB) completed. 2025-04-25T04:14:41.5539777Z Hashes match. 2025-04-25T04:14:41.5794900Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-04-25T04:14:42.1799749Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-04-25T04:14:42.1853574Z HKEY_CURRENT_USER\Software\Sysinternals 2025-04-25T04:14:42.1884411Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-04-25T04:14:42.6893915Z ShimGen has successfully created a shim for handle.exe 2025-04-25T04:14:42.8689718Z ShimGen has successfully created a shim for handle64.exe 2025-04-25T04:14:43.0367317Z ShimGen has successfully created a shim for handle64a.exe 2025-04-25T04:14:43.0627223Z The install of handle was successful. 2025-04-25T04:14:43.0630178Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-04-25T04:14:43.0729235Z 2025-04-25T04:14:43.0729624Z Chocolatey installed 1/1 packages. 2025-04-25T04:14:43.0730072Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-04-25T04:14:43.2346136Z 2025-04-25T04:14:43.2346509Z Nthandle v5.0 - Handle viewer 2025-04-25T04:14:43.2346865Z Copyright (C) 1997-2022 Mark Russinovich 2025-04-25T04:14:43.2347176Z Sysinternals - www.sysinternals.com 2025-04-25T04:14:43.2347370Z 2025-04-25T04:14:43.3561368Z powershell.exe pid: 1120 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:14:43.3561990Z handle.exe pid: 552 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:14:43.3562529Z handle.exe pid: 3956 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:14:43.3563126Z handle64.exe pid: 5784 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:14:43.3869518Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-04-25T04:14:43.3869981Z python3 .github/scripts/parse_ref.py 2025-04-25T04:14:43.3888939Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:43.3889350Z env: 2025-04-25T04:14:43.3889547Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:43.3889927Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:43.3890430Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:43.3890898Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:43.3891283Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:43.3891564Z ##[endgroup] 2025-04-25T04:14:43.4660193Z Prepare all required actions 2025-04-25T04:14:43.4693984Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-04-25T04:14:43.4694305Z with: 2025-04-25T04:14:43.4694874Z github-token: *** 2025-04-25T04:14:43.4695067Z env: 2025-04-25T04:14:43.4695388Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:43.4695755Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:43.4696314Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:43.4696810Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:43.4697200Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:43.4697477Z ##[endgroup] 2025-04-25T04:14:43.4765309Z ##[group]Run set -eux 2025-04-25T04:14:43.4765524Z set -eux 2025-04-25T04:14:43.4765993Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-04-25T04:14:43.4784843Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:43.4785256Z env: 2025-04-25T04:14:43.4785450Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:43.4785813Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:43.4786336Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:43.4786807Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:43.4787187Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:43.4787654Z GITHUB_TOKEN: *** 2025-04-25T04:14:43.4787843Z ##[endgroup] 2025-04-25T04:14:43.4974305Z + python3 .github/scripts/get_workflow_job_id.py 14656749847 i-0533c757f4ff2fec3 2025-04-25T04:14:43.9545814Z setting job-id=41133079878 2025-04-25T04:14:43.9546120Z setting job-name=win-vs2022-cpu-py3 / build 2025-04-25T04:14:43.9846318Z Prepare all required actions 2025-04-25T04:14:43.9846706Z Getting action download info 2025-04-25T04:14:44.0895016Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-04-25T04:14:44.3574644Z ##[group]Run ./.github/actions/filter-test-configs 2025-04-25T04:14:44.3574952Z with: 2025-04-25T04:14:44.3575332Z github-token: *** 2025-04-25T04:14:44.3576516Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, { config: "default", shard: 2, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, { config: "default", shard: 3, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, ]} 2025-04-25T04:14:44.3577770Z job-name: win-vs2022-cpu-py3 / build 2025-04-25T04:14:44.3578030Z env: 2025-04-25T04:14:44.3578200Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:44.3578615Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:44.3579160Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:44.3579668Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:44.3580055Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:44.3580341Z ##[endgroup] 2025-04-25T04:14:44.3671460Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:14:44.3671752Z with: 2025-04-25T04:14:44.3671916Z shell: bash 2025-04-25T04:14:44.3672103Z timeout_minutes: 10 2025-04-25T04:14:44.3672304Z max_attempts: 5 2025-04-25T04:14:44.3672495Z retry_wait_seconds: 30 2025-04-25T04:14:44.3673205Z 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-04-25T04:14:44.3673959Z polling_interval_seconds: 1 2025-04-25T04:14:44.3674206Z warning_on_retry: true 2025-04-25T04:14:44.3674484Z continue_on_error: false 2025-04-25T04:14:44.3674709Z env: 2025-04-25T04:14:44.3674919Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:44.3675288Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:44.3675800Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:44.3676256Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:44.3676798Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:44.3677247Z GITHUB_TOKEN: *** 2025-04-25T04:14:44.3677437Z ##[endgroup] 2025-04-25T04:14:44.4849734Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-04-25T04:14:48.4041163Z Collecting requests==2.27.1 2025-04-25T04:14:48.6165580Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-04-25T04:14:48.7329515Z Collecting pyyaml==6.0.1 2025-04-25T04:14:48.7389093Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-04-25T04:14:48.7682553Z 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-04-25T04:14:48.7689909Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.1.31) 2025-04-25T04:14:48.7705027Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-04-25T04:14:48.7721904Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-04-25T04:14:48.8064696Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-04-25T04:14:48.8985657Z ---------------------------------------- 63.1/63.1 kB 839.6 kB/s eta 0:00:00 2025-04-25T04:14:48.9042166Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-04-25T04:14:48.9544031Z ---------------------------------------- 152.8/152.8 kB 4.6 MB/s eta 0:00:00 2025-04-25T04:14:50.2920807Z Installing collected packages: requests, pyyaml 2025-04-25T04:14:50.2921326Z Attempting uninstall: requests 2025-04-25T04:14:50.2932112Z Found existing installation: requests 2.32.3 2025-04-25T04:14:50.3008463Z Uninstalling requests-2.32.3: 2025-04-25T04:14:50.3032082Z Successfully uninstalled requests-2.32.3 2025-04-25T04:14:50.3788034Z Attempting uninstall: pyyaml 2025-04-25T04:14:50.3794664Z Found existing installation: PyYAML 6.0.2 2025-04-25T04:14:50.3875137Z Uninstalling PyYAML-6.0.2: 2025-04-25T04:14:50.3905369Z Successfully uninstalled PyYAML-6.0.2 2025-04-25T04:14:50.5102725Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-04-25T04:14:51.5151861Z Command completed after 1 attempt(s). 2025-04-25T04:14:51.5304508Z ##[group]Run set -x 2025-04-25T04:14:51.5304741Z set -x 2025-04-25T04:14:51.5304923Z  2025-04-25T04:14:51.5305281Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-04-25T04:14:51.5305818Z # in runner workspace 2025-04-25T04:14:51.5306200Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-04-25T04:14:51.5325615Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:51.5326046Z env: 2025-04-25T04:14:51.5326244Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:51.5326605Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:51.5327141Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:51.5327598Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:51.5327994Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:51.5328271Z ##[endgroup] 2025-04-25T04:14:51.5519655Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-04-25T04:14:51.6107626Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-04-25T04:14:51.6108010Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-04-25T04:14:51.6108313Z echo "Job name: ${JOB_NAME}" 2025-04-25T04:14:51.6108564Z  2025-04-25T04:14:51.6108904Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-04-25T04:14:51.6109327Z # in runner workspace 2025-04-25T04:14:51.6109709Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-04-25T04:14:51.6110298Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-04-25T04:14:51.6110588Z  --job-name "${JOB_NAME}" \ 2025-04-25T04:14:51.6110875Z  --test-matrix "{ include: [ 2025-04-25T04:14:51.6111367Z  { config: "default", shard: 1, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, 2025-04-25T04:14:51.6112069Z  { config: "default", shard: 2, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, 2025-04-25T04:14:51.6112822Z  { config: "default", shard: 3, num_shards: 3, runner: "ephemeral.windows.4xlarge.nonephemeral" }, 2025-04-25T04:14:51.6113324Z ]} 2025-04-25T04:14:51.6113504Z " \ 2025-04-25T04:14:51.6113709Z  --selected-test-configs "" \ 2025-04-25T04:14:51.6114007Z  --pr-number "${PR_NUMBER}" \ 2025-04-25T04:14:51.6114268Z  --tag "${TAG}" \ 2025-04-25T04:14:51.6114530Z  --event-name "${EVENT_NAME}" \ 2025-04-25T04:14:51.6114810Z  --schedule "${SCHEDULE}" \ 2025-04-25T04:14:51.6115078Z  --branch "${HEAD_BRANCH}" 2025-04-25T04:14:51.6133674Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:51.6134097Z env: 2025-04-25T04:14:51.6134279Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:51.6134646Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:51.6135225Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:51.6136267Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:51.6136693Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:51.6137231Z GITHUB_TOKEN: *** 2025-04-25T04:14:51.6137470Z JOB_NAME: win-vs2022-cpu-py3 / build 2025-04-25T04:14:51.6137725Z PR_NUMBER: 2025-04-25T04:14:51.6137929Z TAG: ciflow/trunk/148893 2025-04-25T04:14:51.6138149Z EVENT_NAME: push 2025-04-25T04:14:51.6138360Z SCHEDULE: 2025-04-25T04:14:51.6138536Z HEAD_BRANCH: 2025-04-25T04:14:51.6138715Z ##[endgroup] 2025-04-25T04:14:51.6331618Z Workflow: trunk 2025-04-25T04:14:51.6331883Z Job name: win-vs2022-cpu-py3 / build 2025-04-25T04:14:51.9053805Z INFO:root:Found no test-config label on the PR, so all test configs are included 2025-04-25T04:14:52.1162261Z ##[group]Run echo "Filtered matrix:" 2025-04-25T04:14:52.1162583Z echo "Filtered matrix:" 2025-04-25T04:14:52.1163818Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "ephemeral.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "ephemeral.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "ephemeral.windows.4xlarge.nonephemeral"}]}" 2025-04-25T04:14:52.1165028Z  2025-04-25T04:14:52.1165200Z echo 2025-04-25T04:14:52.1165447Z echo "Is the current job unstable? False" 2025-04-25T04:14:52.1165766Z  2025-04-25T04:14:52.1165945Z echo 2025-04-25T04:14:52.1166164Z echo "Is keep-going label set? False" 2025-04-25T04:14:52.1166446Z  2025-04-25T04:14:52.1166613Z echo 2025-04-25T04:14:52.1166817Z echo "Renabled issues? " 2025-04-25T04:14:52.1185465Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:52.1185902Z env: 2025-04-25T04:14:52.1186082Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:52.1186474Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:52.1186982Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:52.1187442Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:52.1187838Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:52.1188123Z ##[endgroup] 2025-04-25T04:14:52.1373592Z Filtered matrix: 2025-04-25T04:14:52.1374889Z {include: [{config: default, shard: 1, num_shards: 3, runner: ephemeral.windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: ephemeral.windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: ephemeral.windows.4xlarge.nonephemeral}]} 2025-04-25T04:14:52.1376266Z 2025-04-25T04:14:52.1376384Z Is the current job unstable? False 2025-04-25T04:14:52.1376569Z 2025-04-25T04:14:52.1376663Z Is keep-going label set? False 2025-04-25T04:14:52.1376838Z 2025-04-25T04:14:52.1376913Z Renabled issues? 2025-04-25T04:14:52.1486313Z Prepare all required actions 2025-04-25T04:14:52.1486722Z Getting action download info 2025-04-25T04:14:52.2418752Z ##[group]Run ./.github/actions/pytest-cache-download 2025-04-25T04:14:52.2419071Z with: 2025-04-25T04:14:52.2419264Z cache_dir: .pytest_cache 2025-04-25T04:14:52.2419522Z job_identifier: trunk_win-vs2022-cpu-py3 2025-04-25T04:14:52.2419899Z s3_bucket: gha-artifacts 2025-04-25T04:14:52.2420162Z env: 2025-04-25T04:14:52.2420404Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:52.2420764Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:52.2421284Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:52.2421759Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:52.2422149Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:52.2422438Z ##[endgroup] 2025-04-25T04:14:52.2510692Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:14:52.2511016Z with: 2025-04-25T04:14:52.2511179Z shell: bash 2025-04-25T04:14:52.2511372Z timeout_minutes: 5 2025-04-25T04:14:52.2511569Z max_attempts: 5 2025-04-25T04:14:52.2511781Z retry_wait_seconds: 30 2025-04-25T04:14:52.2512071Z command: set -eu python3 -m pip install boto3==1.35.42 2025-04-25T04:14:52.2512425Z polling_interval_seconds: 1 2025-04-25T04:14:52.2512672Z warning_on_retry: true 2025-04-25T04:14:52.2512896Z continue_on_error: false 2025-04-25T04:14:52.2513133Z env: 2025-04-25T04:14:52.2513300Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:52.2513662Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:52.2514174Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:52.2514645Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:52.2515040Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:52.2515320Z ##[endgroup] 2025-04-25T04:14:53.8036412Z Collecting boto3==1.35.42 2025-04-25T04:14:53.9877003Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-04-25T04:14:54.7255221Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-04-25T04:14:54.7303594Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-04-25T04:14:54.7412898Z 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-04-25T04:14:54.7735183Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-04-25T04:14:54.7778883Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-04-25T04:14:54.7933653Z 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-04-25T04:14:54.7947476Z 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-04-25T04:14:55.0910059Z 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-04-25T04:14:55.1136071Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-04-25T04:14:55.2196309Z ---------------------------------------- 139.2/139.2 kB 1.2 MB/s eta 0:00:00 2025-04-25T04:14:55.2237116Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-04-25T04:14:55.3540885Z ---------------------------------------- 13.3/13.3 MB 108.7 MB/s eta 0:00:00 2025-04-25T04:14:55.3586187Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-04-25T04:14:55.3681943Z ---------------------------------------- 83.2/83.2 kB 4.6 MB/s eta 0:00:00 2025-04-25T04:14:56.1879474Z Installing collected packages: botocore, s3transfer, boto3 2025-04-25T04:14:56.1880476Z Attempting uninstall: botocore 2025-04-25T04:14:56.1888766Z Found existing installation: botocore 1.36.3 2025-04-25T04:14:56.3835821Z Uninstalling botocore-1.36.3: 2025-04-25T04:14:56.4626318Z Successfully uninstalled botocore-1.36.3 2025-04-25T04:14:58.7483884Z Attempting uninstall: s3transfer 2025-04-25T04:14:58.7493339Z Found existing installation: s3transfer 0.11.2 2025-04-25T04:14:58.7562771Z Uninstalling s3transfer-0.11.2: 2025-04-25T04:14:58.7585972Z Successfully uninstalled s3transfer-0.11.2 2025-04-25T04:14:58.8334620Z Attempting uninstall: boto3 2025-04-25T04:14:58.8371978Z Found existing installation: boto3 1.36.3 2025-04-25T04:14:58.8505319Z Uninstalling boto3-1.36.3: 2025-04-25T04:14:58.8553553Z Successfully uninstalled boto3-1.36.3 2025-04-25T04:14:59.0139400Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-04-25T04:14:59.4155445Z Command completed after 1 attempt(s). 2025-04-25T04:14:59.4333576Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-04-25T04:14:59.4333996Z python3 .github/scripts/pytest_cache.py \ 2025-04-25T04:14:59.4334374Z  --download \ 2025-04-25T04:14:59.4334690Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-04-25T04:14:59.4335064Z  --pr_identifier $GITHUB_REF \ 2025-04-25T04:14:59.4335367Z  --job_identifier $JOB_IDENTIFIER \ 2025-04-25T04:14:59.4335664Z  --temp_dir $RUNNER_TEMP \ 2025-04-25T04:14:59.4335917Z  --repo $REPO \ 2025-04-25T04:14:59.4336149Z  --bucket $BUCKET \ 2025-04-25T04:14:59.4355288Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:14:59.4355722Z env: 2025-04-25T04:14:59.4355906Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:14:59.4356274Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:14:59.4356791Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:14:59.4357261Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:14:59.4357666Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:14:59.4357962Z CACHE_DIR: .pytest_cache 2025-04-25T04:14:59.4358214Z JOB_IDENTIFIER: trunk_win-vs2022-cpu-py3 2025-04-25T04:14:59.4358489Z REPO: pytorch/pytorch 2025-04-25T04:14:59.4358721Z BUCKET: gha-artifacts 2025-04-25T04:14:59.4358921Z ##[endgroup] 2025-04-25T04:15:00.2987772Z PR identifier for `refs/tags/ciflow/trunk/148893` is `30779d575b8a47fc2a1c4cbc49ad63f8` 2025-04-25T04:15:00.2989454Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/tags/ciflow/trunk/148893', job_identifier='trunk_win-vs2022-cpu-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-04-25T04:15:00.2991361Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/30779d575b8a47fc2a1c4cbc49ad63f8/trunk_win-vs2022-cpu-py3` in bucket `gha-artifacts` 2025-04-25T04:15:00.3638691Z ##[group]Run .ci/pytorch/win-build.sh 2025-04-25T04:15:00.3639106Z .ci/pytorch/win-build.sh 2025-04-25T04:15:00.3657080Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:00.3657502Z env: 2025-04-25T04:15:00.3657680Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:00.3658060Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:00.3658722Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:00.3659293Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:00.3659734Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:00.3660092Z PYTORCH_FINAL_PACKAGE_DIR: /c/14656749847/build-results/ 2025-04-25T04:15:00.3660425Z BRANCH: 2025-04-25T04:15:00.3660617Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-04-25T04:15:00.3660890Z BUILD_WHEEL: 1 2025-04-25T04:15:00.3661073Z MAX_JOBS: 8 2025-04-25T04:15:00.3661314Z CUDA_VERSION: cpu 2025-04-25T04:15:00.3661512Z PYTHON_VERSION: 3.9 2025-04-25T04:15:00.3661742Z SCCACHE_BUCKET: ossci-compiler-cache 2025-04-25T04:15:00.3662028Z SCCACHE_S3_KEY_PREFIX: trunk 2025-04-25T04:15:00.3662279Z SCCACHE_REGION: us-east-1 2025-04-25T04:15:00.3662519Z VC_PRODUCT: BuildTools 2025-04-25T04:15:00.3662738Z VC_VERSION: 2025-04-25T04:15:00.3662928Z VC_YEAR: 2019 2025-04-25T04:15:00.3663234Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-04-25T04:15:00.3663647Z AWS_DEFAULT_REGION: us-east-1 2025-04-25T04:15:00.3663873Z PR_NUMBER: 2025-04-25T04:15:00.3664100Z SHA1: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:00.3664379Z DEBUG: 0 2025-04-25T04:15:00.3664569Z TORCH_CUDA_ARCH_LIST: 8.6 2025-04-25T04:15:00.3664779Z USE_CUDA: 0 2025-04-25T04:15:00.3664963Z USE_XPU: 0 2025-04-25T04:15:00.3665134Z XPU_VERSION: 2025-04-25T04:15:00.3665331Z OUR_GITHUB_JOB_ID: 41133079878 2025-04-25T04:15:00.3665575Z ##[endgroup] 2025-04-25T04:15:00.4321457Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-04-25T04:15:00.4321781Z ++ BUILD_TEST_LIBTORCH=0 2025-04-25T04:15:00.4322195Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-04-25T04:15:00.4324589Z ++ [[ win-vs2022-cpu-py3 != *win-* ]] 2025-04-25T04:15:00.4325024Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:00.4325485Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:00.4381166Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:00.4472555Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-04-25T04:15:00.4472945Z + export TMP_DIR_WIN 2025-04-25T04:15:00.4473252Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/14656749847/build-results/ 2025-04-25T04:15:00.4473658Z + PYTORCH_FINAL_PACKAGE_DIR=/c/14656749847/build-results/ 2025-04-25T04:15:00.4474005Z + [[ -n /c/14656749847/build-results/ ]] 2025-04-25T04:15:00.4474299Z + mkdir -p /c/14656749847/build-results/ 2025-04-25T04:15:00.4601004Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:15:00.4601694Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:15:00.4602139Z + set +ex 2025-04-25T04:15:01.4168447Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-04-25T04:15:01.4305099Z 2025-04-25T04:15:01.4305753Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-04-25T04:15:01.4308731Z 2025-04-25T04:15:01.4313221Z 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-04-25T04:15:01.4315735Z 2025-04-25T04:15:01.4316253Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-04-25T04:15:01.4317039Z 2025-04-25T04:15:01.4317573Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-04-25T04:15:01.4325736Z 2025-04-25T04:15:01.4326091Z C:\actions-runner\_work\pytorch\pytorch>if "cpu" == "cpu" ( 2025-04-25T04:15:01.4326481Z echo skip magma installation for cpu builds 2025-04-25T04:15:01.4326797Z exit /b 0 2025-04-25T04:15:01.4326966Z ) 2025-04-25T04:15:01.4327156Z skip magma installation for cpu builds 2025-04-25T04:15:01.4329961Z 2025-04-25T04:15:01.4330370Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:15:01.4331199Z 2025-04-25T04:15:01.4331462Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:15:01.4332596Z 2025-04-25T04:15:01.4333180Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-04-25T04:15:01.4342221Z 2025-04-25T04:15:01.4342665Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-04-25T04:15:01.4349484Z 2025-04-25T04:15:01.4349746Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-04-25T04:15:01.4350211Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-04-25T04:15:01.4350691Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-04-25T04:15:01.4351171Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-04-25T04:15:01.4351614Z ) 2025-04-25T04:15:01.4352838Z if "win-vs2022-cpu-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-04-25T04:15:01.4354145Z ) 2025-04-25T04:15:02.7086068Z Completed 256.0 KiB/18.8 MiB (651.7 KiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7319753Z Completed 512.0 KiB/18.8 MiB (1.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7332262Z Completed 768.0 KiB/18.8 MiB (1.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7340911Z Completed 1.0 MiB/18.8 MiB (2.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7347225Z Completed 1.2 MiB/18.8 MiB (3.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7354548Z Completed 1.5 MiB/18.8 MiB (3.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7362594Z Completed 1.8 MiB/18.8 MiB (4.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7375249Z Completed 2.0 MiB/18.8 MiB (4.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7386336Z Completed 2.2 MiB/18.8 MiB (5.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7396698Z Completed 2.5 MiB/18.8 MiB (5.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7404345Z Completed 2.8 MiB/18.8 MiB (6.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7414982Z Completed 3.0 MiB/18.8 MiB (7.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7424403Z Completed 3.2 MiB/18.8 MiB (7.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7434047Z Completed 3.5 MiB/18.8 MiB (8.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7443612Z Completed 3.8 MiB/18.8 MiB (8.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7449408Z Completed 4.0 MiB/18.8 MiB (9.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7455801Z Completed 4.2 MiB/18.8 MiB (9.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7461499Z Completed 4.5 MiB/18.8 MiB (10.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7468102Z Completed 4.8 MiB/18.8 MiB (11.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7474438Z Completed 5.0 MiB/18.8 MiB (11.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7480490Z Completed 5.2 MiB/18.8 MiB (12.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7486660Z Completed 5.5 MiB/18.8 MiB (12.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7494524Z Completed 5.8 MiB/18.8 MiB (13.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7501409Z Completed 6.0 MiB/18.8 MiB (13.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7508982Z Completed 6.2 MiB/18.8 MiB (14.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7514833Z Completed 6.5 MiB/18.8 MiB (14.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7522444Z Completed 6.8 MiB/18.8 MiB (15.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7529031Z Completed 7.0 MiB/18.8 MiB (16.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7535638Z Completed 7.2 MiB/18.8 MiB (16.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7540612Z Completed 7.5 MiB/18.8 MiB (17.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7547439Z Completed 7.8 MiB/18.8 MiB (17.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7551687Z Completed 8.0 MiB/18.8 MiB (18.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7558405Z Completed 8.2 MiB/18.8 MiB (18.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7570966Z Completed 8.5 MiB/18.8 MiB (19.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7585824Z Completed 8.8 MiB/18.8 MiB (19.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7600074Z Completed 9.0 MiB/18.8 MiB (20.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7611584Z Completed 9.2 MiB/18.8 MiB (20.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7624695Z Completed 9.5 MiB/18.8 MiB (21.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7636050Z Completed 9.8 MiB/18.8 MiB (21.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7646867Z Completed 10.0 MiB/18.8 MiB (22.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7658514Z Completed 10.2 MiB/18.8 MiB (23.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7667916Z Completed 10.5 MiB/18.8 MiB (23.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7676842Z Completed 10.8 MiB/18.8 MiB (23.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7685716Z Completed 11.0 MiB/18.8 MiB (24.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7694448Z Completed 11.2 MiB/18.8 MiB (24.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7701920Z Completed 11.5 MiB/18.8 MiB (25.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7709991Z Completed 11.8 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7717147Z Completed 12.0 MiB/18.8 MiB (26.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7724333Z Completed 12.2 MiB/18.8 MiB (27.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7731338Z Completed 12.5 MiB/18.8 MiB (27.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7737210Z Completed 12.8 MiB/18.8 MiB (28.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7745910Z Completed 13.0 MiB/18.8 MiB (28.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7751417Z Completed 13.2 MiB/18.8 MiB (29.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7756694Z Completed 13.5 MiB/18.8 MiB (29.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7763104Z Completed 13.8 MiB/18.8 MiB (30.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7768931Z Completed 14.0 MiB/18.8 MiB (30.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7775095Z Completed 14.2 MiB/18.8 MiB (31.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7780324Z Completed 14.5 MiB/18.8 MiB (32.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7785262Z Completed 14.8 MiB/18.8 MiB (32.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7791492Z Completed 15.0 MiB/18.8 MiB (33.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7797753Z Completed 15.2 MiB/18.8 MiB (33.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7803295Z Completed 15.5 MiB/18.8 MiB (34.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7808988Z Completed 15.8 MiB/18.8 MiB (34.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7820540Z Completed 16.0 MiB/18.8 MiB (35.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7980491Z Completed 16.2 MiB/18.8 MiB (34.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.7993426Z Completed 16.5 MiB/18.8 MiB (34.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8005626Z Completed 16.8 MiB/18.8 MiB (34.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8023768Z Completed 17.0 MiB/18.8 MiB (34.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8035942Z Completed 17.2 MiB/18.8 MiB (35.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8041983Z Completed 17.5 MiB/18.8 MiB (35.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8051103Z Completed 17.8 MiB/18.8 MiB (36.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8065082Z Completed 18.0 MiB/18.8 MiB (36.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8870544Z Completed 18.2 MiB/18.8 MiB (37.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8876702Z Completed 18.5 MiB/18.8 MiB (32.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8887769Z Completed 18.8 MiB/18.8 MiB (32.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8895061Z Completed 18.8 MiB/18.8 MiB (32.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:02.8895586Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-04-25T04:15:02.9797142Z 2025-04-25T04:15:02.9797904Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:15:02.9798431Z 2025-04-25T04:15:02.9798853Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:15:02.9801046Z 2025-04-25T04:15:02.9801270Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-04-25T04:15:02.9801606Z set CUDA_VERSION=xpu 2025-04-25T04:15:02.9802118Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-04-25T04:15:02.9802701Z if errorlevel 1 exit /b 1 2025-04-25T04:15:02.9802927Z ) 2025-04-25T04:15:02.9803286Z 2025-04-25T04:15:02.9803869Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-04-25T04:15:02.9814227Z 2025-04-25T04:15:02.9814904Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-04-25T04:15:02.9817636Z 2025-04-25T04:15:02.9818025Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-04-25T04:15:02.9820308Z 2025-04-25T04:15:02.9820558Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-04-25T04:15:02.9821590Z 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-04-25T04:15:02.9822538Z if errorlevel 1 exit /b 2025-04-25T04:15:02.9822773Z if not errorlevel 0 exit /b 2025-04-25T04:15:02.9823564Z 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-04-25T04:15:02.9824358Z if errorlevel 1 exit /b 2025-04-25T04:15:02.9824602Z if not errorlevel 0 exit /b 2025-04-25T04:15:02.9825035Z ) 2025-04-25T04:15:02.9825134Z 2025-04-25T04:15:02.9825533Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-04-25T04:15:04.3266253Z Collecting mkl-include==2021.4.0 2025-04-25T04:15:04.5251575Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-04-25T04:15:04.5530739Z Collecting mkl-devel==2021.4.0 2025-04-25T04:15:04.5586208Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-04-25T04:15:04.5869696Z Collecting mkl==2021.4.0 (from mkl-devel==2021.4.0) 2025-04-25T04:15:04.5920323Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-04-25T04:15:04.6392562Z Collecting intel-openmp==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-04-25T04:15:04.6447925Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.2 kB) 2025-04-25T04:15:04.6720372Z Collecting tbb==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-04-25T04:15:04.6771662Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-04-25T04:15:04.6906465Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-04-25T04:15:04.7909073Z ---------------------------------------- 1.2/1.2 MB 12.7 MB/s eta 0:00:00 2025-04-25T04:15:04.7962233Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl (9.1 MB) 2025-04-25T04:15:04.8705640Z ---------------------------------------- 9.1/9.1 MB 144.9 MB/s eta 0:00:00 2025-04-25T04:15:04.8755868Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl (228.5 MB) 2025-04-25T04:15:08.7519186Z ---------------------------------------- 228.5/228.5 MB 4.4 MB/s eta 0:00:00 2025-04-25T04:15:08.7578785Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl (3.5 MB) 2025-04-25T04:15:08.7909512Z ---------------------------------------- 3.5/3.5 MB 109.6 MB/s eta 0:00:00 2025-04-25T04:15:08.7969088Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-04-25T04:15:08.8078497Z ---------------------------------------- 286.9/286.9 kB ? eta 0:00:00 2025-04-25T04:15:10.2172222Z Installing collected packages: tbb, mkl-include, intel-openmp, mkl, mkl-devel 2025-04-25T04:15:14.5486093Z 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-04-25T04:15:15.0026876Z ********************************************************************** 2025-04-25T04:15:15.0027353Z ** Visual Studio 2019 Developer Command Prompt v16.11.44 2025-04-25T04:15:15.0027718Z ** Copyright (c) 2021 Microsoft Corporation 2025-04-25T04:15:15.0028334Z ********************************************************************** 2025-04-25T04:15:15.4288328Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-04-25T04:15:15.4321765Z 2025-04-25T04:15:15.4322242Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-04-25T04:15:15.4325393Z 2025-04-25T04:15:15.4325867Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-04-25T04:15:15.4328048Z 2025-04-25T04:15:15.4328328Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-04-25T04:15:15.4330880Z 2025-04-25T04:15:15.4339178Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;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-04-25T04:15:15.4346674Z 2025-04-25T04:15:15.4346945Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-04-25T04:15:15.4347315Z 2025-04-25T04:15:15.4347515Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-04-25T04:15:15.4347838Z 2025-04-25T04:15:15.4348079Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-04-25T04:15:15.4348424Z 2025-04-25T04:15:15.4348631Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-04-25T04:15:15.4481473Z Stopping sccache server... 2025-04-25T04:15:16.4600040Z sccache: error: couldn't connect to server 2025-04-25T04:15:16.4602324Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-04-25T04:15:16.4625998Z 2025-04-25T04:15:16.4626557Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-04-25T04:15:16.4718343Z sccache: Starting the server... 2025-04-25T04:15:16.6114085Z 2025-04-25T04:15:16.6114610Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-04-25T04:15:16.6222888Z Compile requests 0 2025-04-25T04:15:16.6223270Z Compile requests executed 0 2025-04-25T04:15:16.6223549Z Cache hits 0 2025-04-25T04:15:16.6223808Z Cache misses 0 2025-04-25T04:15:16.6224067Z Cache timeouts 0 2025-04-25T04:15:16.6224320Z Cache read errors 0 2025-04-25T04:15:16.6224583Z Forced recaches 0 2025-04-25T04:15:16.6224850Z Cache write errors 0 2025-04-25T04:15:16.6225112Z Compilation failures 0 2025-04-25T04:15:16.6225403Z Cache errors 0 2025-04-25T04:15:16.6225670Z Non-cacheable compilations 0 2025-04-25T04:15:16.6225948Z Non-cacheable calls 0 2025-04-25T04:15:16.6226215Z Non-compilation calls 0 2025-04-25T04:15:16.6226499Z Unsupported compiler calls 0 2025-04-25T04:15:16.6226826Z Average cache write 0.000 s 2025-04-25T04:15:16.6227158Z Average compiler 0.000 s 2025-04-25T04:15:16.6227454Z Average cache read hit 0.000 s 2025-04-25T04:15:16.6227732Z Failed distributed compilations 0 2025-04-25T04:15:16.6228185Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:15:16.6228726Z Version (client) 0.7.4 2025-04-25T04:15:16.6242130Z 2025-04-25T04:15:16.6242596Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-04-25T04:15:16.6244632Z 2025-04-25T04:15:16.6245134Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-04-25T04:15:16.6246890Z 2025-04-25T04:15:16.6247131Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-04-25T04:15:16.6251099Z 2025-04-25T04:15:16.6251344Z (base) C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-04-25T04:15:16.6251690Z 2025-04-25T04:15:16.6251846Z 2025-04-25T04:15:16.6252013Z 2025-04-25T04:15:16.6252778Z 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-04-25T04:15:16.6253756Z if errorlevel 1 goto fail 2025-04-25T04:15:16.6254019Z if not errorlevel 0 goto fail 2025-04-25T04:15:16.6255177Z 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.8\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-04-25T04:15:16.6256574Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:15:16.6257186Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:15:16.6258016Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-04-25T04:15:16.6259248Z 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-04-25T04:15:16.6260055Z ) 2025-04-25T04:15:16.6260149Z 2025-04-25T04:15:16.6260294Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-04-25T04:15:16.6260717Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-04-25T04:15:16.6261118Z ALLUSERSPROFILE=C:\ProgramData 2025-04-25T04:15:16.6261532Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-04-25T04:15:16.6262004Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-04-25T04:15:16.6262291Z AWS_DEFAULT_REGION=us-east-1 2025-04-25T04:15:16.6262534Z AWS_EXECUTION_ENV=EC2 2025-04-25T04:15:16.6262729Z BRANCH= 2025-04-25T04:15:16.6262923Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-04-25T04:15:16.6263189Z BUILD_TYPE=release 2025-04-25T04:15:16.6263378Z BUILD_WHEEL=1 2025-04-25T04:15:16.6263567Z CI=true 2025-04-25T04:15:16.6263745Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-04-25T04:15:16.6264014Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-04-25T04:15:16.6264259Z CMAKE_GENERATOR=Ninja 2025-04-25T04:15:16.6264477Z CommandPromptType=Native 2025-04-25T04:15:16.6264751Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-04-25T04:15:16.6265076Z COMPUTERNAME=EC2AMAZ-DD9BHOF 2025-04-25T04:15:16.6265323Z COMSPEC=C:\Windows\system32\cmd.exe 2025-04-25T04:15:16.6265693Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:16.6266075Z CONDA_DEFAULT_ENV=base 2025-04-25T04:15:16.6266330Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-04-25T04:15:16.6266722Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:16.6267082Z CONDA_PARENT_DIR=C:\Jenkins 2025-04-25T04:15:16.6267384Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-04-25T04:15:16.6267685Z CONDA_PROMPT_MODIFIER=(base) 2025-04-25T04:15:16.6267970Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-04-25T04:15:16.6268414Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:16.6268808Z CONDA_SHLVL=1 2025-04-25T04:15:16.6269091Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-04-25T04:15:16.6269571Z CUDA_PATH_V11_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8 2025-04-25T04:15:16.6270061Z CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4 2025-04-25T04:15:16.6270683Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:15:16.6271172Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-04-25T04:15:16.6271537Z CUDA_VERSION=cpu 2025-04-25T04:15:16.6271782Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-04-25T04:15:16.6272159Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-04-25T04:15:16.6272564Z CommonProgramW6432=C:\Program Files\Common Files 2025-04-25T04:15:16.6272855Z DEBUG=0 2025-04-25T04:15:16.6273350Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\ 2025-04-25T04:15:16.6273833Z DISTUTILS_USE_SDK=1 2025-04-25T04:15:16.6274081Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-04-25T04:15:16.6274403Z EC2LAUNCH_TELEMETRY=1 2025-04-25T04:15:16.6274770Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-04-25T04:15:16.6275210Z Framework40Version=v4.0 2025-04-25T04:15:16.6275483Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-04-25T04:15:16.6275874Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-04-25T04:15:16.6276203Z FrameworkVersion=v4.0.30319 2025-04-25T04:15:16.6276453Z FrameworkVersion64=v4.0.30319 2025-04-25T04:15:16.6276699Z GITHUB_ACTION=build 2025-04-25T04:15:16.6276891Z GITHUB_ACTIONS=true 2025-04-25T04:15:16.6277087Z GITHUB_ACTION_REF= 2025-04-25T04:15:16.6277286Z GITHUB_ACTION_REPOSITORY= 2025-04-25T04:15:16.6277530Z GITHUB_ACTOR=pytorch-bot[bot] 2025-04-25T04:15:16.6277767Z GITHUB_ACTOR_ID=54816060 2025-04-25T04:15:16.6278023Z GITHUB_API_URL=https://api.github.com 2025-04-25T04:15:16.6278351Z GITHUB_BASE_REF= 2025-04-25T04:15:16.6278838Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_9d62f6b0-d336-4998-814c-1b7b766aeb9a 2025-04-25T04:15:16.6279392Z GITHUB_EVENT_NAME=push 2025-04-25T04:15:16.6279733Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-04-25T04:15:16.6280190Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-04-25T04:15:16.6280508Z GITHUB_HEAD_REF= 2025-04-25T04:15:16.6280706Z GITHUB_JOB=build 2025-04-25T04:15:16.6281153Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_9d62f6b0-d336-4998-814c-1b7b766aeb9a 2025-04-25T04:15:16.6281919Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_9d62f6b0-d336-4998-814c-1b7b766aeb9a 2025-04-25T04:15:16.6282453Z GITHUB_REF=refs/tags/ciflow/trunk/148893 2025-04-25T04:15:16.6282738Z GITHUB_REF_NAME=ciflow/trunk/148893 2025-04-25T04:15:16.6283006Z GITHUB_REF_PROTECTED=false 2025-04-25T04:15:16.6283238Z GITHUB_REF_TYPE=tag 2025-04-25T04:15:16.6283461Z GITHUB_REPOSITORY=pytorch/pytorch 2025-04-25T04:15:16.6283718Z GITHUB_REPOSITORY_ID=65600975 2025-04-25T04:15:16.6283975Z GITHUB_REPOSITORY_OWNER=pytorch 2025-04-25T04:15:16.6284222Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-04-25T04:15:16.6284485Z GITHUB_RETENTION_DAYS=90 2025-04-25T04:15:16.6284748Z GITHUB_RUN_ATTEMPT=1 2025-04-25T04:15:16.6284987Z GITHUB_RUN_ID=14656749847 2025-04-25T04:15:16.6285234Z GITHUB_RUN_NUMBER=124706 2025-04-25T04:15:16.6285489Z GITHUB_SERVER_URL=https://github.com 2025-04-25T04:15:16.6285800Z GITHUB_SHA=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:16.6286361Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_9d62f6b0-d336-4998-814c-1b7b766aeb9a 2025-04-25T04:15:16.6287170Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_9d62f6b0-d336-4998-814c-1b7b766aeb9a 2025-04-25T04:15:16.6287750Z GITHUB_TRIGGERING_ACTOR=pytorch-bot[bot] 2025-04-25T04:15:16.6288031Z GITHUB_WORKFLOW=trunk 2025-04-25T04:15:16.6288457Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/tags/ciflow/trunk/148893 2025-04-25T04:15:16.6289031Z GITHUB_WORKFLOW_SHA=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:16.6289461Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:15:16.6289791Z GIT_DEFAULT_BRANCH=main 2025-04-25T04:15:16.6290011Z HOME=C:\Users\runneruser 2025-04-25T04:15:16.6291918Z 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-04-25T04:15:16.6294026Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-04-25T04:15:16.6295334Z 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-04-25T04:15:16.6297628Z 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-04-25T04:15:16.6299074Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-04-25T04:15:16.6299373Z MAX_JOBS=8 2025-04-25T04:15:16.6299651Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-04-25T04:15:16.6300007Z NUMBER_OF_PROCESSORS=16 2025-04-25T04:15:16.6300219Z OS=Windows_NT 2025-04-25T04:15:16.6300416Z OUR_GITHUB_JOB_ID=41133079878 2025-04-25T04:15:16.6307496Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;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-04-25T04:15:16.6314917Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-04-25T04:15:16.6315244Z Platform=x64 2025-04-25T04:15:16.6315455Z PROCESSOR_ARCHITECTURE=AMD64 2025-04-25T04:15:16.6315825Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-04-25T04:15:16.6316870Z PROCESSOR_LEVEL=6 2025-04-25T04:15:16.6317102Z PROCESSOR_REVISION=5507 2025-04-25T04:15:16.6317334Z PROGRAMFILES=C:\Program Files 2025-04-25T04:15:16.6317592Z PROMPT=(base) $P$G 2025-04-25T04:15:16.6317783Z PR_NUMBER= 2025-04-25T04:15:16.6318306Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-04-25T04:15:16.6318841Z PUBLIC=C:\Users\Public 2025-04-25T04:15:16.6319392Z *** 2025-04-25T04:15:16.6319703Z PYTHON_VERSION=3.9 2025-04-25T04:15:16.6319987Z PYTORCH_FINAL_PACKAGE_DIR=C:/14656749847/build-results/ 2025-04-25T04:15:16.6320335Z ProgramData=C:\ProgramData 2025-04-25T04:15:16.6320587Z ProgramFiles(x86)=C:\Program Files (x86) 2025-04-25T04:15:16.6320874Z ProgramW6432=C:\Program Files 2025-04-25T04:15:16.6321101Z RUNNER_ARCH=X64 2025-04-25T04:15:16.6321311Z RUNNER_ENVIRONMENT=self-hosted 2025-04-25T04:15:16.6321560Z RUNNER_NAME=i-0533c757f4ff2fec3 2025-04-25T04:15:16.6321789Z RUNNER_OS=Windows 2025-04-25T04:15:16.6322014Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-04-25T04:15:16.6322337Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-04-25T04:15:16.6322710Z RUNNER_TRACKING_ID=github_71171691-2d6e-407f-af27-80da79af1605 2025-04-25T04:15:16.6323102Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-04-25T04:15:16.6323426Z SCCACHE_BUCKET=ossci-compiler-cache 2025-04-25T04:15:16.6323683Z SCCACHE_IDLE_TIMEOUT=0 2025-04-25T04:15:16.6323910Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-04-25T04:15:16.6324158Z SCCACHE_REGION=us-east-1 2025-04-25T04:15:16.6324392Z SCCACHE_S3_KEY_PREFIX=trunk 2025-04-25T04:15:16.6324806Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:15:16.6325392Z SHA1=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:16.6325685Z SHLVL=2 2025-04-25T04:15:16.6325939Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-04-25T04:15:16.6326268Z SYSTEMDRIVE=C: 2025-04-25T04:15:16.6326452Z SYSTEMROOT=C:\Windows 2025-04-25T04:15:16.6326697Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:16.6326972Z TERM=xterm-256color 2025-04-25T04:15:16.6327193Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:16.6327494Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:16.6327852Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:16.6328279Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-04-25T04:15:16.6328645Z TORCH_CUDA_ARCH_LIST=8.6 2025-04-25T04:15:16.6328857Z UCRTVersion=10.0.19041.0 2025-04-25T04:15:16.6329164Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-04-25T04:15:16.6329526Z UPDATEFILE=update.finished 2025-04-25T04:15:16.6329758Z USERDOMAIN=EC2AMAZ-DD9BHOF 2025-04-25T04:15:16.6329987Z USERNAME=runneruser 2025-04-25T04:15:16.6330203Z USERPROFILE=C:\Users\runneruser 2025-04-25T04:15:16.6330436Z USE_CUDA=0 2025-04-25T04:15:16.6330647Z USE_XPU=0 2025-04-25T04:15:16.6331081Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\ 2025-04-25T04:15:16.6331696Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\ 2025-04-25T04:15:16.6332354Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\ 2025-04-25T04:15:16.6333127Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.29.30133\ 2025-04-25T04:15:16.6333637Z VCToolsVersion=14.29.30133 2025-04-25T04:15:16.6333876Z VC_PRODUCT=BuildTools 2025-04-25T04:15:16.6334076Z VC_VERSION= 2025-04-25T04:15:16.6334250Z VC_YEAR=2019 2025-04-25T04:15:16.6334443Z VERBOSE_ARG='SilentlyContinue' 2025-04-25T04:15:16.6334704Z VisualStudioVersion=16.0 2025-04-25T04:15:16.6335115Z VS160COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\ 2025-04-25T04:15:16.6335583Z VSCMD_ARG_app_plat=Desktop 2025-04-25T04:15:16.6335813Z VSCMD_ARG_HOST_ARCH=x64 2025-04-25T04:15:16.6336213Z VSCMD_ARG_TGT_ARCH=x64 2025-04-25T04:15:16.6336441Z VSCMD_VER=16.11.44 2025-04-25T04:15:16.6336821Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\ 2025-04-25T04:15:16.6337227Z WINDIR=C:\Windows 2025-04-25T04:15:16.6337781Z 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-04-25T04:15:16.6338502Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-04-25T04:15:16.6339569Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-04-25T04:15:16.6339917Z WindowsSDKLibVersion=10.0.19041.0\ 2025-04-25T04:15:16.6340331Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-04-25T04:15:16.6340753Z WindowsSDKVersion=10.0.19041.0\ 2025-04-25T04:15:16.6341255Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-04-25T04:15:16.6342059Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-04-25T04:15:16.6342604Z XPU_VERSION= 2025-04-25T04:15:16.6342985Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-04-25T04:15:16.6343472Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-04-25T04:15:16.6343978Z __devinit_path=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit\devinit.exe 2025-04-25T04:15:16.6344483Z __DOTNET_ADD_64BIT=1 2025-04-25T04:15:16.6344711Z __DOTNET_PREFERRED_BITNESS=64 2025-04-25T04:15:16.6347939Z __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-04-25T04:15:16.6351115Z 2025-04-25T04:15:16.6351344Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-04-25T04:15:17.0221850Z Building wheel torch-2.8.0a0+gitb68c0ef 2025-04-25T04:15:17.2748165Z Cloning into 'nccl'... 2025-04-25T04:15:18.1153196Z Note: switching to 'v2.26.2-1'. 2025-04-25T04:15:18.1153427Z 2025-04-25T04:15:18.1153652Z You are in 'detached HEAD' state. You can look around, make experimental 2025-04-25T04:15:18.1154155Z changes and commit them, and you can discard any commits you make in this 2025-04-25T04:15:18.1154686Z state without impacting any branches by switching back to a branch. 2025-04-25T04:15:18.1154980Z 2025-04-25T04:15:18.1155170Z If you want to create a new branch to retain commits you create, you may 2025-04-25T04:15:18.1155631Z do so (now or later) by using -c with the switch command. Example: 2025-04-25T04:15:18.1155895Z 2025-04-25T04:15:18.1155993Z git switch -c 2025-04-25T04:15:18.1156185Z 2025-04-25T04:15:18.1156278Z Or undo this operation with: 2025-04-25T04:15:18.1156458Z 2025-04-25T04:15:18.1156547Z git switch - 2025-04-25T04:15:18.1156660Z 2025-04-25T04:15:18.1156878Z Turn off this advice by setting config variable advice.detachedHead to false 2025-04-25T04:15:18.1157207Z 2025-04-25T04:15:18.1157299Z HEAD is now at f44ac75 NCCL 2.26.2-1 2025-04-25T04:15:30.2199475Z -- The CXX compiler identification is MSVC 19.29.30158.0 2025-04-25T04:15:30.5472616Z -- The C compiler identification is MSVC 19.29.30158.0 2025-04-25T04:15:30.9186777Z -- Detecting CXX compiler ABI info 2025-04-25T04:15:37.8142019Z -- Detecting CXX compiler ABI info - done 2025-04-25T04:15:37.8167856Z -- 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-04-25T04:15:37.8186761Z -- Detecting CXX compile features 2025-04-25T04:15:37.8204097Z -- Detecting CXX compile features - done 2025-04-25T04:15:37.8298520Z -- Detecting C compiler ABI info 2025-04-25T04:15:38.1257570Z -- Detecting C compiler ABI info - done 2025-04-25T04:15:38.1282112Z -- 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-04-25T04:15:38.1285693Z -- Detecting C compile features 2025-04-25T04:15:38.1291675Z -- Detecting C compile features - done 2025-04-25T04:15:38.2167431Z -- Not forcing any particular BLAS to be found 2025-04-25T04:15:38.3230492Z CMake Warning at CMakeLists.txt:406 (message): 2025-04-25T04:15:38.3230930Z TensorPipe cannot be used on Windows. Set it to OFF 2025-04-25T04:15:38.3231180Z 2025-04-25T04:15:38.3231184Z 2025-04-25T04:15:38.3231308Z CMake Warning at CMakeLists.txt:408 (message): 2025-04-25T04:15:38.3231645Z KleidiAI cannot be used on Windows. Set it to OFF 2025-04-25T04:15:38.3231885Z 2025-04-25T04:15:38.3231889Z 2025-04-25T04:15:38.3330469Z -- Performing Test C_HAS_AVX_1 2025-04-25T04:15:39.4778754Z -- Performing Test C_HAS_AVX_1 - Success 2025-04-25T04:15:39.4784096Z -- Performing Test C_HAS_AVX2_1 2025-04-25T04:15:39.8334003Z -- Performing Test C_HAS_AVX2_1 - Success 2025-04-25T04:15:39.8341325Z -- Performing Test C_HAS_AVX512_1 2025-04-25T04:15:40.2068162Z -- Performing Test C_HAS_AVX512_1 - Success 2025-04-25T04:15:40.2076350Z -- Performing Test CXX_HAS_AVX_1 2025-04-25T04:15:40.5544625Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-04-25T04:15:40.5550456Z -- Performing Test CXX_HAS_AVX2_1 2025-04-25T04:15:40.9029789Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-04-25T04:15:40.9035435Z -- Performing Test CXX_HAS_AVX512_1 2025-04-25T04:15:41.2508147Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-04-25T04:15:41.2510539Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-04-25T04:15:41.2515114Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-04-25T04:15:41.8794906Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-04-25T04:15:41.8797267Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-04-25T04:15:41.8811422Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-04-25T04:15:42.1899380Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-04-25T04:15:42.1913510Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-04-25T04:15:42.4711893Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-04-25T04:15:42.4724900Z -- Could not find hardware support for NEON on this machine. 2025-04-25T04:15:42.4725310Z -- No OMAP3 processor on this machine. 2025-04-25T04:15:42.4725600Z -- No OMAP4 processor on this machine. 2025-04-25T04:15:42.4725977Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-04-25T04:15:42.5996028Z -- Performing Test HAS/UTF_8 2025-04-25T04:15:42.8838375Z -- Performing Test HAS/UTF_8 - Success 2025-04-25T04:15:42.8865601Z -- Building using own protobuf under third_party per request. 2025-04-25T04:15:42.8866033Z -- Use custom protobuf build. 2025-04-25T04:15:42.8893583Z -- 2025-04-25T04:15:42.8893761Z -- 3.13.0.0 2025-04-25T04:15:42.8969809Z -- Looking for pthread.h 2025-04-25T04:15:42.9824263Z -- Looking for pthread.h - not found 2025-04-25T04:15:42.9863006Z -- Found Threads: TRUE 2025-04-25T04:15:43.0493193Z -- Caffe2 protobuf include directory: $$ 2025-04-25T04:15:43.0515319Z -- Trying to find preferred BLAS backend of choice: MKL 2025-04-25T04:15:43.0598787Z -- MKL_THREADING = OMP 2025-04-25T04:15:43.0610350Z -- Looking for sys/types.h 2025-04-25T04:15:43.3463628Z -- Looking for sys/types.h - found 2025-04-25T04:15:43.3473419Z -- Looking for stdint.h 2025-04-25T04:15:43.6247677Z -- Looking for stdint.h - found 2025-04-25T04:15:43.6257386Z -- Looking for stddef.h 2025-04-25T04:15:43.9189193Z -- Looking for stddef.h - found 2025-04-25T04:15:43.9191028Z -- Check size of void* 2025-04-25T04:15:44.2404154Z -- Check size of void* - done 2025-04-25T04:15:44.2991765Z -- Looking for cblas_sgemm 2025-04-25T04:15:44.6068314Z -- Looking for cblas_sgemm - found 2025-04-25T04:15:44.6072694Z -- Looking for cblas_gemm_bf16bf16f32 2025-04-25T04:15:44.9018876Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-04-25T04:15:44.9020630Z -- Looking for cblas_gemm_f16f16f32 2025-04-25T04:15:45.1855488Z -- Looking for cblas_gemm_f16f16f32 - not found 2025-04-25T04:15:45.2385719Z -- 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-04-25T04:15:45.2386669Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-04-25T04:15:45.2387033Z -- MKL OpenMP type: 2025-04-25T04:15:45.2387264Z -- MKL OpenMP library: 2025-04-25T04:15:45.4008782Z -- The ASM compiler identification is MSVC 2025-04-25T04:15:45.4021931Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-04-25T04:15:45.4275614Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-04-25T04:15:45.4301404Z -- Generating microkernels.cmake 2025-04-25T04:15:50.0026124Z 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-04-25T04:15:50.0027495Z 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-04-25T04:15:50.0028338Z No microkernel found in src\reference\binary-elementwise.cc 2025-04-25T04:15:50.0028732Z No microkernel found in src\reference\packing.cc 2025-04-25T04:15:50.0029125Z No microkernel found in src\reference\unary-elementwise.cc 2025-04-25T04:15:50.2676920Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.47.1.windows.2") 2025-04-25T04:15:50.3607836Z -- git version: v1.6.1 normalized to 1.6.1 2025-04-25T04:15:50.3608237Z -- Version: 1.6.1 2025-04-25T04:15:50.3623392Z -- Looking for shm_open in rt 2025-04-25T04:15:50.5165401Z -- Looking for shm_open in rt - not found 2025-04-25T04:15:50.5167946Z -- Performing Test HAVE_STD_REGEX 2025-04-25T04:15:50.5168224Z -- Performing Test HAVE_STD_REGEX 2025-04-25T04:15:54.2051583Z -- Performing Test HAVE_STD_REGEX -- success 2025-04-25T04:15:54.2051959Z -- Performing Test HAVE_GNU_POSIX_REGEX 2025-04-25T04:15:54.2052261Z -- Performing Test HAVE_GNU_POSIX_REGEX 2025-04-25T04:15:54.3027025Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-04-25T04:15:54.3027454Z -- Performing Test HAVE_POSIX_REGEX 2025-04-25T04:15:54.3027776Z -- Performing Test HAVE_POSIX_REGEX 2025-04-25T04:15:54.3850354Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-04-25T04:15:54.3850768Z -- Performing Test HAVE_STEADY_CLOCK 2025-04-25T04:15:54.3851055Z -- Performing Test HAVE_STEADY_CLOCK 2025-04-25T04:15:54.9805255Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-04-25T04:15:55.0673859Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-04-25T04:15:55.0688515Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-04-25T04:15:55.3479484Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-04-25T04:15:56.3038835Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:15:56.3040009Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-04-25T04:15:56.3040542Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:15:56.3041059Z problems in calling code that expects `find_package` result variables 2025-04-25T04:15:56.3041478Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:15:56.3041807Z Call Stack (most recent call first): 2025-04-25T04:15:56.3042215Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:15:56.3042824Z third_party/fbgemm/CMakeLists.txt:136 (find_package) 2025-04-25T04:15:56.3043281Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:15:56.3043587Z 2025-04-25T04:15:56.3043713Z -- Found OpenMP_C: -openmp:experimental 2025-04-25T04:15:56.6332106Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:15:56.6332986Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-04-25T04:15:56.6333528Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:15:56.6334035Z problems in calling code that expects `find_package` result variables 2025-04-25T04:15:56.6334462Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:15:56.6334770Z Call Stack (most recent call first): 2025-04-25T04:15:56.6335189Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:15:56.6335669Z third_party/fbgemm/CMakeLists.txt:136 (find_package) 2025-04-25T04:15:56.6336121Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:15:56.6336422Z 2025-04-25T04:15:56.6336562Z -- Found OpenMP_CXX: -openmp:experimental 2025-04-25T04:15:56.6336865Z -- Found OpenMP: TRUE 2025-04-25T04:15:56.6338311Z CMake Warning at third_party/fbgemm/CMakeLists.txt:138 (message): 2025-04-25T04:15:56.6338718Z OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-04-25T04:15:56.6338929Z 2025-04-25T04:15:56.6338941Z 2025-04-25T04:15:56.8685793Z CMake Warning at third_party/fbgemm/CMakeLists.txt:232 (message): 2025-04-25T04:15:56.8686218Z ========== 2025-04-25T04:15:56.8686335Z 2025-04-25T04:15:56.8686342Z 2025-04-25T04:15:56.8686525Z CMake Warning at third_party/fbgemm/CMakeLists.txt:233 (message): 2025-04-25T04:15:56.8686913Z CMAKE_BUILD_TYPE = Release 2025-04-25T04:15:56.8687076Z 2025-04-25T04:15:56.8687079Z 2025-04-25T04:15:56.8687270Z CMake Warning at third_party/fbgemm/CMakeLists.txt:234 (message): 2025-04-25T04:15:56.8687706Z CMAKE_CXX_FLAGS_DEBUG is /Z7 /Ob0 /Od /RTC1 /bigobj 2025-04-25T04:15:56.8687982Z 2025-04-25T04:15:56.8687986Z 2025-04-25T04:15:56.8688183Z CMake Warning at third_party/fbgemm/CMakeLists.txt:235 (message): 2025-04-25T04:15:56.8688632Z CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-04-25T04:15:56.8688882Z 2025-04-25T04:15:56.8688889Z 2025-04-25T04:15:56.8689071Z CMake Warning at third_party/fbgemm/CMakeLists.txt:236 (message): 2025-04-25T04:15:56.8689447Z ========== 2025-04-25T04:15:56.8689555Z 2025-04-25T04:15:56.8689559Z 2025-04-25T04:15:56.9116000Z ** AsmJit Summary ** 2025-04-25T04:15:56.9116516Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit 2025-04-25T04:15:56.9116993Z ASMJIT_TEST=FALSE 2025-04-25T04:15:56.9117235Z ASMJIT_TARGET_TYPE=SHARED 2025-04-25T04:15:56.9117471Z ASMJIT_DEPS= 2025-04-25T04:15:56.9117684Z ASMJIT_LIBS=asmjit 2025-04-25T04:15:56.9117919Z ASMJIT_CFLAGS= 2025-04-25T04:15:56.9118349Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-04-25T04:15:56.9118866Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-04-25T04:15:56.9119143Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-04-25T04:15:56.9242851Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-04-25T04:15:56.9884711Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-04-25T04:15:56.9899567Z -- Performing Test HAS_WNO_UNINITIALIZED 2025-04-25T04:15:57.0533467Z -- Performing Test HAS_WNO_UNINITIALIZED - Failed 2025-04-25T04:15:57.0683268Z -- Using third party subdirectory Eigen. 2025-04-25T04:15:59.6894470Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-04-25T04:15:59.6895182Z -- Using third_party/pybind11. 2025-04-25T04:15:59.6896903Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-04-25T04:15:59.6934491Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-04-25T04:15:59.6934973Z -- Using third_party/opentelemetry-cpp. 2025-04-25T04:15:59.6935700Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-04-25T04:16:00.6898746Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-04-25T04:16:01.4235581Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-04-25T04:16:01.4239820Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-04-25T04:16:01.4243564Z CMake Warning at cmake/Dependencies.cmake:967 (message): 2025-04-25T04:16:01.4244066Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-04-25T04:16:01.4244461Z Call Stack (most recent call first): 2025-04-25T04:16:01.4244757Z CMakeLists.txt:856 (include) 2025-04-25T04:16:01.4244949Z 2025-04-25T04:16:01.4244953Z 2025-04-25T04:16:01.4287139Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-04-25T04:16:01.4293483Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-04-25T04:16:01.4315522Z -- MSVC detected 2025-04-25T04:16:01.4315758Z -- Set USE_REDIS OFF 2025-04-25T04:16:01.4315992Z -- Set USE_IBVERBS OFF 2025-04-25T04:16:01.4316245Z -- Set USE_NCCL OFF 2025-04-25T04:16:01.4316460Z -- Set USE_RCCL OFF 2025-04-25T04:16:01.4316724Z -- Set USE_LIBUV OFF 2025-04-25T04:16:01.4337973Z -- Gloo build as SHARED library 2025-04-25T04:16:01.4955850Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-04-25T04:16:01.4964038Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-04-25T04:16:01.4972215Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-04-25T04:16:02.2718244Z -- 2025-04-25T04:16:02.2718543Z -- ******** Summary ******** 2025-04-25T04:16:02.2718850Z -- CMake version : 3.22.1 2025-04-25T04:16:02.2719268Z -- CMake command : C:/Jenkins/Miniconda3/Library/bin/cmake.exe 2025-04-25T04:16:02.2719668Z -- System : Windows 2025-04-25T04:16:02.2720312Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-04-25T04:16:02.2720992Z -- C++ compiler version : 19.29.30158.0 2025-04-25T04:16:02.2721537Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-04-25T04:16:02.2722078Z -- Build type : Release 2025-04-25T04:16:02.2722500Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS 2025-04-25T04:16:02.2723036Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-04-25T04:16:02.2723584Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-04-25T04:16:02.2724125Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules 2025-04-25T04:16:02.2724539Z -- 2025-04-25T04:16:02.2724734Z -- ONNX version : 1.17.0 2025-04-25T04:16:02.2725067Z -- ONNX NAMESPACE : onnx_torch 2025-04-25T04:16:02.2725596Z -- ONNX_USE_LITE_PROTO : OFF 2025-04-25T04:16:02.2725920Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-04-25T04:16:02.2726214Z -- Protobuf_USE_STATIC_LIBS : ON 2025-04-25T04:16:02.2726523Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-04-25T04:16:02.2726839Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-04-25T04:16:02.2727128Z -- ONNX_WERROR : OFF 2025-04-25T04:16:02.2727412Z -- ONNX_BUILD_TESTS : OFF 2025-04-25T04:16:02.2727813Z -- ONNX_BUILD_SHARED_LIBS : 2025-04-25T04:16:02.2728107Z -- BUILD_SHARED_LIBS : OFF 2025-04-25T04:16:02.2728365Z -- 2025-04-25T04:16:02.2728568Z -- Protobuf compiler : 2025-04-25T04:16:02.2728848Z -- Protobuf includes : 2025-04-25T04:16:02.2729141Z -- Protobuf libraries : 2025-04-25T04:16:02.2729438Z -- BUILD_ONNX_PYTHON : OFF 2025-04-25T04:16:02.2729822Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-04-25T04:16:02.2730229Z -- Adding -DNDEBUG to compile flags 2025-04-25T04:16:02.2730573Z CMake Warning at cmake/Dependencies.cmake:1457 (message): 2025-04-25T04:16:02.2731046Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-04-25T04:16:02.2731444Z Call Stack (most recent call first): 2025-04-25T04:16:02.2731729Z CMakeLists.txt:856 (include) 2025-04-25T04:16:02.2743061Z 2025-04-25T04:16:02.2743085Z 2025-04-25T04:16:02.2743265Z -- Could not find hardware support for NEON on this machine. 2025-04-25T04:16:02.2743646Z -- No OMAP3 processor on this machine. 2025-04-25T04:16:02.2743929Z -- No OMAP4 processor on this machine. 2025-04-25T04:16:02.2745644Z -- Looking for sbgemm_ 2025-04-25T04:16:02.5754621Z -- Looking for sbgemm_ - not found 2025-04-25T04:16:02.5772691Z -- Found a library with LAPACK API (mkl). 2025-04-25T04:16:02.5773776Z disabling CUDA because NOT USE_CUDA is set 2025-04-25T04:16:02.5774153Z -- MIOpen not found. Compiling without MIOpen support 2025-04-25T04:16:02.5774493Z disabling ROCM because NOT USE_ROCM is set 2025-04-25T04:16:02.5782972Z -- Will build oneDNN UKERNEL 2025-04-25T04:16:02.5857853Z -- MKLDNN_CPU_RUNTIME = OMP 2025-04-25T04:16:02.5875280Z -- DNNL_TARGET_ARCH: X64 2025-04-25T04:16:02.5899501Z -- DNNL_LIBRARY_NAME: dnnl 2025-04-25T04:16:02.5993616Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:16:02.5994462Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-04-25T04:16:02.5995014Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:16:02.5995535Z problems in calling code that expects `find_package` result variables 2025-04-25T04:16:02.5995947Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:16:02.5996284Z Call Stack (most recent call first): 2025-04-25T04:16:02.5996691Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:16:02.5997186Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-04-25T04:16:02.5997606Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-04-25T04:16:02.5998031Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:16:02.5998338Z 2025-04-25T04:16:02.5998800Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:16:02.5999572Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-04-25T04:16:02.6000080Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:16:02.6000670Z problems in calling code that expects `find_package` result variables 2025-04-25T04:16:02.6001073Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:16:02.6001379Z Call Stack (most recent call first): 2025-04-25T04:16:02.6001991Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:16:02.6002486Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-04-25T04:16:02.6002917Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-04-25T04:16:02.6003343Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:16:02.6003643Z 2025-04-25T04:16:02.6439922Z -- Enabled testing coverage: CI 2025-04-25T04:16:02.6456712Z -- Enabled workload: TRAINING 2025-04-25T04:16:02.6457166Z -- Enabled primitives: ALL 2025-04-25T04:16:02.6457417Z -- Enabled primitive CPU ISA: ALL 2025-04-25T04:16:02.6457683Z -- Enabled primitive GPU ISA: ALL 2025-04-25T04:16:02.6457942Z -- Enabled GeMM kernels ISA: ALL 2025-04-25T04:16:02.6561975Z -- Primitive cache is enabled 2025-04-25T04:16:02.6562305Z -- Experimental functionality for ukernels is enabled 2025-04-25T04:16:02.7201019Z -- The ASM_MASM compiler identification is MSVC 2025-04-25T04:16:02.8447771Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/ml64.exe 2025-04-25T04:16:03.0091165Z -- Graph component is enabled 2025-04-25T04:16:03.0246708Z -- Graph compiler backend is disabled. 2025-04-25T04:16:03.0412194Z -- Found MKL-DNN: TRUE 2025-04-25T04:16:03.0523153Z -- {fmt} version: 11.1.4 2025-04-25T04:16:03.0523430Z -- Build type: Release 2025-04-25T04:16:03.0605298Z -- Using CPU-only version of Kineto 2025-04-25T04:16:03.0605715Z -- Configuring Kineto dependency: 2025-04-25T04:16:03.0606181Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-04-25T04:16:03.0606658Z -- KINETO_BUILD_TESTS = OFF 2025-04-25T04:16:03.0606905Z -- KINETO_LIBRARY_TYPE = static 2025-04-25T04:16:03.1062790Z INFO CUDA_SOURCE_DIR = 2025-04-25T04:16:03.1063063Z INFO ROCM_SOURCE_DIR = 2025-04-25T04:16:03.1459445Z INFO CUPTI unavailable or disabled - not building GPU profilers 2025-04-25T04:16:03.2337865Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-04-25T04:16:03.2338361Z INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-04-25T04:16:03.2338709Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-04-25T04:16:03.2339291Z INFO DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-04-25T04:16:03.2340250Z INFO IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-04-25T04:16:03.2341121Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-04-25T04:16:03.2365610Z -- Configured Kineto (CPU) 2025-04-25T04:16:03.2401586Z -- Performing Test HAS/WD4624 2025-04-25T04:16:03.5310476Z -- Performing Test HAS/WD4624 - Success 2025-04-25T04:16:03.5325247Z -- Performing Test HAS/WD4068 2025-04-25T04:16:03.8129659Z -- Performing Test HAS/WD4068 - Success 2025-04-25T04:16:03.8148691Z -- Performing Test HAS/WD4067 2025-04-25T04:16:04.1235071Z -- Performing Test HAS/WD4067 - Success 2025-04-25T04:16:04.1249550Z -- Performing Test HAS/WD4267 2025-04-25T04:16:04.4102017Z -- Performing Test HAS/WD4267 - Success 2025-04-25T04:16:04.4119503Z -- Performing Test HAS/WD4661 2025-04-25T04:16:04.6947333Z -- Performing Test HAS/WD4661 - Success 2025-04-25T04:16:04.6961434Z -- Performing Test HAS/WD4717 2025-04-25T04:16:04.9889499Z -- Performing Test HAS/WD4717 - Success 2025-04-25T04:16:04.9906161Z -- Performing Test HAS/WD4244 2025-04-25T04:16:05.2766702Z -- Performing Test HAS/WD4244 - Success 2025-04-25T04:16:05.2781019Z -- Performing Test HAS/WD4804 2025-04-25T04:16:05.5612953Z -- Performing Test HAS/WD4804 - Success 2025-04-25T04:16:05.5630301Z -- Performing Test HAS/WD4273 2025-04-25T04:16:05.8495210Z -- Performing Test HAS/WD4273 - Success 2025-04-25T04:16:05.8514503Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-04-25T04:16:05.9190988Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-04-25T04:16:06.0144090Z -- 2025-04-25T04:16:06.0144413Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-04-25T04:16:06.0146551Z -- 2025-04-25T04:16:06.0146746Z -- Library base name: mimalloc 2025-04-25T04:16:06.0146998Z -- Version : 1.8 2025-04-25T04:16:06.0147227Z -- Build type : release 2025-04-25T04:16:06.0147808Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-04-25T04:16:06.0148580Z -- Compiler flags : /Zc:__cplusplus 2025-04-25T04:16:06.0148846Z -- Compiler defines : 2025-04-25T04:16:06.0149141Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-04-25T04:16:06.0149476Z -- Build targets : static 2025-04-25T04:16:06.0149691Z -- 2025-04-25T04:16:06.0251782Z -- don't use NUMA 2025-04-25T04:16:06.2277913Z -- Looking for backtrace 2025-04-25T04:16:06.3128967Z -- Looking for backtrace - not found 2025-04-25T04:16:06.3206850Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-04-25T04:16:10.4339710Z -- headers outputs: 2025-04-25T04:16:13.5296457Z -- sources outputs: 2025-04-25T04:16:15.1373379Z -- declarations_yaml outputs: 2025-04-25T04:16:15.1483989Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-04-25T04:16:20.4632260Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-04-25T04:16:20.7256664Z -- Using ATen parallel backend: OMP 2025-04-25T04:16:20.7270327Z disabling CUDA because USE_CUDA is set false 2025-04-25T04:16:21.1185098Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.15") 2025-04-25T04:16:21.3219880Z -- Check size of long double 2025-04-25T04:16:21.6510161Z -- Check size of long double - done 2025-04-25T04:16:21.6517333Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-04-25T04:16:21.7617845Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-04-25T04:16:21.7623662Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-04-25T04:16:22.1316303Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-04-25T04:16:22.1321033Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-04-25T04:16:22.4949782Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-04-25T04:16:22.4954274Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-04-25T04:16:22.8566321Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-04-25T04:16:22.8570629Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-04-25T04:16:23.2276290Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-04-25T04:16:23.2282052Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-04-25T04:16:23.5901786Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-04-25T04:16:23.5906577Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-04-25T04:16:23.9492763Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-04-25T04:16:23.9549101Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-04-25T04:16:23.9553332Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-04-25T04:16:23.9557317Z -- Found OpenMP: TRUE (found version "2.0") 2025-04-25T04:16:23.9561646Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-04-25T04:16:24.3121278Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-04-25T04:16:24.3125500Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-04-25T04:16:24.4151677Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-04-25T04:16:24.4156151Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-04-25T04:16:24.5172445Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-04-25T04:16:24.5177756Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-04-25T04:16:24.6967646Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-04-25T04:16:24.6971925Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-04-25T04:16:24.7768122Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-04-25T04:16:24.9635944Z Target system: Windows-10.0.17763 2025-04-25T04:16:24.9636307Z -- Configuring build for SLEEF-v3.7.0 2025-04-25T04:16:24.9636828Z Target processor: AMD64 2025-04-25T04:16:24.9637095Z Host system: Windows-10.0.17763 2025-04-25T04:16:24.9637361Z Host processor: AMD64 2025-04-25T04:16:24.9637973Z 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-04-25T04:16:24.9638610Z CMake: 3.22.1 2025-04-25T04:16:24.9638882Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-04-25T04:16:24.9639537Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-04-25T04:16:24.9640034Z -- Building shared libs : OFF 2025-04-25T04:16:24.9640328Z -- Building static test bins: OFF 2025-04-25T04:16:24.9640618Z -- MPFR : LIB_MPFR-NOTFOUND 2025-04-25T04:16:24.9640915Z -- GMP : LIBGMP-NOTFOUND 2025-04-25T04:16:24.9641155Z -- RT : 2025-04-25T04:16:24.9641359Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-04-25T04:16:24.9641629Z -- OPENSSL : 3.0.15 2025-04-25T04:16:24.9641900Z -- SDE : SDE_COMMAND-NOTFOUND 2025-04-25T04:16:24.9642198Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-04-25T04:16:25.0030949Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-04-25T04:16:25.0031531Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-04-25T04:16:25.0032338Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-04-25T04:16:25.0033120Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-04-25T04:16:25.6004186Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD 2025-04-25T04:16:25.6668575Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD - Failed 2025-04-25T04:16:25.6674203Z -- Generating sources for unboxing kernels C:\Jenkins\Miniconda3\python.exe;-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-04-25T04:16:25.8257374Z CMake Warning at CMakeLists.txt:1263 (message): 2025-04-25T04:16:25.8257921Z Generated cmake files are only fully tested if one builds with system glog, 2025-04-25T04:16:25.8258467Z gflags, and protobuf. Other settings may generate files that are not well 2025-04-25T04:16:25.8258872Z tested. 2025-04-25T04:16:25.8258978Z 2025-04-25T04:16:25.8258982Z 2025-04-25T04:16:25.8285924Z -- 2025-04-25T04:16:25.8286146Z -- ******** Summary ******** 2025-04-25T04:16:25.8286389Z -- General: 2025-04-25T04:16:25.8286616Z -- CMake version : 3.22.1 2025-04-25T04:16:25.8286990Z -- CMake command : C:/Jenkins/Miniconda3/Library/bin/cmake.exe 2025-04-25T04:16:25.8287359Z -- System : Windows 2025-04-25T04:16:25.8287977Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-04-25T04:16:25.8288589Z -- C++ compiler id : MSVC 2025-04-25T04:16:25.8288877Z -- C++ compiler version : 19.29.30158.0 2025-04-25T04:16:25.8289215Z -- Using ccache if found : OFF 2025-04-25T04:16:25.8290518Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_FBGEMM -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-04-25T04:16:25.8291888Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:16:25.8292556Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:16:25.8293034Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:16:25.8293410Z -- Build type : Release 2025-04-25T04:16:25.8294470Z -- 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-04-25T04:16:25.8295842Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-04-25T04:16:25.8296325Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-04-25T04:16:25.8296737Z -- USE_GOLD_LINKER : OFF 2025-04-25T04:16:25.8296976Z -- 2025-04-25T04:16:25.8297178Z -- TORCH_VERSION : 2.8.0 2025-04-25T04:16:25.8297464Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-04-25T04:16:25.8297771Z -- BUILD_BINARY : OFF 2025-04-25T04:16:25.8298045Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-04-25T04:16:25.8298295Z -- Link local protobuf : ON 2025-04-25T04:16:25.8298559Z -- BUILD_PYTHON : True 2025-04-25T04:16:25.8298826Z -- Python version : 3.9.19 2025-04-25T04:16:25.8299151Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-04-25T04:16:25.8299596Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-04-25T04:16:25.8300015Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-04-25T04:16:25.8300445Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-04-25T04:16:25.8300861Z -- BUILD_SHARED_LIBS : ON 2025-04-25T04:16:25.8301182Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-04-25T04:16:25.8301477Z -- BUILD_TEST : True 2025-04-25T04:16:25.8301738Z -- BUILD_JNI : OFF 2025-04-25T04:16:25.8302001Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-04-25T04:16:25.8302262Z -- BUILD_LITE_INTERPRETER: OFF 2025-04-25T04:16:25.8302538Z -- INTERN_BUILD_MOBILE : 2025-04-25T04:16:25.8302787Z -- TRACING_BASED : OFF 2025-04-25T04:16:25.8303045Z -- USE_BLAS : 1 2025-04-25T04:16:25.8303280Z -- BLAS : mkl 2025-04-25T04:16:25.8303542Z -- BLAS_HAS_SBGEMM : 2025-04-25T04:16:25.8303780Z -- USE_LAPACK : 1 2025-04-25T04:16:25.8304031Z -- LAPACK : mkl 2025-04-25T04:16:25.8304276Z -- USE_ASAN : OFF 2025-04-25T04:16:25.8304521Z -- USE_TSAN : OFF 2025-04-25T04:16:25.8304774Z -- USE_CPP_CODE_COVERAGE : OFF 2025-04-25T04:16:25.8305016Z -- USE_CUDA : 0 2025-04-25T04:16:25.8305256Z -- USE_XPU : 0 2025-04-25T04:16:25.8305485Z -- USE_ROCM : OFF 2025-04-25T04:16:25.8305741Z -- BUILD_NVFUSER : 2025-04-25T04:16:25.8305982Z -- USE_EIGEN_FOR_BLAS : 2025-04-25T04:16:25.8306240Z -- USE_FBGEMM : ON 2025-04-25T04:16:25.8306529Z -- USE_FAKELOWP : OFF 2025-04-25T04:16:25.8306831Z -- USE_KINETO : ON 2025-04-25T04:16:25.8307069Z -- USE_GFLAGS : OFF 2025-04-25T04:16:25.8307317Z -- USE_GLOG : OFF 2025-04-25T04:16:25.8307576Z -- USE_LITE_PROTO : OFF 2025-04-25T04:16:25.8307819Z -- USE_PYTORCH_METAL : OFF 2025-04-25T04:16:25.8308088Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-04-25T04:16:25.8308366Z -- USE_MPS : OFF 2025-04-25T04:16:25.8308627Z -- CAN_COMPILE_METAL : 2025-04-25T04:16:25.8308872Z -- USE_MKL : ON 2025-04-25T04:16:25.8309119Z -- USE_STATIC_MKL : OFF 2025-04-25T04:16:25.8309366Z -- USE_MKLDNN : ON 2025-04-25T04:16:25.8309621Z -- USE_MKLDNN_ACL : OFF 2025-04-25T04:16:25.8309867Z -- USE_MKLDNN_CBLAS : OFF 2025-04-25T04:16:25.8310119Z -- USE_UCC : OFF 2025-04-25T04:16:25.8310519Z -- USE_ITT : ON 2025-04-25T04:16:25.8310758Z -- USE_NCCL : OFF 2025-04-25T04:16:25.8311020Z -- USE_NNPACK : OFF 2025-04-25T04:16:25.8311272Z -- USE_NUMPY : ON 2025-04-25T04:16:25.8311528Z -- USE_OBSERVERS : ON 2025-04-25T04:16:25.8311774Z -- USE_OPENCL : OFF 2025-04-25T04:16:25.8312035Z -- USE_OPENMP : ON 2025-04-25T04:16:25.8312314Z -- USE_MIMALLOC : ON 2025-04-25T04:16:25.8312707Z -- USE_MIMALLOC_ON_MKL : OFF 2025-04-25T04:16:25.8312963Z -- USE_VULKAN : OFF 2025-04-25T04:16:25.8313228Z -- USE_PROF : OFF 2025-04-25T04:16:25.8313491Z -- USE_PYTORCH_QNNPACK : OFF 2025-04-25T04:16:25.8313738Z -- USE_XNNPACK : ON 2025-04-25T04:16:25.8314003Z -- USE_DISTRIBUTED : ON 2025-04-25T04:16:25.8314244Z -- USE_MPI : OFF 2025-04-25T04:16:25.8314505Z -- USE_GLOO : ON 2025-04-25T04:16:25.8314756Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-04-25T04:16:25.8315089Z -- USE_TENSORPIPE : OFF 2025-04-25T04:16:25.8320308Z -- Public Dependencies : caffe2::mkl 2025-04-25T04:16:25.8321150Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-04-25T04:16:25.8321919Z -- Public CUDA Deps. : 2025-04-25T04:16:25.8322181Z -- Private CUDA Deps. : 2025-04-25T04:16:25.8322471Z -- USE_COREML_DELEGATE : OFF 2025-04-25T04:16:25.8322738Z -- BUILD_LAZY_TS_BACKEND : ON 2025-04-25T04:16:25.8323010Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-04-25T04:16:25.8377223Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-04-25T04:16:25.9082308Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-04-25T04:16:25.9097972Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-04-25T04:16:25.9754846Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-04-25T04:16:25.9814289Z -- Configuring done 2025-04-25T04:16:35.7195130Z -- Generating done 2025-04-25T04:16:35.9432739Z CMake Warning: 2025-04-25T04:16:35.9433190Z Manually-specified variables were not used by the project: 2025-04-25T04:16:35.9433498Z 2025-04-25T04:16:35.9433606Z BUILD_ENVIRONMENT 2025-04-25T04:16:35.9433819Z BUILD_TYPE 2025-04-25T04:16:35.9434018Z BUILD_WHEEL 2025-04-25T04:16:35.9434135Z 2025-04-25T04:16:35.9434140Z 2025-04-25T04:16:35.9465256Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-04-25T04:16:42.0479579Z [1/4] Generating ATen declarations_yaml 2025-04-25T04:16:48.9664775Z [2/4] Generating ATen headers 2025-04-25T04:16:49.5131591Z [3/4] Generating ATen sources 2025-04-25T04:16:55.2708858Z [1/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-04-25T04:16:55.2732268Z [2/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-04-25T04:16:55.2809974Z [3/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-04-25T04:16:55.2824328Z [4/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-04-25T04:16:55.2839040Z [5/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-04-25T04:16:55.2908271Z [6/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-04-25T04:16:55.3165902Z [7/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-04-25T04:16:55.3355592Z [8/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-04-25T04:16:55.5141317Z [9/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-04-25T04:16:55.5782850Z [10/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-04-25T04:16:55.5797753Z [11/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-04-25T04:16:55.6098397Z [12/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-04-25T04:16:55.6112356Z [13/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-04-25T04:16:55.6128626Z [14/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-04-25T04:16:55.6524548Z [15/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-04-25T04:16:55.7339766Z [16/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-04-25T04:16:55.8177997Z [17/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-04-25T04:16:55.8458342Z [18/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-04-25T04:16:55.8619272Z [19/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-04-25T04:16:55.8663365Z [20/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-04-25T04:16:55.8729113Z [21/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-04-25T04:16:55.9457821Z [22/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-04-25T04:16:56.0440086Z [23/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-04-25T04:16:56.0839957Z [24/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-04-25T04:16:56.1391369Z [25/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-04-25T04:16:56.1480888Z [26/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-04-25T04:16:56.1556962Z [27/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-04-25T04:16:56.2385713Z [28/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-04-25T04:16:56.3751360Z [29/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-04-25T04:16:56.4930126Z [30/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-04-25T04:16:56.5354602Z [31/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-04-25T04:16:56.5453998Z [32/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-04-25T04:16:56.5556322Z [33/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-04-25T04:16:56.5983582Z [34/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-04-25T04:16:56.6632986Z [35/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-04-25T04:16:56.7749894Z [36/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-04-25T04:16:56.7891697Z [37/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-04-25T04:16:56.7920358Z [38/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-04-25T04:16:56.8000625Z [39/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-04-25T04:16:56.8695983Z [40/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-04-25T04:16:56.8773247Z [41/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-04-25T04:16:56.9035693Z [42/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-04-25T04:16:56.9578867Z [43/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-04-25T04:16:57.0247085Z [44/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-04-25T04:16:57.0407859Z [45/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-04-25T04:16:57.1243699Z [46/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-04-25T04:16:57.1720941Z [47/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-04-25T04:16:57.1846004Z [48/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-04-25T04:16:57.2107148Z [49/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-04-25T04:16:57.2531340Z [50/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-04-25T04:16:57.2898357Z [51/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-04-25T04:16:57.3800748Z [52/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-04-25T04:16:57.4553348Z [53/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-04-25T04:16:57.4635252Z [54/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-04-25T04:16:57.4683795Z [55/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-04-25T04:16:57.4772539Z [56/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-04-25T04:16:57.5409710Z [57/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-04-25T04:16:57.5542891Z [58/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-04-25T04:16:57.6114127Z [59/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-04-25T04:16:57.7194084Z [60/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-04-25T04:16:57.7252319Z [61/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-04-25T04:16:57.8057171Z [62/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-04-25T04:16:57.8210335Z [63/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-04-25T04:16:57.8315691Z [64/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-04-25T04:16:57.8786062Z [65/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-04-25T04:16:57.8876259Z [66/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-04-25T04:16:57.9296700Z [67/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-04-25T04:16:58.1012650Z [68/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-04-25T04:16:58.1444553Z [69/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-04-25T04:16:58.1559070Z [70/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-04-25T04:16:58.1627088Z [71/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-04-25T04:16:58.2005343Z [72/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-04-25T04:16:58.2102180Z [73/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-04-25T04:16:58.2112885Z [74/7078] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-04-25T04:16:58.2836124Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:16:58.2836562Z 2025-04-25T04:16:58.2836567Z 2025-04-25T04:16:58.2836753Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:16:58.2837066Z 2025-04-25T04:16:58.2837073Z 2025-04-25T04:16:58.2837079Z 2025-04-25T04:16:58.2837085Z 2025-04-25T04:16:58.2837555Z [75/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-04-25T04:16:58.3519933Z [76/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-04-25T04:16:58.4706202Z [77/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-04-25T04:16:58.4997818Z [78/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-04-25T04:16:58.5346946Z [79/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-04-25T04:16:58.6164169Z [80/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-04-25T04:16:58.6529040Z [81/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-04-25T04:16:58.6852130Z [82/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-04-25T04:16:58.8309619Z [83/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-04-25T04:16:58.9121582Z [84/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-04-25T04:16:58.9169766Z [85/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-04-25T04:16:58.9355051Z [86/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-04-25T04:16:58.9561092Z [87/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-04-25T04:16:59.0021832Z [88/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-04-25T04:16:59.0182616Z [89/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-04-25T04:16:59.2572364Z [90/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-04-25T04:16:59.2663925Z [91/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-04-25T04:16:59.2680327Z [92/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-04-25T04:16:59.2965118Z [93/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-04-25T04:16:59.3409058Z [94/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-04-25T04:16:59.3423898Z [95/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-04-25T04:16:59.4016266Z [96/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-04-25T04:16:59.6067696Z [97/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-04-25T04:16:59.6144652Z [98/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-04-25T04:16:59.6161704Z [99/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-04-25T04:16:59.6298211Z [100/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-04-25T04:16:59.6592015Z [101/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-04-25T04:16:59.7007001Z [102/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-04-25T04:16:59.7479716Z [103/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-04-25T04:16:59.9588542Z [104/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-04-25T04:17:00.0005069Z [105/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-04-25T04:17:00.0075464Z [106/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-04-25T04:17:00.0136165Z [107/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-04-25T04:17:00.0188404Z [108/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-04-25T04:17:00.0560207Z [109/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-04-25T04:17:00.0823100Z [110/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-04-25T04:17:00.1211201Z [111/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-04-25T04:17:00.2504133Z [112/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-04-25T04:17:00.2669591Z [113/7078] Linking CXX static library lib\libprotobuf.lib 2025-04-25T04:17:00.3174955Z [114/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-04-25T04:17:00.3464253Z [115/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-04-25T04:17:00.3676209Z [116/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-04-25T04:17:00.4255686Z [117/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-04-25T04:17:00.4509595Z [118/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-04-25T04:17:00.5009272Z [119/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-04-25T04:17:00.6157667Z [120/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-04-25T04:17:00.6488913Z [121/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-04-25T04:17:00.6614866Z [122/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-04-25T04:17:00.7481320Z [123/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-04-25T04:17:00.7506214Z [124/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-04-25T04:17:00.7880842Z [125/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-04-25T04:17:00.8439209Z [126/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-04-25T04:17:00.8649557Z [127/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-04-25T04:17:00.9421366Z [128/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-04-25T04:17:01.0732324Z [129/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-04-25T04:17:01.0834318Z [130/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-04-25T04:17:01.1018417Z [131/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-04-25T04:17:01.1106315Z [132/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-04-25T04:17:01.1215714Z [133/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-04-25T04:17:01.2015167Z [134/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-04-25T04:17:01.2459461Z [135/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-04-25T04:17:01.2705153Z [136/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-04-25T04:17:01.3116552Z [137/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-04-25T04:17:01.4450886Z [138/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-04-25T04:17:01.4631557Z [139/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-04-25T04:17:01.5045104Z [140/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-04-25T04:17:01.5103439Z [141/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-04-25T04:17:01.5201834Z [142/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-04-25T04:17:01.6266637Z [143/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-04-25T04:17:01.6412371Z [144/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-04-25T04:17:01.6837538Z [145/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-04-25T04:17:01.8460719Z [146/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-04-25T04:17:01.8569220Z [147/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-04-25T04:17:01.8587065Z [148/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-04-25T04:17:01.9149314Z [149/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-04-25T04:17:01.9917481Z [150/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-04-25T04:17:02.0060999Z [151/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-04-25T04:17:02.0185877Z [152/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-04-25T04:17:02.0650093Z [153/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-04-25T04:17:02.1573629Z [154/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-04-25T04:17:02.1878180Z [155/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-04-25T04:17:02.1983763Z [156/7078] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-04-25T04:17:02.2722994Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:17:02.2723351Z 2025-04-25T04:17:02.2723356Z 2025-04-25T04:17:02.2723589Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:17:02.2723872Z 2025-04-25T04:17:02.2723877Z 2025-04-25T04:17:02.2723881Z 2025-04-25T04:17:02.2723914Z 2025-04-25T04:17:02.2724340Z [157/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-04-25T04:17:02.2827058Z [158/7078] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-04-25T04:17:02.2931806Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:17:02.2932228Z 2025-04-25T04:17:02.2932237Z 2025-04-25T04:17:02.2932462Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:17:02.2932750Z 2025-04-25T04:17:02.2932754Z 2025-04-25T04:17:02.2932758Z 2025-04-25T04:17:02.2932762Z 2025-04-25T04:17:02.2933378Z [159/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-04-25T04:17:02.3618944Z [160/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-04-25T04:17:02.4205598Z [161/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-04-25T04:17:02.4275558Z [162/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-04-25T04:17:02.4286716Z [163/7078] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-04-25T04:17:02.4397900Z [164/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-04-25T04:17:02.4474023Z [165/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-04-25T04:17:02.5105036Z [166/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-04-25T04:17:02.5215413Z [167/7078] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-04-25T04:17:02.5277560Z [168/7078] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-04-25T04:17:02.5509991Z [169/7078] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-04-25T04:17:02.8307871Z [170/7078] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-04-25T04:17:02.8507043Z 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-04-25T04:17:02.8508686Z [171/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-04-25T04:17:02.8630015Z [172/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-04-25T04:17:02.8674681Z [173/7078] Linking CXX static library lib\libprotoc.lib 2025-04-25T04:17:02.8735354Z [174/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-04-25T04:17:02.9074130Z [175/7078] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-04-25T04:17:02.9242896Z 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-04-25T04:17:02.9243774Z [176/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-04-25T04:17:02.9424881Z [177/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-04-25T04:17:02.9577236Z [178/7078] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-04-25T04:17:02.9590753Z 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-04-25T04:17:02.9591788Z [179/7078] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-04-25T04:17:02.9666719Z 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-04-25T04:17:02.9667662Z [180/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-04-25T04:17:02.9735255Z [181/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-04-25T04:17:02.9892732Z [182/7078] Linking C static library lib\pthreadpool.lib 2025-04-25T04:17:02.9936758Z [183/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-04-25T04:17:03.0375489Z [184/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-04-25T04:17:03.0557264Z [185/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-04-25T04:17:03.0568495Z [186/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-04-25T04:17:03.0615647Z [187/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-04-25T04:17:03.0812152Z [188/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-04-25T04:17:03.1279935Z [189/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-04-25T04:17:03.1327616Z [190/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-04-25T04:17:03.1493516Z [191/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-04-25T04:17:03.1731681Z [192/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:17:03.1909811Z [193/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-04-25T04:17:03.2181866Z [194/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-04-25T04:17:03.2237555Z [195/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-04-25T04:17:03.2419185Z [196/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-04-25T04:17:03.2501992Z [197/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-04-25T04:17:03.2767588Z [198/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-04-25T04:17:03.2815636Z [199/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-04-25T04:17:03.2927981Z [200/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-04-25T04:17:03.3222386Z [201/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-04-25T04:17:03.3528003Z [202/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-04-25T04:17:03.3603482Z [203/7078] 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-04-25T04:17:03.3614902Z [204/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-04-25T04:17:03.3938399Z [205/7078] 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-04-25T04:17:03.4089743Z [206/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-04-25T04:17:03.4410774Z [207/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-04-25T04:17:03.4454698Z [208/7078] 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-04-25T04:17:03.4500454Z [209/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-04-25T04:17:03.4659769Z [210/7078] 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-04-25T04:17:03.4711424Z [211/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-04-25T04:17:03.4774294Z [212/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-04-25T04:17:03.5016318Z [213/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-04-25T04:17:03.5388034Z [214/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-04-25T04:17:03.5517355Z [215/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-04-25T04:17:03.5595162Z [216/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-04-25T04:17:03.5699856Z [217/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-04-25T04:17:03.5853425Z [218/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-04-25T04:17:03.5905782Z [219/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-04-25T04:17:03.6052482Z [220/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-04-25T04:17:03.6355884Z [221/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-04-25T04:17:03.6689356Z [222/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-04-25T04:17:03.6812455Z [223/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-04-25T04:17:03.6823514Z [224/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-04-25T04:17:03.6958832Z [225/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-04-25T04:17:03.7056099Z [226/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-04-25T04:17:03.7123197Z [227/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-04-25T04:17:03.7428598Z [228/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-04-25T04:17:03.7666970Z [229/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-04-25T04:17:03.7930454Z [230/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-04-25T04:17:03.8081896Z [231/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-04-25T04:17:03.8209401Z [232/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-04-25T04:17:03.8271860Z [233/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-04-25T04:17:03.8317169Z [234/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-04-25T04:17:03.8421063Z [235/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-04-25T04:17:03.8738970Z [236/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-04-25T04:17:03.8983048Z [237/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-04-25T04:17:03.9214934Z [238/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-04-25T04:17:03.9449074Z [239/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-04-25T04:17:03.9528406Z [240/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-04-25T04:17:03.9738003Z [241/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-04-25T04:17:03.9793117Z [242/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-04-25T04:17:04.0075340Z [243/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-04-25T04:17:04.0199004Z [244/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-04-25T04:17:04.0388908Z [245/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-04-25T04:17:04.0488568Z [246/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-04-25T04:17:04.0670716Z [247/7078] Linking CXX executable bin\protoc.exe 2025-04-25T04:17:04.0799685Z [248/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-04-25T04:17:04.0858642Z [249/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-04-25T04:17:04.1116200Z [250/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-04-25T04:17:04.1237491Z [251/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-04-25T04:17:04.1514054Z [252/7078] Running gen_proto.py on onnx/onnx.in.proto 2025-04-25T04:17:04.1527202Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-04-25T04:17:04.1527613Z 2025-04-25T04:17:04.1527946Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-04-25T04:17:04.1528466Z 2025-04-25T04:17:04.1529020Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-04-25T04:17:04.1529571Z 2025-04-25T04:17:04.1529943Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-04-25T04:17:04.1530427Z 2025-04-25T04:17:04.1530711Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-04-25T04:17:04.1531093Z 2025-04-25T04:17:04.1531505Z [253/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-04-25T04:17:04.1573785Z [254/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-04-25T04:17:04.1683270Z [255/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-04-25T04:17:04.1895413Z [256/7078] 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-04-25T04:17:04.2087186Z [257/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-04-25T04:17:04.2264592Z [258/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-04-25T04:17:04.2423096Z [259/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-04-25T04:17:04.2462930Z [260/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-04-25T04:17:04.2553712Z [261/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-04-25T04:17:04.2631707Z [262/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-04-25T04:17:04.3427462Z [263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:17:04.3468877Z [264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:17:04.4534635Z [265/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-04-25T04:17:04.4549664Z [266/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-04-25T04:17:04.4559917Z [267/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-04-25T04:17:04.4571395Z [268/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-04-25T04:17:04.4583578Z [269/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-04-25T04:17:04.4596374Z [270/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-04-25T04:17:04.4608927Z [271/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-04-25T04:17:04.5553956Z [272/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-04-25T04:17:04.5663061Z [273/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-04-25T04:17:04.5713962Z [274/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-04-25T04:17:04.5822574Z [275/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-04-25T04:17:04.5872540Z [276/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-04-25T04:17:04.6327734Z [277/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-04-25T04:17:04.6379525Z [278/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-04-25T04:17:04.6690575Z [279/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-04-25T04:17:04.6804645Z [280/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-04-25T04:17:04.6822833Z [281/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-04-25T04:17:04.6922168Z [282/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-04-25T04:17:04.7268980Z [283/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-04-25T04:17:04.7430802Z [284/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-04-25T04:17:04.7481040Z [285/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-04-25T04:17:04.7827703Z [286/7078] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-04-25T04:17:04.7869520Z [287/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-04-25T04:17:04.8000833Z [288/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-04-25T04:17:04.8048796Z [289/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-04-25T04:17:04.8566215Z [290/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-04-25T04:17:04.8614715Z [291/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-04-25T04:17:04.8670160Z [292/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-04-25T04:17:04.8780691Z [293/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-04-25T04:17:04.8886308Z [294/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:17:04.9197731Z [295/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-04-25T04:17:04.9251115Z [296/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-04-25T04:17:04.9439788Z [297/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-04-25T04:17:04.9696534Z [298/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-04-25T04:17:04.9748502Z [299/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-04-25T04:17:04.9957296Z [300/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-04-25T04:17:05.0423554Z [301/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-04-25T04:17:05.0475606Z [302/7078] 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-04-25T04:17:05.0527024Z [303/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-04-25T04:17:05.0578822Z [304/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-04-25T04:17:05.0722879Z [305/7078] 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-04-25T04:17:05.0864938Z [306/7078] 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-04-25T04:17:05.0973960Z [307/7078] 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-04-25T04:17:05.1305245Z [308/7078] 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-04-25T04:17:05.1505953Z [309/7078] 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-04-25T04:17:05.1569524Z [310/7078] 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-04-25T04:17:05.1658360Z [311/7078] 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-04-25T04:17:05.1850692Z [312/7078] 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-04-25T04:17:05.1967474Z [313/7078] 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-04-25T04:17:05.1986568Z [314/7078] 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-04-25T04:17:05.2209906Z [315/7078] 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-04-25T04:17:05.2538806Z [316/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-04-25T04:17:05.2640778Z [317/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-04-25T04:17:05.2656614Z [318/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-04-25T04:17:05.2756811Z [319/7078] 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-04-25T04:17:05.2834416Z [320/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-04-25T04:17:05.3069891Z [321/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-04-25T04:17:05.3214685Z [322/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-04-25T04:17:05.3461129Z [323/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-04-25T04:17:05.3960423Z [324/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.4101788Z [325/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.4144837Z [326/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-04-25T04:17:05.4292991Z [327/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-04-25T04:17:05.4483884Z [328/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-04-25T04:17:05.4587441Z [329/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:17:05.4850945Z [330/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-04-25T04:17:05.5180225Z [331/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-04-25T04:17:05.5336452Z [332/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-04-25T04:17:05.5384248Z [333/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-04-25T04:17:05.5551175Z [334/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.5701914Z [335/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-04-25T04:17:05.5840845Z [336/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-04-25T04:17:05.6427270Z [337/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-04-25T04:17:05.6529878Z [338/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-04-25T04:17:05.6756381Z [339/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-04-25T04:17:05.6834515Z [340/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-04-25T04:17:05.6885498Z [341/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-04-25T04:17:05.6963170Z [342/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-04-25T04:17:05.7185713Z [343/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.7200592Z [344/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-04-25T04:17:05.7358243Z [345/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-04-25T04:17:05.7668097Z [346/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-04-25T04:17:05.7751466Z [347/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-04-25T04:17:05.7802489Z [348/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-04-25T04:17:05.8106317Z [349/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:17:05.8160074Z [350/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-04-25T04:17:05.8449784Z [351/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.8549860Z [352/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:17:05.8845605Z [353/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-04-25T04:17:05.9018779Z [354/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-04-25T04:17:05.9137825Z [355/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-04-25T04:17:05.9187049Z [356/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:05.9232842Z [357/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-04-25T04:17:05.9438625Z [358/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-04-25T04:17:05.9499879Z [359/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-04-25T04:17:05.9639868Z [360/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-04-25T04:17:05.9963579Z [361/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:17:06.0576446Z [362/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-04-25T04:17:06.0595449Z [363/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-04-25T04:17:06.0641997Z [364/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-04-25T04:17:06.0652799Z [365/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-04-25T04:17:06.0663199Z [366/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-04-25T04:17:06.0829936Z [367/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-04-25T04:17:06.0896370Z [368/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-04-25T04:17:06.1000156Z [369/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-04-25T04:17:06.1697570Z [370/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:17:06.1713198Z [371/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:17:06.1832142Z [372/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:17:06.1895506Z [373/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:17:06.1941968Z [374/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:17:06.1989163Z [375/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-04-25T04:17:06.2084819Z [376/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-04-25T04:17:06.2140067Z [377/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-04-25T04:17:06.2994489Z [378/7078] 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-04-25T04:17:06.3158077Z [379/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-04-25T04:17:06.3207462Z [380/7078] 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-04-25T04:17:06.3348668Z [381/7078] 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-04-25T04:17:06.3398551Z [382/7078] 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-04-25T04:17:06.3446546Z [383/7078] 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-04-25T04:17:06.3540113Z [384/7078] 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-04-25T04:17:06.3553759Z [385/7078] 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-04-25T04:17:06.4283449Z [386/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-04-25T04:17:06.4627907Z [387/7078] 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-04-25T04:17:06.4723374Z [388/7078] 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-04-25T04:17:06.4811331Z [389/7078] 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-04-25T04:17:06.4913020Z [390/7078] 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-04-25T04:17:06.4959112Z [391/7078] 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-04-25T04:17:06.5138553Z [392/7078] 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-04-25T04:17:06.5317300Z [393/7078] 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-04-25T04:17:06.5418553Z [394/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-04-25T04:17:06.5958745Z [395/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-04-25T04:17:06.6320463Z [396/7078] 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-04-25T04:17:06.6420564Z [397/7078] 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-04-25T04:17:06.6501935Z [398/7078] 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-04-25T04:17:06.6513607Z [399/7078] 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-04-25T04:17:06.6808421Z [400/7078] 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-04-25T04:17:06.6862362Z [401/7078] 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-04-25T04:17:06.6913311Z [402/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-04-25T04:17:06.7333654Z [403/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-04-25T04:17:06.7381533Z [404/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-04-25T04:17:06.7456919Z [405/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-04-25T04:17:06.7612130Z [406/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-04-25T04:17:06.7717812Z [407/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-04-25T04:17:06.7908696Z [408/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-04-25T04:17:06.7969458Z [409/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-04-25T04:17:06.8307332Z [410/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-04-25T04:17:06.8357258Z [411/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-04-25T04:17:06.8430884Z [412/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-04-25T04:17:06.8536602Z [413/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-04-25T04:17:06.8748780Z [414/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-04-25T04:17:06.8872710Z [415/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-04-25T04:17:06.8951211Z [416/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-04-25T04:17:06.9398832Z [417/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-04-25T04:17:06.9410597Z [418/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-04-25T04:17:06.9492014Z [419/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-04-25T04:17:06.9503443Z [420/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-04-25T04:17:06.9843689Z [421/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-04-25T04:17:06.9935573Z [422/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-04-25T04:17:07.0063455Z [423/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-04-25T04:17:07.0384161Z [424/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-04-25T04:17:07.0441903Z [425/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-04-25T04:17:07.0451712Z [426/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-04-25T04:17:07.0499624Z [427/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-04-25T04:17:07.0874999Z [428/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-04-25T04:17:07.0923437Z [429/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-04-25T04:17:07.1069694Z [430/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-04-25T04:17:07.1091622Z [431/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-04-25T04:17:07.1403987Z [432/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-04-25T04:17:07.1459790Z [433/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-04-25T04:17:07.1511770Z [434/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-04-25T04:17:07.1695072Z [435/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-04-25T04:17:07.1893247Z [436/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-04-25T04:17:07.2034536Z [437/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-04-25T04:17:07.2095552Z [438/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-04-25T04:17:07.2258735Z [439/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-04-25T04:17:07.2577865Z [440/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-04-25T04:17:07.2621285Z [441/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-04-25T04:17:07.2757975Z [442/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-04-25T04:17:07.2814160Z [443/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-04-25T04:17:07.2903014Z [444/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-04-25T04:17:07.3129591Z [445/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-04-25T04:17:07.3327764Z [446/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-04-25T04:17:07.3389478Z [447/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-04-25T04:17:07.3709699Z [448/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-04-25T04:17:07.3724074Z [449/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-04-25T04:17:07.3911246Z [450/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-04-25T04:17:07.3984133Z [451/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-04-25T04:17:07.4224139Z [452/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-04-25T04:17:07.4315314Z [453/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-04-25T04:17:07.4398969Z [454/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-04-25T04:17:07.4812171Z [455/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-04-25T04:17:07.5023197Z [456/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-04-25T04:17:07.5119063Z [457/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-04-25T04:17:07.5170332Z [458/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-04-25T04:17:07.5290534Z [459/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-04-25T04:17:07.5380545Z [460/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-04-25T04:17:07.5548504Z [461/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-04-25T04:17:07.5610494Z [462/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-04-25T04:17:07.6024037Z [463/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-04-25T04:17:07.6150136Z [464/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-04-25T04:17:07.6339417Z [465/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-04-25T04:17:07.6516346Z [466/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-04-25T04:17:07.6537333Z [467/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-04-25T04:17:07.6591598Z [468/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-04-25T04:17:07.6834400Z [469/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-04-25T04:17:07.6893555Z [470/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-04-25T04:17:07.7096829Z [471/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-04-25T04:17:07.7171018Z [472/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-04-25T04:17:07.7367310Z [473/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-04-25T04:17:07.7584489Z [474/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-04-25T04:17:07.7644997Z [475/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-04-25T04:17:07.7887856Z [476/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-04-25T04:17:07.8076442Z [477/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-04-25T04:17:07.8092783Z [478/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-04-25T04:17:07.8470669Z [479/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-04-25T04:17:07.8647231Z [480/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-04-25T04:17:07.8969522Z [481/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-04-25T04:17:07.9094502Z [482/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-04-25T04:17:07.9268046Z [483/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-04-25T04:17:07.9696571Z [484/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-04-25T04:17:07.9749407Z [485/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-04-25T04:17:07.9926124Z [486/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-04-25T04:17:08.0067128Z [487/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-04-25T04:17:08.0391215Z [488/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-04-25T04:17:08.0529566Z [489/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-04-25T04:17:08.0741095Z [490/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-04-25T04:17:08.0852365Z [491/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-04-25T04:17:08.1075530Z [492/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-04-25T04:17:08.1141430Z [493/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-04-25T04:17:08.1272157Z [494/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-04-25T04:17:08.1327137Z [495/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-04-25T04:17:08.1563834Z [496/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-04-25T04:17:08.1634230Z [497/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-04-25T04:17:08.1939909Z [498/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-04-25T04:17:08.2183889Z [499/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-04-25T04:17:08.2272600Z [500/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-04-25T04:17:08.2372099Z [501/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-04-25T04:17:08.2556932Z [502/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-04-25T04:17:08.2718861Z [503/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-04-25T04:17:08.2890147Z [504/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-04-25T04:17:08.3328779Z [505/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-04-25T04:17:08.3507303Z [506/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-04-25T04:17:08.3668834Z [507/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-04-25T04:17:08.4494040Z [508/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-04-25T04:17:08.4706480Z [509/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-04-25T04:17:08.4920311Z [510/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-04-25T04:17:08.5101685Z [511/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-04-25T04:17:08.5448949Z [512/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-04-25T04:17:09.6279312Z [513/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-04-25T04:17:09.6619306Z [514/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-04-25T04:17:09.6806376Z [515/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-04-25T04:17:09.6971083Z [516/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-04-25T04:17:09.7380830Z [517/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-04-25T04:17:09.7534364Z [518/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-04-25T04:17:09.7644383Z [519/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-04-25T04:17:09.7854611Z [520/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-04-25T04:17:09.7930786Z [521/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-04-25T04:17:09.8071374Z [522/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-04-25T04:17:09.8087221Z [523/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-04-25T04:17:09.8411044Z [524/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-04-25T04:17:09.8508233Z [525/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-04-25T04:17:09.8561070Z [526/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-04-25T04:17:09.8870437Z [527/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-04-25T04:17:09.9039886Z [528/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-04-25T04:17:09.9246848Z [529/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-04-25T04:17:09.9259134Z [530/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-04-25T04:17:09.9414536Z [531/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-04-25T04:17:09.9479001Z [532/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-04-25T04:17:09.9689674Z [533/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-04-25T04:17:09.9856725Z [534/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-04-25T04:17:09.9940171Z [535/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-04-25T04:17:10.0329538Z [536/7078] 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-04-25T04:17:10.0449423Z [537/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-04-25T04:17:10.0664940Z [538/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-04-25T04:17:10.0724100Z [539/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-04-25T04:17:10.0765063Z [540/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-04-25T04:17:10.0817605Z [541/7078] 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-04-25T04:17:10.0900550Z [542/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-04-25T04:17:10.1344084Z [543/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-04-25T04:17:10.1404235Z [544/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-04-25T04:17:10.1567078Z [545/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-04-25T04:17:10.1792082Z [546/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-04-25T04:17:10.1975501Z [547/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-04-25T04:17:10.2155136Z [548/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-04-25T04:17:10.2326477Z [549/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-04-25T04:17:10.2386710Z [550/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-04-25T04:17:10.2398672Z [551/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-04-25T04:17:10.2801324Z [552/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-04-25T04:17:10.2876443Z [553/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-04-25T04:17:10.3021190Z [554/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-04-25T04:17:10.3285185Z [555/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-04-25T04:17:10.3337695Z [556/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-04-25T04:17:10.3403304Z [557/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-04-25T04:17:10.3415798Z [558/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-04-25T04:17:10.3524093Z [559/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-04-25T04:17:10.3835139Z [560/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-04-25T04:17:10.4066044Z [561/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-04-25T04:17:10.4365294Z [562/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-04-25T04:17:10.4473815Z [563/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-04-25T04:17:10.4521029Z [564/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-04-25T04:17:10.4533029Z [565/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-04-25T04:17:10.4676136Z [566/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-04-25T04:17:10.4860916Z [567/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-04-25T04:17:10.4877233Z [568/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-04-25T04:17:10.5180227Z [569/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-04-25T04:17:10.5614869Z [570/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-04-25T04:17:10.5630506Z [571/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-04-25T04:17:10.5689099Z [572/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-04-25T04:17:10.5855598Z [573/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-04-25T04:17:10.5960590Z [574/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-04-25T04:17:10.6096290Z [575/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-04-25T04:17:10.6221354Z [576/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-04-25T04:17:10.6237405Z [577/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-04-25T04:17:10.6728321Z [578/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-04-25T04:17:10.6744603Z [579/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-04-25T04:17:10.6825375Z [580/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-04-25T04:17:10.6938391Z [581/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-04-25T04:17:10.7044507Z [582/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-04-25T04:17:10.7322017Z [583/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-04-25T04:17:10.7383235Z [584/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-04-25T04:17:10.7396098Z [585/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-04-25T04:17:10.7959424Z [586/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-04-25T04:17:10.7973385Z [587/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-04-25T04:17:10.8072444Z [588/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-04-25T04:17:10.8209870Z [589/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-04-25T04:17:10.8320340Z [590/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-04-25T04:17:10.8332224Z [591/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-04-25T04:17:10.8423027Z [592/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-04-25T04:17:10.8547156Z [593/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-04-25T04:17:10.9199277Z [594/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-04-25T04:17:10.9251185Z [595/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-04-25T04:17:10.9303430Z [596/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-04-25T04:17:10.9407022Z [597/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-04-25T04:17:10.9489333Z [598/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-04-25T04:17:10.9596495Z [599/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-04-25T04:17:10.9714293Z [600/7078] 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-04-25T04:17:11.0220574Z [601/7078] 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-04-25T04:17:11.0323375Z [602/7078] 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-04-25T04:17:11.0380504Z [603/7078] 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-04-25T04:17:11.0601527Z [604/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-04-25T04:17:11.0651087Z [605/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-04-25T04:17:11.0703648Z [606/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-04-25T04:17:11.0757163Z [607/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-04-25T04:17:11.1014951Z [608/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-04-25T04:17:11.1274048Z [609/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-04-25T04:17:11.1613727Z [610/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-04-25T04:17:11.1692241Z [611/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-04-25T04:17:11.1705367Z [612/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-04-25T04:17:11.1785101Z [613/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-04-25T04:17:11.1858592Z [614/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-04-25T04:17:11.1924972Z [615/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-04-25T04:17:11.2328331Z [616/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-04-25T04:17:11.2637711Z [617/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-04-25T04:17:11.2689384Z [618/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-04-25T04:17:11.2953748Z [619/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-04-25T04:17:11.3073447Z [620/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-04-25T04:17:11.3130904Z [621/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-04-25T04:17:11.3322912Z [622/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-04-25T04:17:11.3389650Z [623/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-04-25T04:17:11.3406713Z [624/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-04-25T04:17:11.3942123Z [625/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-04-25T04:17:11.4201511Z [626/7078] 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-04-25T04:17:11.4281629Z [627/7078] 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-04-25T04:17:11.4416936Z [628/7078] 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-04-25T04:17:11.4819466Z [629/7078] 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-04-25T04:17:11.4901734Z [630/7078] 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-04-25T04:17:11.4918460Z [631/7078] 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-04-25T04:17:11.5081492Z [632/7078] 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-04-25T04:17:11.5424555Z [633/7078] 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-04-25T04:17:11.5479454Z [634/7078] 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-04-25T04:17:11.5724332Z [635/7078] 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-04-25T04:17:11.5956757Z [636/7078] 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-04-25T04:17:11.6049414Z [637/7078] 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-04-25T04:17:11.6134037Z [638/7078] 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-04-25T04:17:11.6146912Z [639/7078] 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-04-25T04:17:11.6199386Z [640/7078] 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-04-25T04:17:11.6595894Z [641/7078] 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-04-25T04:17:11.7123981Z [642/7078] 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-04-25T04:17:11.7390807Z [643/7078] 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-04-25T04:17:11.7402408Z [644/7078] 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-04-25T04:17:11.7450671Z [645/7078] 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-04-25T04:17:11.7463102Z [646/7078] 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-04-25T04:17:11.7588083Z [647/7078] 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-04-25T04:17:11.7729645Z [648/7078] 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-04-25T04:17:11.8145605Z [649/7078] 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-04-25T04:17:11.8299301Z [650/7078] 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-04-25T04:17:11.8678698Z [651/7078] 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-04-25T04:17:11.8728757Z [652/7078] 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-04-25T04:17:11.8776716Z [653/7078] 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-04-25T04:17:11.9097117Z [654/7078] 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-04-25T04:17:11.9109138Z [655/7078] 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-04-25T04:17:11.9161656Z [656/7078] 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-04-25T04:17:11.9817855Z [657/7078] 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-04-25T04:17:11.9883378Z [658/7078] 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-04-25T04:17:12.0209398Z [659/7078] 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-04-25T04:17:12.0261795Z [660/7078] 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-04-25T04:17:12.0361454Z [661/7078] 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-04-25T04:17:12.0422154Z [662/7078] 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-04-25T04:17:12.0497387Z [663/7078] 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-04-25T04:17:12.0578941Z [664/7078] 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-04-25T04:17:12.1163549Z [665/7078] 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-04-25T04:17:12.1437635Z [666/7078] 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-04-25T04:17:12.1585214Z [667/7078] 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-04-25T04:17:12.1676996Z [668/7078] 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-04-25T04:17:12.1877746Z [669/7078] 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-04-25T04:17:12.1900262Z [670/7078] 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-04-25T04:17:12.1948926Z [671/7078] 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-04-25T04:17:12.2003145Z [672/7078] 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-04-25T04:17:12.2403617Z [673/7078] 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-04-25T04:17:12.2897567Z [674/7078] 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-04-25T04:17:12.3040853Z [675/7078] 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-04-25T04:17:12.3157593Z [676/7078] 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-04-25T04:17:12.3230301Z [677/7078] 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-04-25T04:17:12.3276871Z [678/7078] 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-04-25T04:17:12.3363619Z [679/7078] 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-04-25T04:17:12.3693614Z [680/7078] 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-04-25T04:17:12.3746765Z [681/7078] 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-04-25T04:17:12.4406924Z [682/7078] 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-04-25T04:17:12.4547116Z [683/7078] 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-04-25T04:17:12.4620039Z [684/7078] 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-04-25T04:17:12.4637325Z [685/7078] 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-04-25T04:17:12.4652939Z [686/7078] 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-04-25T04:17:12.4702187Z [687/7078] 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-04-25T04:17:12.4867426Z [688/7078] 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-04-25T04:17:12.5247547Z [689/7078] 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-04-25T04:17:12.5973469Z [690/7078] 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-04-25T04:17:12.6057195Z [691/7078] 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-04-25T04:17:12.6099756Z [692/7078] 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-04-25T04:17:12.6190811Z [693/7078] 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-04-25T04:17:12.6205323Z [694/7078] 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-04-25T04:17:12.6291903Z [695/7078] 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-04-25T04:17:12.6302492Z [696/7078] 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-04-25T04:17:12.6502847Z [697/7078] 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-04-25T04:17:12.7274884Z [698/7078] 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-04-25T04:17:12.7379077Z [699/7078] 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-04-25T04:17:12.7586826Z [700/7078] 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-04-25T04:17:12.7636851Z [701/7078] 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-04-25T04:17:12.7651824Z [702/7078] 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-04-25T04:17:12.7699275Z [703/7078] 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-04-25T04:17:12.7747271Z [704/7078] 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-04-25T04:17:12.7994281Z [705/7078] 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-04-25T04:17:12.8632453Z [706/7078] 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-04-25T04:17:12.8838514Z [707/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:17:12.8884053Z [708/7078] 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-04-25T04:17:12.8952468Z [709/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:12.9043332Z [710/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:17:12.9193709Z [711/7078] 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-04-25T04:17:12.9600018Z [712/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:12.9842360Z [713/7078] 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-04-25T04:17:12.9892691Z [714/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:17:13.0043514Z [715/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:17:13.0112713Z [716/7078] 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-04-25T04:17:13.0186510Z [717/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:17:13.0274706Z [718/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:13.0361933Z [719/7078] 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-04-25T04:17:13.0925998Z [720/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:13.1152846Z [721/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-04-25T04:17:13.1231658Z [722/7078] 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-04-25T04:17:13.1294446Z [723/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:17:13.1416342Z [724/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-04-25T04:17:13.1518508Z [725/7078] 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-04-25T04:17:13.1572996Z [726/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-04-25T04:17:13.1878161Z [727/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-04-25T04:17:13.2007749Z [728/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-04-25T04:17:13.2514661Z [729/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-04-25T04:17:13.2562550Z [730/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-04-25T04:17:13.2719231Z [731/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-04-25T04:17:13.2805477Z [732/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-04-25T04:17:13.2820492Z [733/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-04-25T04:17:13.2934314Z [734/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-04-25T04:17:13.3157597Z [735/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-04-25T04:17:13.3356146Z [736/7078] 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-04-25T04:17:13.3650761Z [737/7078] 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-04-25T04:17:13.4044490Z [738/7078] 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-04-25T04:17:13.4165816Z [739/7078] 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-04-25T04:17:13.4212081Z [740/7078] 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-04-25T04:17:13.4365221Z [741/7078] 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-04-25T04:17:13.4570781Z [742/7078] 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-04-25T04:17:13.4751743Z [743/7078] 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-04-25T04:17:13.4936338Z [744/7078] 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-04-25T04:17:13.5016473Z [745/7078] 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-04-25T04:17:13.5145089Z [746/7078] 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-04-25T04:17:13.5230675Z [747/7078] 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-04-25T04:17:13.5242424Z [748/7078] 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-04-25T04:17:13.5449170Z [749/7078] 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-04-25T04:17:13.5899034Z [750/7078] 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-04-25T04:17:13.6202289Z [751/7078] 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-04-25T04:17:13.6297409Z [752/7078] 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-04-25T04:17:13.6457778Z [753/7078] 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-04-25T04:17:13.6549020Z [754/7078] 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-04-25T04:17:13.6613552Z [755/7078] 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-04-25T04:17:13.6933154Z [756/7078] 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-04-25T04:17:13.7104640Z [757/7078] 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-04-25T04:17:13.7274696Z [758/7078] 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-04-25T04:17:13.7290128Z [759/7078] 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-04-25T04:17:13.7832803Z [760/7078] 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-04-25T04:17:13.7855171Z [761/7078] 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-04-25T04:17:13.7988198Z [762/7078] 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-04-25T04:17:13.8263124Z [763/7078] 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-04-25T04:17:13.8396940Z [764/7078] 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-04-25T04:17:13.8457177Z [765/7078] 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-04-25T04:17:13.8468232Z [766/7078] 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-04-25T04:17:13.8518054Z [767/7078] 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-04-25T04:17:13.9102375Z [768/7078] 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-04-25T04:17:13.9270567Z [769/7078] 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-04-25T04:17:13.9351954Z [770/7078] 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-04-25T04:17:13.9853599Z [771/7078] 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-04-25T04:17:13.9899441Z [772/7078] 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-04-25T04:17:13.9970996Z [773/7078] 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-04-25T04:17:14.0092797Z [774/7078] 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-04-25T04:17:14.0328419Z [775/7078] 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-04-25T04:17:14.0340118Z [776/7078] 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-04-25T04:17:14.0730239Z [777/7078] 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-04-25T04:17:14.0803307Z [778/7078] 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-04-25T04:17:14.0976356Z [779/7078] 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-04-25T04:17:14.1184604Z [780/7078] 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-04-25T04:17:14.1279278Z [781/7078] 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-04-25T04:17:14.1538723Z [782/7078] 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-04-25T04:17:14.1550105Z [783/7078] 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-04-25T04:17:14.1890282Z [784/7078] 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-04-25T04:17:14.1942643Z [785/7078] 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-04-25T04:17:14.2056584Z [786/7078] 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-04-25T04:17:14.2343195Z [787/7078] 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-04-25T04:17:14.2708577Z [788/7078] 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-04-25T04:17:14.2829694Z [789/7078] 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-04-25T04:17:14.2875747Z [790/7078] 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-04-25T04:17:14.3185529Z [791/7078] 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-04-25T04:17:14.3233423Z [792/7078] 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-04-25T04:17:14.3330654Z [793/7078] 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-04-25T04:17:14.3587570Z [794/7078] 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-04-25T04:17:14.3710877Z [795/7078] 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-04-25T04:17:14.3787908Z [796/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-04-25T04:17:14.3832788Z [797/7078] 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-04-25T04:17:14.3885568Z [798/7078] 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-04-25T04:17:14.4317900Z [799/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-04-25T04:17:14.4365359Z [800/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-04-25T04:17:14.4470363Z [801/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-04-25T04:17:14.4605593Z [802/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-04-25T04:17:14.4803427Z [803/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-04-25T04:17:14.4877414Z [804/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-04-25T04:17:14.4892458Z [805/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-04-25T04:17:14.5218140Z [806/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-04-25T04:17:14.5376435Z [807/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-04-25T04:17:14.5388522Z [808/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-04-25T04:17:14.5606609Z [809/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-04-25T04:17:14.5918596Z [810/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-04-25T04:17:14.5969427Z [811/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-04-25T04:17:14.6027241Z [812/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-04-25T04:17:14.6090851Z [813/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-04-25T04:17:14.6233947Z [814/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-04-25T04:17:14.6441441Z [815/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-04-25T04:17:14.6494496Z [816/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-04-25T04:17:14.6870011Z [817/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-04-25T04:17:14.7093455Z [818/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-04-25T04:17:14.7137164Z [819/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-04-25T04:17:14.7197681Z [820/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-04-25T04:17:14.7266355Z [821/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-04-25T04:17:14.7448706Z [822/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-04-25T04:17:14.7681281Z [823/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-04-25T04:17:14.7858019Z [824/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-04-25T04:17:14.7923473Z [825/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-04-25T04:17:14.8209730Z [826/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-04-25T04:17:14.8328679Z [827/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-04-25T04:17:14.8422417Z [828/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-04-25T04:17:14.8595540Z [829/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-04-25T04:17:14.8738386Z [830/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-04-25T04:17:14.8826668Z [831/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-04-25T04:17:14.8984469Z [832/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-04-25T04:17:14.9155155Z [833/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-04-25T04:17:14.9362485Z [834/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-04-25T04:17:14.9378294Z [835/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-04-25T04:17:14.9577227Z [836/7078] 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-04-25T04:17:14.9685993Z [837/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-04-25T04:17:14.9846219Z [838/7078] 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-04-25T04:17:15.0152235Z [839/7078] 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-04-25T04:17:15.0407194Z [840/7078] 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-04-25T04:17:15.0489396Z [841/7078] 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-04-25T04:17:15.0502133Z [842/7078] 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-04-25T04:17:15.0602153Z [843/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-04-25T04:17:15.0617542Z [844/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-04-25T04:17:15.0763508Z [845/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-04-25T04:17:15.1032007Z [846/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-04-25T04:17:15.1221403Z [847/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-04-25T04:17:15.1555807Z [848/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:17:15.1621664Z [849/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:17:15.1667104Z [850/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:17:15.1740777Z [851/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.1956581Z [852/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:17:15.2044639Z [853/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.2227666Z [854/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:17:15.2479766Z [855/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:17:15.2858750Z [856/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:17:15.2870594Z [857/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:17:15.2961166Z [858/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.2972260Z [859/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:17:15.3126177Z [860/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:17:15.3384105Z [861/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:17:15.3631853Z [862/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:17:15.3919258Z [863/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.3930600Z [864/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-04-25T04:17:15.4050024Z [865/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-04-25T04:17:15.4094769Z [866/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-04-25T04:17:15.4178213Z [867/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-04-25T04:17:15.4285109Z [868/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-04-25T04:17:15.4372821Z [869/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-04-25T04:17:15.4524860Z [870/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-04-25T04:17:15.5229010Z [871/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:17:15.5283937Z [872/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.5466172Z [873/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.5532103Z [874/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:17:15.5571640Z [875/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:17:15.5632295Z [876/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:17:15.5688674Z [877/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:17:15.5857633Z [878/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.6524890Z [879/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.6857658Z [880/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:17:15.6926447Z [881/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:17:15.6971538Z [882/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:17:15.7024583Z [883/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:17:15.7039495Z [884/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:17:15.7091043Z [885/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.7275833Z [886/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:17:15.7980666Z [887/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.8139899Z [888/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:17:15.8187067Z [889/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:17:15.8233994Z [890/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:17:15.8474901Z [891/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:17:15.8486855Z [892/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:17:15.8540277Z [893/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:17:15.8675766Z [894/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:17:15.9322996Z [895/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:17:15.9423571Z [896/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:17:15.9461750Z [897/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:17:15.9524421Z [898/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-04-25T04:17:15.9565354Z [899/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-04-25T04:17:15.9619203Z [900/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:17:15.9675553Z [901/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-04-25T04:17:15.9823205Z [902/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-04-25T04:17:16.0300353Z [903/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-04-25T04:17:16.0542192Z [904/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-04-25T04:17:16.0600542Z [905/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-04-25T04:17:16.0709221Z [906/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-04-25T04:17:16.0774413Z [907/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-04-25T04:17:16.0972360Z [908/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-04-25T04:17:16.1172357Z [909/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-04-25T04:17:16.1247265Z [910/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-04-25T04:17:16.1646559Z [911/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-04-25T04:17:16.1706353Z [912/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-04-25T04:17:16.1770025Z [913/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-04-25T04:17:16.1783527Z [914/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-04-25T04:17:16.1853737Z [915/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-04-25T04:17:16.2062423Z [916/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-04-25T04:17:16.2221378Z [917/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-04-25T04:17:16.2385520Z [918/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-04-25T04:17:16.2795253Z [919/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-04-25T04:17:16.2919053Z [920/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-04-25T04:17:16.2965090Z [921/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-04-25T04:17:16.3060222Z [922/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-04-25T04:17:16.3258741Z [923/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-04-25T04:17:16.3276080Z [924/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-04-25T04:17:16.3333396Z [925/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-04-25T04:17:16.3400930Z [926/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-04-25T04:17:16.3980493Z [927/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-04-25T04:17:16.4065193Z [928/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-04-25T04:17:16.4083827Z [929/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-04-25T04:17:16.4309086Z [930/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-04-25T04:17:16.4359712Z [931/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-04-25T04:17:16.4410564Z [932/7078] 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-04-25T04:17:16.4503690Z [933/7078] 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-04-25T04:17:16.5167917Z [934/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-04-25T04:17:16.5183291Z [935/7078] 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-04-25T04:17:16.5234647Z [936/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-04-25T04:17:16.5399654Z [937/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-04-25T04:17:16.5410827Z [938/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-04-25T04:17:16.5463885Z [939/7078] 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-04-25T04:17:16.5533541Z [940/7078] 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-04-25T04:17:16.5548467Z [941/7078] 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-04-25T04:17:16.6126183Z [942/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-04-25T04:17:16.6214984Z [943/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-04-25T04:17:16.6418633Z [944/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-04-25T04:17:16.6481552Z [945/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-04-25T04:17:16.6527406Z [946/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-04-25T04:17:16.6581096Z [947/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:17:16.6592898Z [948/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-04-25T04:17:16.6818508Z [949/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-04-25T04:17:16.7373536Z [950/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-04-25T04:17:16.7474314Z [951/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-04-25T04:17:16.7486414Z [952/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-04-25T04:17:16.7529323Z [953/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-04-25T04:17:16.7583585Z [954/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-04-25T04:17:16.7594557Z [955/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-04-25T04:17:16.7651832Z [956/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-04-25T04:17:16.7665510Z [957/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-04-25T04:17:16.8456350Z [958/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:17:16.8506997Z [959/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-04-25T04:17:16.8556830Z [960/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-04-25T04:17:16.8605560Z [961/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-04-25T04:17:16.8658234Z [962/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-04-25T04:17:16.8756777Z [963/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-04-25T04:17:16.8808789Z [964/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-04-25T04:17:16.9118241Z [965/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-04-25T04:17:16.9533873Z [966/7078] 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-04-25T04:17:16.9668380Z [967/7078] 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-04-25T04:17:16.9778497Z [968/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-04-25T04:17:16.9830787Z [969/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-04-25T04:17:16.9885123Z [970/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-04-25T04:17:16.9930143Z [971/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-04-25T04:17:17.0115063Z [972/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-04-25T04:17:17.0410759Z [973/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-04-25T04:17:17.0681100Z [974/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-04-25T04:17:17.0789988Z [975/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-04-25T04:17:17.0834273Z [976/7078] 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-04-25T04:17:17.0886560Z [977/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-04-25T04:17:17.0935870Z [978/7078] 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-04-25T04:17:17.1001658Z [979/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-04-25T04:17:17.1070529Z [980/7078] 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-04-25T04:17:17.1402773Z [981/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-04-25T04:17:17.1524367Z [982/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-04-25T04:17:17.1561763Z [983/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-04-25T04:17:17.1738912Z [984/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-04-25T04:17:17.1750397Z [985/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-04-25T04:17:17.1760567Z [986/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-04-25T04:17:17.2009974Z [987/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-04-25T04:17:17.2020822Z [988/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-04-25T04:17:17.2031418Z [989/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-04-25T04:17:17.2150655Z [990/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-04-25T04:17:17.2267326Z [991/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-04-25T04:17:17.2651079Z [992/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-04-25T04:17:17.2924551Z [993/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-04-25T04:17:17.2983587Z [994/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-04-25T04:17:17.2994461Z [995/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-04-25T04:17:17.3036472Z [996/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-04-25T04:17:17.3088145Z [997/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-04-25T04:17:17.3101873Z [998/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-04-25T04:17:17.3176976Z [999/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-04-25T04:17:17.3556381Z [1000/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-04-25T04:17:17.3604537Z [1001/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-04-25T04:17:17.3944765Z [1002/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-04-25T04:17:17.4055331Z [1003/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-04-25T04:17:17.4259203Z [1004/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-04-25T04:17:17.4305258Z [1005/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-04-25T04:17:17.4445973Z [1006/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-04-25T04:17:17.4607903Z [1007/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-04-25T04:17:17.4618329Z [1008/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-04-25T04:17:17.4821993Z [1009/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-04-25T04:17:17.4831935Z [1010/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-04-25T04:17:17.4978499Z [1011/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-04-25T04:17:17.5208258Z [1012/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-04-25T04:17:17.5276136Z [1013/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-04-25T04:17:17.5366735Z [1014/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-04-25T04:17:17.5449255Z [1015/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-04-25T04:17:17.5459560Z [1016/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-04-25T04:17:17.5564654Z [1017/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-04-25T04:17:17.5699141Z [1018/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-04-25T04:17:17.5836275Z [1019/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-04-25T04:17:17.6018771Z [1020/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-04-25T04:17:17.6098206Z [1021/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-04-25T04:17:17.6109655Z [1022/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-04-25T04:17:17.6138853Z [1023/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-04-25T04:17:17.6157202Z [1024/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-04-25T04:17:17.6298043Z [1025/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-04-25T04:17:17.6470272Z [1026/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-04-25T04:17:17.6577120Z [1027/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-04-25T04:17:17.6657323Z [1028/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-04-25T04:17:17.6694897Z [1029/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-04-25T04:17:17.6732739Z [1030/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-04-25T04:17:17.6805526Z [1031/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-04-25T04:17:17.7105604Z [1032/7078] Linking C static library lib\cpuinfo.lib 2025-04-25T04:17:17.7116758Z [1033/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-04-25T04:17:17.7190632Z [1034/7078] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-04-25T04:17:17.7191250Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-04-25T04:17:17.7192037Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-04-25T04:17:17.7192969Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-04-25T04:17:17.7193871Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-04-25T04:17:17.7284025Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-04-25T04:17:17.7284788Z 2025-04-25T04:17:17.7285067Z [1035/7078] Running gen_proto.py on onnx/onnx-data.in.proto 2025-04-25T04:17:17.7513038Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-04-25T04:17:17.7513807Z 2025-04-25T04:17:17.7514484Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-04-25T04:17:17.7515281Z 2025-04-25T04:17:17.7515892Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-04-25T04:17:17.7516705Z 2025-04-25T04:17:17.7518346Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-04-25T04:17:17.7519085Z 2025-04-25T04:17:17.7519631Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-04-25T04:17:17.7520362Z 2025-04-25T04:17:17.7520609Z [1036/7078] Linking C executable sleef\bin\mkrename.exe 2025-04-25T04:17:17.7538250Z [1037/7078] Linking C executable sleef\bin\mkdisp.exe 2025-04-25T04:17:17.7720201Z [1038/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-04-25T04:17:17.7954441Z [1039/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-04-25T04:17:17.8073448Z [1040/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-04-25T04:17:17.8146158Z [1041/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-04-25T04:17:17.8304820Z [1042/7078] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-04-25T04:17:17.8342229Z [1043/7078] Linking C executable sleef\bin\mkalias.exe 2025-04-25T04:17:17.8537911Z [1044/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-04-25T04:17:17.8578006Z [1045/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-04-25T04:17:17.9149290Z [1046/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-04-25T04:17:17.9448534Z [1047/7078] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-04-25T04:17:17.9867222Z [1048/7078] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-04-25T04:17:18.0242629Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.0243654Z [1049/7078] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-04-25T04:17:18.0351042Z [1050/7078] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-04-25T04:17:18.0623472Z [1051/7078] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-04-25T04:17:18.0625092Z 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-04-25T04:17:18.0626518Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.0627837Z 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-04-25T04:17:18.0629024Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.0630400Z 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-04-25T04:17:18.0631692Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.0632930Z 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-04-25T04:17:18.0634143Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.0635762Z 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-04-25T04:17:18.0637739Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.0639718Z 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-04-25T04:17:18.0641038Z with 2025-04-25T04:17:18.0641327Z [ 2025-04-25T04:17:18.0641623Z _Ty=int 2025-04-25T04:17:18.0641946Z ] 2025-04-25T04:17:18.0643572Z 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-04-25T04:17:18.0645331Z with 2025-04-25T04:17:18.0645620Z [ 2025-04-25T04:17:18.0645889Z _OutIt=float *, 2025-04-25T04:17:18.0646175Z Dst=float, 2025-04-25T04:17:18.0646380Z _Diff=size_t, 2025-04-25T04:17:18.0646593Z _Ty=int 2025-04-25T04:17:18.0646774Z ] 2025-04-25T04:17:18.0647653Z 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-04-25T04:17:18.0648723Z with 2025-04-25T04:17:18.0648917Z [ 2025-04-25T04:17:18.0649088Z Src=float, 2025-04-25T04:17:18.0649353Z Dst=float 2025-04-25T04:17:18.0650316Z ] 2025-04-25T04:17:18.0651434Z 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-04-25T04:17:18.0652621Z with 2025-04-25T04:17:18.0652900Z [ 2025-04-25T04:17:18.0653184Z _Ty=int 2025-04-25T04:17:18.0653499Z ] 2025-04-25T04:17:18.0654770Z 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-04-25T04:17:18.0678269Z with 2025-04-25T04:17:18.0678572Z [ 2025-04-25T04:17:18.0678817Z _OutIt=xnn_float16 *, 2025-04-25T04:17:18.0679182Z Dst=xnn_float16, 2025-04-25T04:17:18.0679498Z _Diff=size_t, 2025-04-25T04:17:18.0679834Z _Ty=int 2025-04-25T04:17:18.0680106Z ] 2025-04-25T04:17:18.0681353Z 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-04-25T04:17:18.0682379Z with 2025-04-25T04:17:18.0682551Z [ 2025-04-25T04:17:18.0682730Z Src=float, 2025-04-25T04:17:18.0682940Z Dst=xnn_float16 2025-04-25T04:17:18.0683167Z ] 2025-04-25T04:17:18.0683423Z [1052/7078] Linking C static library lib\microkernels-prod.lib 2025-04-25T04:17:18.0976228Z [1053/7078] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-04-25T04:17:18.1175320Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.1176182Z [1054/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-04-25T04:17:18.1353302Z [1055/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-04-25T04:17:18.1427762Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.1428321Z [1056/7078] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-04-25T04:17:18.1651061Z [1057/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-04-25T04:17:18.1748586Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\argmax-pooling-nhwc.c(252): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.1750202Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.1751177Z [1058/7078] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-04-25T04:17:18.1807071Z [1059/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-04-25T04:17:18.2222505Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\average-pooling-nhwc.c(519): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.2223389Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.2224046Z [1060/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-04-25T04:17:18.2282202Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.2283108Z [1061/7078] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-04-25T04:17:18.2450359Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.2451036Z [1062/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-04-25T04:17:18.2537833Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.2538489Z [1063/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-04-25T04:17:18.3131361Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.3132632Z [1064/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-04-25T04:17:18.3559976Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.3561088Z [1065/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-04-25T04:17:18.3612736Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\max-pooling-nhwc.c(491): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.3613822Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.3614737Z [1066/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-04-25T04:17:18.3773349Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.3774082Z [1067/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-04-25T04:17:18.4013101Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4014164Z [1068/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-04-25T04:17:18.4166729Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\convolution-nhwc.c(2491): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.4167589Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4168225Z [1069/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-04-25T04:17:18.4508064Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4508785Z [1070/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-04-25T04:17:18.4581460Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4582131Z [1071/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-04-25T04:17:18.4630216Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nchw.c(206): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.4631233Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4632362Z [1072/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-04-25T04:17:18.4786152Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1260): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.4787335Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1548): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.4788139Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4788778Z [1073/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-04-25T04:17:18.4916710Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.4918208Z [1074/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-04-25T04:17:18.5268973Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nhwc.c(272): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.5269864Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5271187Z [1075/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-04-25T04:17:18.5356607Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5357987Z [1076/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-04-25T04:17:18.5471252Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5472337Z [1077/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-04-25T04:17:18.5609042Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5609732Z [1078/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-04-25T04:17:18.5704982Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5706105Z [1079/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-04-25T04:17:18.5779295Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5779998Z [1080/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-04-25T04:17:18.5824424Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5825599Z [1081/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-04-25T04:17:18.5939819Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\unpooling-nhwc.c(208): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.5940989Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.5941665Z [1082/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-04-25T04:17:18.5942562Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(1425): warning C4090: 'initializing': different 'const' qualifiers 2025-04-25T04:17:18.5943825Z 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-04-25T04:17:18.5945028Z 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-04-25T04:17:18.6215491Z 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-04-25T04:17:18.6217781Z 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-04-25T04:17:18.6219570Z [1083/7078] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-04-25T04:17:18.7839224Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-utils.c(162): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:17:18.7840250Z [1084/7078] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-04-25T04:17:18.7841494Z 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-04-25T04:17:18.7842667Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7843819Z 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-04-25T04:17:18.7845147Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7846318Z 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-04-25T04:17:18.7847675Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.7848862Z 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-04-25T04:17:18.7850026Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.7892774Z 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-04-25T04:17:18.7893963Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7894900Z [1085/7078] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-04-25T04:17:18.7896113Z 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-04-25T04:17:18.7897279Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7898456Z 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-04-25T04:17:18.7899627Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7900819Z 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-04-25T04:17:18.7901996Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.7903177Z 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-04-25T04:17:18.7904362Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:17:18.7949300Z 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-04-25T04:17:18.7950492Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:17:18.7951381Z [1086/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-04-25T04:17:18.7998239Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.7999202Z [1087/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-04-25T04:17:18.8011095Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.8011754Z [1088/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-04-25T04:17:18.8101457Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.8102166Z [1089/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-04-25T04:17:18.8226583Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.8227472Z [1090/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-04-25T04:17:18.8289036Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:18.8290200Z [1091/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-04-25T04:17:19.0269684Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0270402Z [1092/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-04-25T04:17:19.0349261Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0350138Z [1093/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-04-25T04:17:19.0392890Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0393938Z [1094/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-04-25T04:17:19.0448002Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0448620Z [1095/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-04-25T04:17:19.0608620Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0609411Z [1096/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-04-25T04:17:19.0681271Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0681930Z [1097/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-04-25T04:17:19.0749034Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0750017Z [1098/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-04-25T04:17:19.0762530Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.0763144Z [1099/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-04-25T04:17:19.2497223Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.2497907Z [1100/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-04-25T04:17:19.2573429Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.2574131Z [1101/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-04-25T04:17:19.2729483Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.2730173Z [1102/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-04-25T04:17:19.2797799Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.2798572Z [1103/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-04-25T04:17:19.2966826Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.2967512Z [1104/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-04-25T04:17:19.3300962Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.3301571Z [1105/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-04-25T04:17:19.3314425Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.3315404Z [1106/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-04-25T04:17:19.3441245Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.3442535Z [1107/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-04-25T04:17:19.4893107Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.4893803Z [1108/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-04-25T04:17:19.4998895Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.4999997Z [1109/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-04-25T04:17:19.5062912Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5064110Z [1110/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-04-25T04:17:19.5224465Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5225580Z [1111/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-04-25T04:17:19.5240928Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5242124Z [1112/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-04-25T04:17:19.5404066Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5404800Z [1113/7078] Generating sleeflibm_AVX.h.tmp 2025-04-25T04:17:19.5496068Z [1114/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-04-25T04:17:19.5540962Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5541354Z [1115/7078] Generating sleeflibm_AVX2.h.tmp 2025-04-25T04:17:19.5563522Z [1116/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-04-25T04:17:19.5625094Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5625515Z [1117/7078] Generating sleeflibm_AVX2128.h.tmp 2025-04-25T04:17:19.5676929Z [1118/7078] Generating sleeflibm_AVX512F.h.tmp 2025-04-25T04:17:19.5698335Z [1119/7078] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-04-25T04:17:19.5767299Z [1120/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-04-25T04:17:19.5778174Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.5778850Z [1121/7078] Generating sleeflibm_AVX512F_.h.tmp 2025-04-25T04:17:19.5807989Z [1122/7078] Generating sleeflibm_AVX_.h.tmp 2025-04-25T04:17:19.5831429Z [1123/7078] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-04-25T04:17:19.5890126Z [1124/7078] Generating sleeflibm_FMA4.h.tmp 2025-04-25T04:17:19.5946409Z [1125/7078] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-04-25T04:17:19.5961737Z [1126/7078] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-04-25T04:17:19.5978266Z [1127/7078] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-04-25T04:17:19.5991796Z [1128/7078] Generating sleeflibm_SSE2.h.tmp 2025-04-25T04:17:19.6052858Z [1129/7078] Generating sleeflibm_SSE4.h.tmp 2025-04-25T04:17:19.6080085Z [1130/7078] Generating sleeflibm_SSE_.h.tmp 2025-04-25T04:17:19.6111318Z [1131/7078] Generating alias_AVX512F_sp.h.tmp 2025-04-25T04:17:19.6127329Z [1132/7078] Generating alias_AVX512F_dp.h.tmp 2025-04-25T04:17:19.6160593Z [1133/7078] Generating dispscalar.c.body 2025-04-25T04:17:19.6196265Z [1134/7078] Generating dispsse.c.tmp 2025-04-25T04:17:19.6211378Z [1135/7078] Generating dispavx.c.tmp 2025-04-25T04:17:19.6271050Z [1136/7078] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-04-25T04:17:19.7202535Z [1137/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-04-25T04:17:19.7361410Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.7362553Z [1138/7078] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-04-25T04:17:19.8839196Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:19.8839864Z [1139/7078] Generating build_identifier.c 2025-04-25T04:17:19.9570523Z [1140/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-04-25T04:17:19.9585554Z [1141/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-04-25T04:17:19.9653646Z [1142/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-04-25T04:17:19.9905642Z [1143/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-04-25T04:17:20.0236546Z [1144/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-04-25T04:17:20.0311287Z [1145/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-04-25T04:17:20.0325700Z [1146/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-04-25T04:17:20.2449639Z [1147/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-04-25T04:17:20.2834997Z [1148/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-04-25T04:17:20.2971556Z [1149/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-04-25T04:17:20.3030037Z [1150/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-04-25T04:17:20.3184417Z [1151/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-04-25T04:17:20.3198590Z [1152/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-04-25T04:17:20.3753414Z [1153/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-04-25T04:17:20.4003125Z [1154/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-04-25T04:17:20.5922531Z [1155/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-04-25T04:17:20.6051515Z [1156/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-04-25T04:17:20.6117862Z [1157/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-04-25T04:17:20.6185072Z [1158/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-04-25T04:17:20.6554794Z [1159/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-04-25T04:17:20.6991252Z [1160/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-04-25T04:17:20.7104133Z [1161/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-04-25T04:17:20.7481026Z [1162/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-04-25T04:17:20.9119774Z [1163/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-04-25T04:17:20.9493010Z [1164/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-04-25T04:17:20.9508532Z [1165/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-04-25T04:17:20.9523347Z [1166/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-04-25T04:17:20.9768474Z [1167/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-04-25T04:17:21.0132418Z [1168/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-04-25T04:17:21.0199541Z [1169/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-04-25T04:17:21.0716653Z [1170/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-04-25T04:17:21.2425062Z [1171/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-04-25T04:17:21.2501700Z [1172/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-04-25T04:17:21.2674956Z [1173/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-04-25T04:17:21.2925050Z [1174/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-04-25T04:17:21.3007025Z [1175/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-04-25T04:17:21.3194461Z [1176/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-04-25T04:17:21.3808471Z [1177/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-04-25T04:17:21.4610722Z [1178/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-04-25T04:17:21.5999215Z [1179/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-04-25T04:17:21.6225679Z [1180/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-04-25T04:17:21.6320926Z [1181/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-04-25T04:17:21.6396210Z [1182/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-04-25T04:17:21.6481097Z [1183/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-04-25T04:17:21.7155311Z [1184/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-04-25T04:17:21.7334985Z [1185/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-04-25T04:17:21.8053931Z [1186/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-04-25T04:17:22.0028813Z [1187/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-04-25T04:17:22.0160498Z [1188/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-04-25T04:17:22.0225453Z [1189/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-04-25T04:17:22.0464903Z [1190/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-04-25T04:17:22.0630213Z [1191/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-04-25T04:17:22.0958785Z [1192/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-04-25T04:17:22.2187593Z [1193/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-04-25T04:17:22.2203693Z [1194/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-04-25T04:17:22.3620894Z [1195/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-04-25T04:17:22.4013797Z [1196/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-04-25T04:17:22.4309673Z [1197/7078] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-04-25T04:17:22.4553056Z [1198/7078] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-04-25T04:17:22.5051591Z [1199/7078] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-04-25T04:17:22.5611982Z [1200/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-04-25T04:17:22.5705585Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.5706646Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\alloc-aligned.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.5707557Z [1201/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-04-25T04:17:22.5837276Z [1202/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-04-25T04:17:22.5983197Z [1203/7078] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-04-25T04:17:22.6123231Z [1204/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-04-25T04:17:22.6239236Z [1205/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-04-25T04:17:22.7796344Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.7797442Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\alloc.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.7798260Z [1206/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-04-25T04:17:22.8150788Z [1207/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-04-25T04:17:22.8305787Z [1208/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-04-25T04:17:22.8429401Z [1209/7078] Generating include/renameavx512fnofma.h 2025-04-25T04:17:22.8535641Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-04-25T04:17:22.8536023Z 2025-04-25T04:17:22.8536336Z [1210/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-04-25T04:17:22.8561688Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.8562812Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\init.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.8563525Z [1211/7078] Generating include/renameavx512f.h 2025-04-25T04:17:22.8659257Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-04-25T04:17:22.8659633Z 2025-04-25T04:17:22.8659746Z [1212/7078] Generating include/renameavx2.h 2025-04-25T04:17:22.8693703Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-04-25T04:17:22.8693991Z 2025-04-25T04:17:22.8694134Z [1213/7078] Generating include/renameavx2128.h 2025-04-25T04:17:22.8784366Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-04-25T04:17:22.8784901Z 2025-04-25T04:17:22.8785084Z [1214/7078] Generating include/renamefma4.h 2025-04-25T04:17:22.8818653Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-04-25T04:17:22.8819145Z 2025-04-25T04:17:22.8819336Z [1215/7078] Generating include/renameavx.h 2025-04-25T04:17:22.8889982Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-04-25T04:17:22.8890456Z 2025-04-25T04:17:22.8890970Z [1216/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-04-25T04:17:22.8919400Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.8920633Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\heap.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.8921599Z [1217/7078] Generating include/renamesse4.h 2025-04-25T04:17:22.8949348Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-04-25T04:17:22.8949848Z 2025-04-25T04:17:22.8950038Z [1218/7078] Generating include/renamesse2.h 2025-04-25T04:17:22.9018083Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-04-25T04:17:22.9018577Z 2025-04-25T04:17:22.9018788Z [1219/7078] Generating include/renamepurec_scalar.h 2025-04-25T04:17:22.9037154Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-04-25T04:17:22.9037684Z 2025-04-25T04:17:22.9037928Z [1220/7078] Generating include/renamepurecfma_scalar.h 2025-04-25T04:17:22.9087672Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-04-25T04:17:22.9088041Z 2025-04-25T04:17:22.9088163Z [1221/7078] Generating include/renamecuda.h 2025-04-25T04:17:22.9186757Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-04-25T04:17:22.9187156Z 2025-04-25T04:17:22.9187675Z [1222/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-04-25T04:17:22.9248125Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.9249206Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\options.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.9250023Z [1223/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-04-25T04:17:22.9277767Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:22.9278975Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\os.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:22.9279582Z [1224/7078] Generating include/alias_avx512f.h 2025-04-25T04:17:22.9313552Z [1225/7078] Generating ../../../include/sleef.h 2025-04-25T04:17:22.9323518Z [1226/7078] Generating include/renamedspscalar.h 2025-04-25T04:17:22.9339617Z [1227/7078] Generating dispscalar.c 2025-04-25T04:17:22.9405170Z [1228/7078] Generating include/renamedsp128.h 2025-04-25T04:17:22.9447813Z [1229/7078] Generating include/renamedsp256.h 2025-04-25T04:17:22.9498964Z [1230/7078] Generating dispsse.c 2025-04-25T04:17:22.9565682Z [1231/7078] Generating dispavx.c 2025-04-25T04:17:22.9721205Z [1232/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-04-25T04:17:23.1290695Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:23.1292666Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\random.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:23.1294124Z [1233/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-04-25T04:17:23.1881588Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:23.1882809Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\stats.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:23.1883802Z [1234/7078] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-04-25T04:17:23.2538140Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\include\mimalloc/prim.h(136): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:17:23.2540330Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\prim\prim.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:17:23.2541977Z [1235/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-04-25T04:17:23.2980568Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.2981815Z [1236/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-04-25T04:17:23.3051027Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.3052192Z [1237/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-04-25T04:17:23.3253354Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.3254114Z [1238/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-04-25T04:17:23.3272651Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.3273881Z [1239/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-04-25T04:17:23.3353167Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.3354183Z [1240/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-04-25T04:17:23.3543785Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.3544652Z [1241/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-04-25T04:17:23.5262533Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.5263710Z [1242/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-04-25T04:17:23.6835683Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.6836326Z [1243/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-04-25T04:17:23.6851059Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.6851701Z [1244/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-04-25T04:17:23.6912973Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.6913611Z [1245/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-04-25T04:17:23.7027226Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.7027950Z [1246/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-04-25T04:17:23.7048015Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.7048671Z [1247/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-04-25T04:17:23.7160747Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.7161795Z [1248/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-04-25T04:17:23.7723455Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.7724203Z [1249/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-04-25T04:17:23.9303562Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:23.9304851Z [1250/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-04-25T04:17:24.0620144Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.0620779Z [1251/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-04-25T04:17:24.0702659Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.0703495Z [1252/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-04-25T04:17:24.0750551Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.0751167Z [1253/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-04-25T04:17:24.0833567Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.0834247Z [1254/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-04-25T04:17:24.1344471Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.1345169Z [1255/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-04-25T04:17:24.1401131Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.1402094Z [1256/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-04-25T04:17:24.1516731Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.1518354Z [1257/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-04-25T04:17:24.2235411Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.2236364Z [1258/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-04-25T04:17:24.2691496Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.2692594Z [1259/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-04-25T04:17:24.2914356Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.2915066Z [1260/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-04-25T04:17:24.3242067Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.3242870Z [1261/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-04-25T04:17:24.4185220Z [1262/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-04-25T04:17:24.4264956Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.4265594Z [1263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-04-25T04:17:24.4413774Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.4414901Z [1264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-04-25T04:17:24.4490032Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.4490740Z [1265/7078] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-04-25T04:17:24.6010914Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:17:24.6011717Z [1266/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-04-25T04:17:24.6260620Z [1267/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-04-25T04:17:24.7100367Z [1268/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-04-25T04:17:24.7249378Z [1269/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-04-25T04:17:24.7419926Z [1270/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-04-25T04:17:24.7422378Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.7423852Z with 2025-04-25T04:17:24.7424044Z [ 2025-04-25T04:17:24.7424417Z T=uint8_t, 2025-04-25T04:17:24.7424630Z accT=int32_t, 2025-04-25T04:17:24.7424855Z inpType=uint8_t 2025-04-25T04:17:24.7425084Z ] 2025-04-25T04:17:24.7425858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:24.7426917Z with 2025-04-25T04:17:24.7427245Z [ 2025-04-25T04:17:24.7427410Z T=uint8_t, 2025-04-25T04:17:24.7427622Z accT=int32_t 2025-04-25T04:17:24.7427831Z ] 2025-04-25T04:17:24.7429252Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:24.7430710Z with 2025-04-25T04:17:24.7430888Z [ 2025-04-25T04:17:24.7431063Z T=uint8_t, 2025-04-25T04:17:24.7431262Z accT=int32_t 2025-04-25T04:17:24.7431517Z ] 2025-04-25T04:17:24.7432323Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:24.7433334Z with 2025-04-25T04:17:24.7433512Z [ 2025-04-25T04:17:24.7433687Z T=uint8_t, 2025-04-25T04:17:24.7433885Z accT=int32_t 2025-04-25T04:17:24.7434093Z ] 2025-04-25T04:17:24.7435405Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.7436647Z with 2025-04-25T04:17:24.7436868Z [ 2025-04-25T04:17:24.7437031Z T=int8_t, 2025-04-25T04:17:24.7437238Z accT=int32_t, 2025-04-25T04:17:24.7437452Z inpType=int8_t 2025-04-25T04:17:24.7437674Z ] 2025-04-25T04:17:24.7438453Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:24.7439280Z with 2025-04-25T04:17:24.7439459Z [ 2025-04-25T04:17:24.7439619Z T=int8_t, 2025-04-25T04:17:24.7439826Z accT=int32_t 2025-04-25T04:17:24.7440079Z ] 2025-04-25T04:17:24.7441568Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:24.7442796Z with 2025-04-25T04:17:24.7442994Z [ 2025-04-25T04:17:24.7443175Z T=int8_t, 2025-04-25T04:17:24.7443369Z accT=int32_t 2025-04-25T04:17:24.7443573Z ] 2025-04-25T04:17:24.7444331Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:24.7445139Z with 2025-04-25T04:17:24.7445343Z [ 2025-04-25T04:17:24.7445578Z T=int8_t, 2025-04-25T04:17:24.7445861Z accT=int32_t 2025-04-25T04:17:24.7446067Z ] 2025-04-25T04:17:24.7447475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.7448917Z with 2025-04-25T04:17:24.7449085Z [ 2025-04-25T04:17:24.7449299Z ACC_T=int32_t, 2025-04-25T04:17:24.7449510Z T=uint8_t, 2025-04-25T04:17:24.7449715Z accT=int32_t, 2025-04-25T04:17:24.7449926Z inpType=uint8_t 2025-04-25T04:17:24.7450149Z ] 2025-04-25T04:17:24.7451040Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:24.7452013Z with 2025-04-25T04:17:24.7452230Z [ 2025-04-25T04:17:24.7452405Z ACC_T=int32_t, 2025-04-25T04:17:24.7452655Z T=uint8_t, 2025-04-25T04:17:24.7452856Z accT=int32_t 2025-04-25T04:17:24.7453062Z ] 2025-04-25T04:17:24.7454223Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:24.7455602Z with 2025-04-25T04:17:24.7455773Z [ 2025-04-25T04:17:24.7455939Z ACC_T=int32_t, 2025-04-25T04:17:24.7456161Z T=uint8_t, 2025-04-25T04:17:24.7456356Z accT=int32_t 2025-04-25T04:17:24.7456662Z ] 2025-04-25T04:17:24.7457591Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:24.7458538Z with 2025-04-25T04:17:24.7458706Z [ 2025-04-25T04:17:24.7458877Z ACC_T=int32_t, 2025-04-25T04:17:24.7459088Z T=uint8_t, 2025-04-25T04:17:24.7459284Z accT=int32_t 2025-04-25T04:17:24.7459494Z ] 2025-04-25T04:17:24.7461042Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.7463665Z with 2025-04-25T04:17:24.7463964Z [ 2025-04-25T04:17:24.7464270Z ACC_T=int32_t, 2025-04-25T04:17:24.7464659Z T=uint8_t, 2025-04-25T04:17:24.7464995Z accT=int32_t, 2025-04-25T04:17:24.7465369Z inpType=uint8_t 2025-04-25T04:17:24.7465721Z ] 2025-04-25T04:17:24.7466586Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:24.7467470Z with 2025-04-25T04:17:24.7467641Z [ 2025-04-25T04:17:24.7467817Z ACC_T=int32_t, 2025-04-25T04:17:24.7468098Z T=uint8_t, 2025-04-25T04:17:24.7468300Z accT=int32_t 2025-04-25T04:17:24.7468569Z ] 2025-04-25T04:17:24.7469742Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:24.7471142Z with 2025-04-25T04:17:24.7471323Z [ 2025-04-25T04:17:24.7471492Z ACC_T=int32_t, 2025-04-25T04:17:24.7471747Z T=uint8_t, 2025-04-25T04:17:24.7472024Z accT=int32_t 2025-04-25T04:17:24.7472259Z ] 2025-04-25T04:17:24.7473266Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:24.7474224Z with 2025-04-25T04:17:24.7474417Z [ 2025-04-25T04:17:24.7474586Z ACC_T=int32_t, 2025-04-25T04:17:24.7474809Z T=uint8_t, 2025-04-25T04:17:24.7475018Z accT=int32_t 2025-04-25T04:17:24.7475227Z ] 2025-04-25T04:17:24.7476495Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.7477902Z with 2025-04-25T04:17:24.7478133Z [ 2025-04-25T04:17:24.7478323Z ACC_T=int32_t, 2025-04-25T04:17:24.7478545Z T=uint8_t, 2025-04-25T04:17:24.7478752Z accT=int32_t, 2025-04-25T04:17:24.7478975Z inpType=uint8_t 2025-04-25T04:17:24.7479179Z ] 2025-04-25T04:17:24.7480109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:24.7480921Z with 2025-04-25T04:17:24.7481098Z [ 2025-04-25T04:17:24.7481276Z ACC_T=int32_t, 2025-04-25T04:17:24.7481491Z T=uint8_t, 2025-04-25T04:17:24.7481699Z accT=int32_t 2025-04-25T04:17:24.7481901Z ] 2025-04-25T04:17:24.7483275Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:24.7484504Z with 2025-04-25T04:17:24.7484685Z [ 2025-04-25T04:17:24.7484860Z ACC_T=int32_t, 2025-04-25T04:17:24.7485079Z T=uint8_t, 2025-04-25T04:17:24.7485283Z accT=int32_t 2025-04-25T04:17:24.7485504Z ] 2025-04-25T04:17:24.7486554Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:24.7487406Z with 2025-04-25T04:17:24.7487587Z [ 2025-04-25T04:17:24.7487784Z ACC_T=int32_t, 2025-04-25T04:17:24.7488061Z T=uint8_t, 2025-04-25T04:17:24.7488254Z accT=int32_t 2025-04-25T04:17:24.7488465Z ] 2025-04-25T04:17:24.7489518Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.7491523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.7497575Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.7536345Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.7539028Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.7645295Z [1271/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-04-25T04:17:24.7646749Z [1272/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-04-25T04:17:24.7807096Z [1273/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-04-25T04:17:24.8040206Z [1274/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-04-25T04:17:24.8042971Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8044669Z with 2025-04-25T04:17:24.8044855Z [ 2025-04-25T04:17:24.8045064Z inpType=uint8_t 2025-04-25T04:17:24.8045325Z ] 2025-04-25T04:17:24.8046212Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8048677Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8052014Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8054326Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8055722Z with 2025-04-25T04:17:24.8056001Z [ 2025-04-25T04:17:24.8056181Z inpType=int8_t 2025-04-25T04:17:24.8056412Z ] 2025-04-25T04:17:24.8057272Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8059359Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8061868Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8064152Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8065513Z with 2025-04-25T04:17:24.8065698Z [ 2025-04-25T04:17:24.8065879Z inpType=uint8_t 2025-04-25T04:17:24.8066112Z ] 2025-04-25T04:17:24.8067666Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8069960Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8072839Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8076792Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8078407Z with 2025-04-25T04:17:24.8078873Z [ 2025-04-25T04:17:24.8079183Z inpType=int8_t 2025-04-25T04:17:24.8079545Z ] 2025-04-25T04:17:24.8080921Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8084234Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8087816Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8090648Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8092326Z with 2025-04-25T04:17:24.8092516Z [ 2025-04-25T04:17:24.8092717Z inpType=uint8_t 2025-04-25T04:17:24.8092952Z ] 2025-04-25T04:17:24.8093813Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8097027Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8099818Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8103399Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8105894Z with 2025-04-25T04:17:24.8106238Z [ 2025-04-25T04:17:24.8106547Z inpType=uint8_t 2025-04-25T04:17:24.8106933Z ] 2025-04-25T04:17:24.8109734Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8112939Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8117379Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8122061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8124437Z with 2025-04-25T04:17:24.8124739Z [ 2025-04-25T04:17:24.8125021Z inpType=uint8_t 2025-04-25T04:17:24.8125634Z ] 2025-04-25T04:17:24.8127265Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8130912Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8134628Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8138513Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8141057Z with 2025-04-25T04:17:24.8141375Z [ 2025-04-25T04:17:24.8141694Z inpType=uint8_t 2025-04-25T04:17:24.8142099Z ] 2025-04-25T04:17:24.8143615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8147400Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8151363Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8155254Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8157880Z with 2025-04-25T04:17:24.8158191Z [ 2025-04-25T04:17:24.8158502Z inpType=uint8_t 2025-04-25T04:17:24.8158899Z ] 2025-04-25T04:17:24.8160689Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8164553Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8168399Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8170703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8173005Z with 2025-04-25T04:17:24.8173327Z [ 2025-04-25T04:17:24.8173648Z inpType=uint8_t 2025-04-25T04:17:24.8174056Z ] 2025-04-25T04:17:24.8175607Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8179087Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8181986Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8184619Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8187218Z with 2025-04-25T04:17:24.8187556Z [ 2025-04-25T04:17:24.8187870Z inpType=uint8_t 2025-04-25T04:17:24.8188268Z ] 2025-04-25T04:17:24.8189785Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8193524Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8196165Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8198218Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8200760Z with 2025-04-25T04:17:24.8201281Z [ 2025-04-25T04:17:24.8201572Z inpType=uint8_t 2025-04-25T04:17:24.8201849Z ] 2025-04-25T04:17:24.8203006Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8204932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8206993Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8210727Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8213376Z with 2025-04-25T04:17:24.8213673Z [ 2025-04-25T04:17:24.8214002Z inpType=uint8_t 2025-04-25T04:17:24.8214404Z ] 2025-04-25T04:17:24.8216039Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8219956Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:24.8223903Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8228412Z 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-04-25T04:17:24.8230890Z with 2025-04-25T04:17:24.8231321Z [ 2025-04-25T04:17:24.8231524Z inpType=uint8_t 2025-04-25T04:17:24.8231751Z ] 2025-04-25T04:17:24.8232625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8235063Z 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-04-25T04:17:24.8237602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8239607Z 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-04-25T04:17:24.8240890Z with 2025-04-25T04:17:24.8241065Z [ 2025-04-25T04:17:24.8241308Z inpType=int8_t 2025-04-25T04:17:24.8241549Z ] 2025-04-25T04:17:24.8242506Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8244368Z 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-04-25T04:17:24.8246416Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8248412Z 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-04-25T04:17:24.8249757Z with 2025-04-25T04:17:24.8249941Z [ 2025-04-25T04:17:24.8250170Z inpType=uint8_t 2025-04-25T04:17:24.8250448Z ] 2025-04-25T04:17:24.8251204Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8253011Z 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-04-25T04:17:24.8256335Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8259742Z 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-04-25T04:17:24.8262023Z with 2025-04-25T04:17:24.8262332Z [ 2025-04-25T04:17:24.8262638Z inpType=int8_t 2025-04-25T04:17:24.8263180Z ] 2025-04-25T04:17:24.8264155Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8266112Z 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-04-25T04:17:24.8268099Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8270173Z 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-04-25T04:17:24.8271529Z with 2025-04-25T04:17:24.8271709Z [ 2025-04-25T04:17:24.8271897Z inpType=uint8_t 2025-04-25T04:17:24.8272115Z ] 2025-04-25T04:17:24.8273165Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8276986Z 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-04-25T04:17:24.8280858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8285012Z 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-04-25T04:17:24.8286979Z with 2025-04-25T04:17:24.8287187Z [ 2025-04-25T04:17:24.8287377Z inpType=uint8_t 2025-04-25T04:17:24.8287730Z ] 2025-04-25T04:17:24.8288735Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8290775Z 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-04-25T04:17:24.8292706Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8294724Z 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-04-25T04:17:24.8296317Z with 2025-04-25T04:17:24.8296529Z [ 2025-04-25T04:17:24.8296749Z inpType=uint8_t 2025-04-25T04:17:24.8296967Z ] 2025-04-25T04:17:24.8297930Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8300066Z 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-04-25T04:17:24.8302294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8304572Z 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-04-25T04:17:24.8306144Z with 2025-04-25T04:17:24.8306356Z [ 2025-04-25T04:17:24.8306568Z inpType=uint8_t 2025-04-25T04:17:24.8306787Z ] 2025-04-25T04:17:24.8307896Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8310176Z 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-04-25T04:17:24.8314643Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8317031Z 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-04-25T04:17:24.8318613Z with 2025-04-25T04:17:24.8318817Z [ 2025-04-25T04:17:24.8319040Z inpType=uint8_t 2025-04-25T04:17:24.8319283Z ] 2025-04-25T04:17:24.8321264Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8325411Z 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-04-25T04:17:24.8330086Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8333154Z 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-04-25T04:17:24.8335854Z with 2025-04-25T04:17:24.8336081Z [ 2025-04-25T04:17:24.8336338Z inpType=uint8_t 2025-04-25T04:17:24.8336570Z ] 2025-04-25T04:17:24.8337498Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8341435Z 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-04-25T04:17:24.8345154Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8348895Z 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-04-25T04:17:24.8351336Z with 2025-04-25T04:17:24.8351631Z [ 2025-04-25T04:17:24.8351960Z inpType=uint8_t 2025-04-25T04:17:24.8352362Z ] 2025-04-25T04:17:24.8354178Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8357800Z 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-04-25T04:17:24.8361702Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8365438Z 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-04-25T04:17:24.8368140Z with 2025-04-25T04:17:24.8368473Z [ 2025-04-25T04:17:24.8368823Z inpType=uint8_t 2025-04-25T04:17:24.8369193Z ] 2025-04-25T04:17:24.8370738Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-04-25T04:17:24.8374361Z 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-04-25T04:17:24.8378025Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-04-25T04:17:24.8381891Z 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-04-25T04:17:24.8384423Z with 2025-04-25T04:17:24.8384717Z [ 2025-04-25T04:17:24.8385055Z inpType=uint8_t 2025-04-25T04:17:24.8385448Z ] 2025-04-25T04:17:24.8387059Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-04-25T04:17:24.8390795Z 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-04-25T04:17:24.8394715Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-04-25T04:17:24.8398363Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8402451Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8406590Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8410464Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8414594Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8418503Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8422389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8426404Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8430408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8434452Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8438278Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8442118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8990871Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:24.8993741Z [1275/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-04-25T04:17:25.0563252Z [1276/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-04-25T04:17:25.0635059Z [1277/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-04-25T04:17:25.1342883Z [1278/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-04-25T04:17:25.1673063Z [1279/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-04-25T04:17:25.1688868Z [1280/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-04-25T04:17:25.2178639Z [1281/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-04-25T04:17:25.2334917Z [1282/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-04-25T04:17:25.3003676Z [1283/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-04-25T04:17:25.4642569Z [1284/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-04-25T04:17:25.4645593Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4647941Z with 2025-04-25T04:17:25.4648234Z [ 2025-04-25T04:17:25.4648651Z T=uint8_t, 2025-04-25T04:17:25.4649000Z accT=int32_t, 2025-04-25T04:17:25.4649389Z inpType=uint8_t 2025-04-25T04:17:25.4649753Z ] 2025-04-25T04:17:25.4651091Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4652596Z with 2025-04-25T04:17:25.4652899Z [ 2025-04-25T04:17:25.4653186Z T=uint8_t, 2025-04-25T04:17:25.4653543Z accT=int32_t 2025-04-25T04:17:25.4653886Z ] 2025-04-25T04:17:25.4656062Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4658473Z with 2025-04-25T04:17:25.4658764Z [ 2025-04-25T04:17:25.4659060Z T=uint8_t, 2025-04-25T04:17:25.4659410Z accT=int32_t 2025-04-25T04:17:25.4659772Z ] 2025-04-25T04:17:25.4661188Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4662755Z with 2025-04-25T04:17:25.4663053Z [ 2025-04-25T04:17:25.4663327Z T=uint8_t, 2025-04-25T04:17:25.4663670Z accT=int32_t 2025-04-25T04:17:25.4664010Z ] 2025-04-25T04:17:25.4666268Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4668645Z with 2025-04-25T04:17:25.4668930Z [ 2025-04-25T04:17:25.4669226Z T=uint8_t, 2025-04-25T04:17:25.4669574Z accT=int16_t, 2025-04-25T04:17:25.4669959Z inpType=uint8_t 2025-04-25T04:17:25.4670338Z ] 2025-04-25T04:17:25.4671718Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4673167Z with 2025-04-25T04:17:25.4673359Z [ 2025-04-25T04:17:25.4673540Z T=uint8_t, 2025-04-25T04:17:25.4673747Z accT=int16_t 2025-04-25T04:17:25.4673960Z ] 2025-04-25T04:17:25.4675577Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4677238Z with 2025-04-25T04:17:25.4677404Z [ 2025-04-25T04:17:25.4677588Z T=uint8_t, 2025-04-25T04:17:25.4677978Z accT=int16_t 2025-04-25T04:17:25.4678176Z ] 2025-04-25T04:17:25.4678969Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4679895Z with 2025-04-25T04:17:25.4680189Z [ 2025-04-25T04:17:25.4680405Z T=uint8_t, 2025-04-25T04:17:25.4680721Z accT=int16_t 2025-04-25T04:17:25.4681038Z ] 2025-04-25T04:17:25.4683733Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4685970Z with 2025-04-25T04:17:25.4686245Z [ 2025-04-25T04:17:25.4686726Z T=uint8_t, 2025-04-25T04:17:25.4687044Z accT=int32_t, 2025-04-25T04:17:25.4687352Z inpType=uint8_t 2025-04-25T04:17:25.4687734Z ] 2025-04-25T04:17:25.4689190Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4690786Z with 2025-04-25T04:17:25.4691091Z [ 2025-04-25T04:17:25.4691396Z T=uint8_t, 2025-04-25T04:17:25.4691770Z accT=int32_t 2025-04-25T04:17:25.4692141Z ] 2025-04-25T04:17:25.4694411Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4696831Z with 2025-04-25T04:17:25.4697161Z [ 2025-04-25T04:17:25.4697452Z T=uint8_t, 2025-04-25T04:17:25.4697815Z accT=int32_t 2025-04-25T04:17:25.4698186Z ] 2025-04-25T04:17:25.4699719Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4701356Z with 2025-04-25T04:17:25.4701675Z [ 2025-04-25T04:17:25.4701970Z T=uint8_t, 2025-04-25T04:17:25.4702344Z accT=int32_t 2025-04-25T04:17:25.4702720Z ] 2025-04-25T04:17:25.4705059Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4707516Z with 2025-04-25T04:17:25.4707829Z [ 2025-04-25T04:17:25.4708138Z T=uint8_t, 2025-04-25T04:17:25.4708503Z accT=int16_t, 2025-04-25T04:17:25.4708916Z inpType=uint8_t 2025-04-25T04:17:25.4709304Z ] 2025-04-25T04:17:25.4710768Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4712378Z with 2025-04-25T04:17:25.4713063Z [ 2025-04-25T04:17:25.4713386Z T=uint8_t, 2025-04-25T04:17:25.4713753Z accT=int16_t 2025-04-25T04:17:25.4714128Z ] 2025-04-25T04:17:25.4716392Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4719008Z with 2025-04-25T04:17:25.4719329Z [ 2025-04-25T04:17:25.4719637Z T=uint8_t, 2025-04-25T04:17:25.4720017Z accT=int16_t 2025-04-25T04:17:25.4720379Z ] 2025-04-25T04:17:25.4721880Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4723453Z with 2025-04-25T04:17:25.4723783Z [ 2025-04-25T04:17:25.4724091Z T=uint8_t, 2025-04-25T04:17:25.4724482Z accT=int16_t 2025-04-25T04:17:25.4724874Z ] 2025-04-25T04:17:25.4727333Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4729832Z with 2025-04-25T04:17:25.4730146Z [ 2025-04-25T04:17:25.4730465Z T=uint8_t, 2025-04-25T04:17:25.4730839Z accT=int32_t, 2025-04-25T04:17:25.4731265Z inpType=uint8_t 2025-04-25T04:17:25.4731693Z ] 2025-04-25T04:17:25.4733229Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4734655Z with 2025-04-25T04:17:25.4734939Z [ 2025-04-25T04:17:25.4735239Z T=uint8_t, 2025-04-25T04:17:25.4735598Z accT=int32_t 2025-04-25T04:17:25.4735973Z ] 2025-04-25T04:17:25.4738217Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4740791Z with 2025-04-25T04:17:25.4741117Z [ 2025-04-25T04:17:25.4741418Z T=uint8_t, 2025-04-25T04:17:25.4741774Z accT=int32_t 2025-04-25T04:17:25.4742134Z ] 2025-04-25T04:17:25.4743677Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4745335Z with 2025-04-25T04:17:25.4745679Z [ 2025-04-25T04:17:25.4746017Z T=uint8_t, 2025-04-25T04:17:25.4746401Z accT=int32_t 2025-04-25T04:17:25.4746802Z ] 2025-04-25T04:17:25.4749300Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4751944Z with 2025-04-25T04:17:25.4752294Z [ 2025-04-25T04:17:25.4752723Z T=uint8_t, 2025-04-25T04:17:25.4753129Z accT=int16_t, 2025-04-25T04:17:25.4753582Z inpType=uint8_t 2025-04-25T04:17:25.4754016Z ] 2025-04-25T04:17:25.4755846Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4757578Z with 2025-04-25T04:17:25.4757919Z [ 2025-04-25T04:17:25.4758270Z T=uint8_t, 2025-04-25T04:17:25.4758677Z accT=int16_t 2025-04-25T04:17:25.4759096Z ] 2025-04-25T04:17:25.4761513Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4764245Z with 2025-04-25T04:17:25.4764575Z [ 2025-04-25T04:17:25.4764900Z T=uint8_t, 2025-04-25T04:17:25.4765283Z accT=int16_t 2025-04-25T04:17:25.4765650Z ] 2025-04-25T04:17:25.4767176Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4768860Z with 2025-04-25T04:17:25.4769172Z [ 2025-04-25T04:17:25.4769485Z T=uint8_t, 2025-04-25T04:17:25.4769876Z accT=int16_t 2025-04-25T04:17:25.4770303Z ] 2025-04-25T04:17:25.4772795Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4775500Z with 2025-04-25T04:17:25.4775845Z [ 2025-04-25T04:17:25.4776189Z T=uint8_t, 2025-04-25T04:17:25.4776592Z accT=int32_t, 2025-04-25T04:17:25.4777326Z inpType=uint8_t 2025-04-25T04:17:25.4777696Z ] 2025-04-25T04:17:25.4778548Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4779453Z with 2025-04-25T04:17:25.4779639Z [ 2025-04-25T04:17:25.4779838Z T=uint8_t, 2025-04-25T04:17:25.4780050Z accT=int32_t 2025-04-25T04:17:25.4780268Z ] 2025-04-25T04:17:25.4781531Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4783082Z with 2025-04-25T04:17:25.4783394Z [ 2025-04-25T04:17:25.4783699Z T=uint8_t, 2025-04-25T04:17:25.4784087Z accT=int32_t 2025-04-25T04:17:25.4784477Z ] 2025-04-25T04:17:25.4785691Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4787367Z with 2025-04-25T04:17:25.4787694Z [ 2025-04-25T04:17:25.4788010Z T=uint8_t, 2025-04-25T04:17:25.4788386Z accT=int32_t 2025-04-25T04:17:25.4788744Z ] 2025-04-25T04:17:25.4790139Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4791554Z with 2025-04-25T04:17:25.4791752Z [ 2025-04-25T04:17:25.4791933Z T=uint8_t, 2025-04-25T04:17:25.4792168Z accT=int16_t, 2025-04-25T04:17:25.4792674Z inpType=uint8_t 2025-04-25T04:17:25.4792903Z ] 2025-04-25T04:17:25.4793752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4794584Z with 2025-04-25T04:17:25.4794752Z [ 2025-04-25T04:17:25.4794921Z T=uint8_t, 2025-04-25T04:17:25.4795229Z accT=int16_t 2025-04-25T04:17:25.4795431Z ] 2025-04-25T04:17:25.4796657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4797966Z with 2025-04-25T04:17:25.4798137Z [ 2025-04-25T04:17:25.4798337Z T=uint8_t, 2025-04-25T04:17:25.4798539Z accT=int16_t 2025-04-25T04:17:25.4798731Z ] 2025-04-25T04:17:25.4799506Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4800407Z with 2025-04-25T04:17:25.4800570Z [ 2025-04-25T04:17:25.4800774Z T=uint8_t, 2025-04-25T04:17:25.4800975Z accT=int16_t 2025-04-25T04:17:25.4801186Z ] 2025-04-25T04:17:25.4802420Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4803907Z with 2025-04-25T04:17:25.4804086Z [ 2025-04-25T04:17:25.4804291Z T=uint8_t, 2025-04-25T04:17:25.4804492Z accT=int32_t, 2025-04-25T04:17:25.4804707Z inpType=uint8_t 2025-04-25T04:17:25.4804927Z ] 2025-04-25T04:17:25.4805717Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4806544Z with 2025-04-25T04:17:25.4806722Z [ 2025-04-25T04:17:25.4806896Z T=uint8_t, 2025-04-25T04:17:25.4807094Z accT=int32_t 2025-04-25T04:17:25.4807297Z ] 2025-04-25T04:17:25.4808549Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4809859Z with 2025-04-25T04:17:25.4810063Z [ 2025-04-25T04:17:25.4810226Z T=uint8_t, 2025-04-25T04:17:25.4810431Z accT=int32_t 2025-04-25T04:17:25.4810624Z ] 2025-04-25T04:17:25.4811404Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4812267Z with 2025-04-25T04:17:25.4812431Z [ 2025-04-25T04:17:25.4812603Z T=uint8_t, 2025-04-25T04:17:25.4812805Z accT=int32_t 2025-04-25T04:17:25.4813010Z ] 2025-04-25T04:17:25.4814353Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4815799Z with 2025-04-25T04:17:25.4816013Z [ 2025-04-25T04:17:25.4816176Z T=uint8_t, 2025-04-25T04:17:25.4816406Z accT=int16_t, 2025-04-25T04:17:25.4816623Z inpType=uint8_t 2025-04-25T04:17:25.4816840Z ] 2025-04-25T04:17:25.4817623Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4818550Z with 2025-04-25T04:17:25.4818714Z [ 2025-04-25T04:17:25.4818883Z T=uint8_t, 2025-04-25T04:17:25.4819083Z accT=int16_t 2025-04-25T04:17:25.4819276Z ] 2025-04-25T04:17:25.4820443Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4821678Z with 2025-04-25T04:17:25.4821851Z [ 2025-04-25T04:17:25.4822009Z T=uint8_t, 2025-04-25T04:17:25.4822219Z accT=int16_t 2025-04-25T04:17:25.4822418Z ] 2025-04-25T04:17:25.4834892Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4835776Z with 2025-04-25T04:17:25.4835961Z [ 2025-04-25T04:17:25.4836130Z T=uint8_t, 2025-04-25T04:17:25.4836340Z accT=int16_t 2025-04-25T04:17:25.4836551Z ] 2025-04-25T04:17:25.4837808Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4839084Z with 2025-04-25T04:17:25.4839259Z [ 2025-04-25T04:17:25.4839423Z T=uint8_t, 2025-04-25T04:17:25.4839632Z accT=int32_t, 2025-04-25T04:17:25.4839850Z inpType=uint8_t 2025-04-25T04:17:25.4840113Z ] 2025-04-25T04:17:25.4840941Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4842163Z with 2025-04-25T04:17:25.4842387Z [ 2025-04-25T04:17:25.4842675Z T=uint8_t, 2025-04-25T04:17:25.4842959Z accT=int32_t 2025-04-25T04:17:25.4843204Z ] 2025-04-25T04:17:25.4844512Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4845810Z with 2025-04-25T04:17:25.4845978Z [ 2025-04-25T04:17:25.4846151Z T=uint8_t, 2025-04-25T04:17:25.4846345Z accT=int32_t 2025-04-25T04:17:25.4846546Z ] 2025-04-25T04:17:25.4847318Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4848282Z with 2025-04-25T04:17:25.4848460Z [ 2025-04-25T04:17:25.4848616Z T=uint8_t, 2025-04-25T04:17:25.4848817Z accT=int32_t 2025-04-25T04:17:25.4849007Z ] 2025-04-25T04:17:25.4850348Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): 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-04-25T04:17:25.4851752Z with 2025-04-25T04:17:25.4851934Z [ 2025-04-25T04:17:25.4852103Z T=uint8_t, 2025-04-25T04:17:25.4852359Z accT=int16_t, 2025-04-25T04:17:25.4852619Z inpType=uint8_t 2025-04-25T04:17:25.4853009Z ] 2025-04-25T04:17:25.4853992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4854958Z with 2025-04-25T04:17:25.4855129Z [ 2025-04-25T04:17:25.4855295Z T=uint8_t, 2025-04-25T04:17:25.4855513Z accT=int16_t 2025-04-25T04:17:25.4855707Z ] 2025-04-25T04:17:25.4856902Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(31): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4858270Z with 2025-04-25T04:17:25.4858441Z [ 2025-04-25T04:17:25.4858613Z T=uint8_t, 2025-04-25T04:17:25.4858813Z accT=int16_t 2025-04-25T04:17:25.4859021Z ] 2025-04-25T04:17:25.4859801Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4860664Z with 2025-04-25T04:17:25.4860836Z [ 2025-04-25T04:17:25.4861003Z T=uint8_t, 2025-04-25T04:17:25.4861580Z accT=int16_t 2025-04-25T04:17:25.4861890Z ] 2025-04-25T04:17:25.4863432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4866682Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4870229Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4873145Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4875340Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4877439Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4878965Z [1285/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-04-25T04:17:25.4880533Z [1286/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-04-25T04:17:25.4882105Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4883357Z with 2025-04-25T04:17:25.4883668Z [ 2025-04-25T04:17:25.4883922Z T=uint8_t, 2025-04-25T04:17:25.4884234Z accT=int32_t, 2025-04-25T04:17:25.4884563Z inpType=uint8_t 2025-04-25T04:17:25.4884880Z ] 2025-04-25T04:17:25.4885959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4887159Z with 2025-04-25T04:17:25.4887450Z [ 2025-04-25T04:17:25.4887725Z T=uint8_t, 2025-04-25T04:17:25.4888056Z accT=int32_t 2025-04-25T04:17:25.4888382Z ] 2025-04-25T04:17:25.4890121Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4891929Z with 2025-04-25T04:17:25.4892212Z [ 2025-04-25T04:17:25.4892501Z T=uint8_t, 2025-04-25T04:17:25.4892823Z accT=int32_t 2025-04-25T04:17:25.4893148Z ] 2025-04-25T04:17:25.4894267Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4895492Z with 2025-04-25T04:17:25.4895784Z [ 2025-04-25T04:17:25.4896050Z T=uint8_t, 2025-04-25T04:17:25.4896387Z accT=int32_t 2025-04-25T04:17:25.4896715Z ] 2025-04-25T04:17:25.4898457Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4900335Z with 2025-04-25T04:17:25.4900638Z [ 2025-04-25T04:17:25.4900927Z T=uint8_t, 2025-04-25T04:17:25.4901261Z accT=int16_t, 2025-04-25T04:17:25.4901626Z inpType=uint8_t 2025-04-25T04:17:25.4901985Z ] 2025-04-25T04:17:25.4903110Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4904343Z with 2025-04-25T04:17:25.4904646Z [ 2025-04-25T04:17:25.4904927Z T=uint8_t, 2025-04-25T04:17:25.4905250Z accT=int16_t 2025-04-25T04:17:25.4905581Z ] 2025-04-25T04:17:25.4907352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4909206Z with 2025-04-25T04:17:25.4909500Z [ 2025-04-25T04:17:25.4909786Z T=uint8_t, 2025-04-25T04:17:25.4910126Z accT=int16_t 2025-04-25T04:17:25.4910472Z ] 2025-04-25T04:17:25.4911631Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4913177Z with 2025-04-25T04:17:25.4913498Z [ 2025-04-25T04:17:25.4913787Z T=uint8_t, 2025-04-25T04:17:25.4914136Z accT=int16_t 2025-04-25T04:17:25.4914465Z ] 2025-04-25T04:17:25.4916224Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(28): 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-04-25T04:17:25.4918224Z with 2025-04-25T04:17:25.4918515Z [ 2025-04-25T04:17:25.4918816Z T=uint8_t, 2025-04-25T04:17:25.4919155Z accT=int32_t, 2025-04-25T04:17:25.4919524Z inpType=uint8_t 2025-04-25T04:17:25.4919860Z ] 2025-04-25T04:17:25.4920978Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4922171Z with 2025-04-25T04:17:25.4922467Z [ 2025-04-25T04:17:25.4922749Z T=uint8_t, 2025-04-25T04:17:25.4923093Z accT=int32_t 2025-04-25T04:17:25.4923447Z ] 2025-04-25T04:17:25.4925144Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(28): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4926951Z with 2025-04-25T04:17:25.4927242Z [ 2025-04-25T04:17:25.4927535Z T=uint8_t, 2025-04-25T04:17:25.4927878Z accT=int32_t 2025-04-25T04:17:25.4928227Z ] 2025-04-25T04:17:25.4929400Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4930665Z with 2025-04-25T04:17:25.4931106Z [ 2025-04-25T04:17:25.4931411Z T=uint8_t, 2025-04-25T04:17:25.4931769Z accT=int32_t 2025-04-25T04:17:25.4932115Z ] 2025-04-25T04:17:25.4933883Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(28): 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-04-25T04:17:25.4935752Z with 2025-04-25T04:17:25.4936044Z [ 2025-04-25T04:17:25.4936346Z T=uint8_t, 2025-04-25T04:17:25.4936675Z accT=int16_t, 2025-04-25T04:17:25.4937054Z inpType=uint8_t 2025-04-25T04:17:25.4937403Z ] 2025-04-25T04:17:25.4938543Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4939781Z with 2025-04-25T04:17:25.4940083Z [ 2025-04-25T04:17:25.4940370Z T=uint8_t, 2025-04-25T04:17:25.4940728Z accT=int16_t 2025-04-25T04:17:25.4941076Z ] 2025-04-25T04:17:25.4942771Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(28): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4944576Z with 2025-04-25T04:17:25.4944975Z [ 2025-04-25T04:17:25.4945280Z T=uint8_t, 2025-04-25T04:17:25.4945632Z accT=int16_t 2025-04-25T04:17:25.4945982Z ] 2025-04-25T04:17:25.4947333Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4948612Z with 2025-04-25T04:17:25.4948922Z [ 2025-04-25T04:17:25.4949210Z T=uint8_t, 2025-04-25T04:17:25.4949576Z accT=int16_t 2025-04-25T04:17:25.4949913Z ] 2025-04-25T04:17:25.4951566Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4954790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.4956932Z [1287/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-04-25T04:17:25.4959417Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.4961417Z with 2025-04-25T04:17:25.4961717Z [ 2025-04-25T04:17:25.4962015Z T=uint8_t, 2025-04-25T04:17:25.4962369Z accT=int32_t, 2025-04-25T04:17:25.4962771Z inpType=uint8_t 2025-04-25T04:17:25.4963131Z ] 2025-04-25T04:17:25.4964353Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4965695Z with 2025-04-25T04:17:25.4966006Z [ 2025-04-25T04:17:25.4966291Z T=uint8_t, 2025-04-25T04:17:25.4966639Z accT=int32_t 2025-04-25T04:17:25.4966993Z ] 2025-04-25T04:17:25.4968851Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.4970825Z with 2025-04-25T04:17:25.4971051Z [ 2025-04-25T04:17:25.4971257Z T=uint8_t, 2025-04-25T04:17:25.4971460Z accT=int32_t 2025-04-25T04:17:25.4971669Z ] 2025-04-25T04:17:25.4972476Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4973352Z with 2025-04-25T04:17:25.4973523Z [ 2025-04-25T04:17:25.4973685Z T=uint8_t, 2025-04-25T04:17:25.4973889Z accT=int32_t 2025-04-25T04:17:25.4974082Z ] 2025-04-25T04:17:25.4975373Z 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-04-25T04:17:25.4976722Z with 2025-04-25T04:17:25.4976886Z [ 2025-04-25T04:17:25.4977057Z T=uint8_t, 2025-04-25T04:17:25.4977251Z accT=int32_t, 2025-04-25T04:17:25.4977477Z inpType=uint8_t 2025-04-25T04:17:25.4977687Z ] 2025-04-25T04:17:25.4978591Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.4979465Z with 2025-04-25T04:17:25.4979631Z [ 2025-04-25T04:17:25.4979809Z T=uint8_t, 2025-04-25T04:17:25.4980012Z accT=int32_t 2025-04-25T04:17:25.4980226Z ] 2025-04-25T04:17:25.4981770Z 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-04-25T04:17:25.4983310Z with 2025-04-25T04:17:25.4983492Z [ 2025-04-25T04:17:25.4983669Z T=uint8_t, 2025-04-25T04:17:25.4983873Z accT=int32_t 2025-04-25T04:17:25.4984079Z ] 2025-04-25T04:17:25.4985221Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.4986724Z with 2025-04-25T04:17:25.4987019Z [ 2025-04-25T04:17:25.4987211Z T=uint8_t, 2025-04-25T04:17:25.4987416Z accT=int32_t 2025-04-25T04:17:25.4987677Z ] 2025-04-25T04:17:25.5383157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.5384782Z [1288/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-04-25T04:17:25.5386592Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.5388014Z with 2025-04-25T04:17:25.5388203Z [ 2025-04-25T04:17:25.5388368Z T=uint8_t, 2025-04-25T04:17:25.5388585Z accT=int32_t, 2025-04-25T04:17:25.5388807Z inpType=uint8_t 2025-04-25T04:17:25.5389028Z ] 2025-04-25T04:17:25.5389841Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.5390714Z with 2025-04-25T04:17:25.5390897Z [ 2025-04-25T04:17:25.5391065Z T=uint8_t, 2025-04-25T04:17:25.5391282Z accT=int32_t 2025-04-25T04:17:25.5391481Z ] 2025-04-25T04:17:25.5392802Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5394223Z with 2025-04-25T04:17:25.5394438Z [ 2025-04-25T04:17:25.5394727Z T=uint8_t, 2025-04-25T04:17:25.5395715Z accT=int32_t 2025-04-25T04:17:25.5396350Z ] 2025-04-25T04:17:25.5398374Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.5400325Z with 2025-04-25T04:17:25.5400750Z [ 2025-04-25T04:17:25.5401348Z T=uint8_t, 2025-04-25T04:17:25.5401678Z accT=int32_t 2025-04-25T04:17:25.5401956Z ] 2025-04-25T04:17:25.5403660Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.5405127Z with 2025-04-25T04:17:25.5405342Z [ 2025-04-25T04:17:25.5405530Z T=uint8_t, 2025-04-25T04:17:25.5405775Z accT=int16_t, 2025-04-25T04:17:25.5406157Z inpType=uint8_t 2025-04-25T04:17:25.5406375Z ] 2025-04-25T04:17:25.5407285Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.5408344Z with 2025-04-25T04:17:25.5408517Z [ 2025-04-25T04:17:25.5408680Z T=uint8_t, 2025-04-25T04:17:25.5408912Z accT=int16_t 2025-04-25T04:17:25.5409166Z ] 2025-04-25T04:17:25.5410707Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5412195Z with 2025-04-25T04:17:25.5412409Z [ 2025-04-25T04:17:25.5412615Z T=uint8_t, 2025-04-25T04:17:25.5412823Z accT=int16_t 2025-04-25T04:17:25.5413041Z ] 2025-04-25T04:17:25.5413865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.5415500Z with 2025-04-25T04:17:25.5415834Z [ 2025-04-25T04:17:25.5416131Z T=uint8_t, 2025-04-25T04:17:25.5416487Z accT=int16_t 2025-04-25T04:17:25.5416832Z ] 2025-04-25T04:17:25.5419206Z 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-04-25T04:17:25.5421701Z with 2025-04-25T04:17:25.5421993Z [ 2025-04-25T04:17:25.5422297Z T=uint8_t, 2025-04-25T04:17:25.5422662Z accT=int32_t, 2025-04-25T04:17:25.5423051Z inpType=uint8_t 2025-04-25T04:17:25.5423424Z ] 2025-04-25T04:17:25.5424799Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.5426334Z with 2025-04-25T04:17:25.5426649Z [ 2025-04-25T04:17:25.5426955Z T=uint8_t, 2025-04-25T04:17:25.5427328Z accT=int32_t 2025-04-25T04:17:25.5427693Z ] 2025-04-25T04:17:25.5429986Z 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-04-25T04:17:25.5432498Z with 2025-04-25T04:17:25.5432811Z [ 2025-04-25T04:17:25.5433120Z T=uint8_t, 2025-04-25T04:17:25.5433481Z accT=int32_t 2025-04-25T04:17:25.5433852Z ] 2025-04-25T04:17:25.5435359Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.5436945Z with 2025-04-25T04:17:25.5437260Z [ 2025-04-25T04:17:25.5437755Z T=uint8_t, 2025-04-25T04:17:25.5438133Z accT=int32_t 2025-04-25T04:17:25.5438501Z ] 2025-04-25T04:17:25.5440857Z 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-04-25T04:17:25.5443518Z with 2025-04-25T04:17:25.5443834Z [ 2025-04-25T04:17:25.5444148Z T=uint8_t, 2025-04-25T04:17:25.5444518Z accT=int16_t, 2025-04-25T04:17:25.5444918Z inpType=uint8_t 2025-04-25T04:17:25.5445309Z ] 2025-04-25T04:17:25.5446777Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.5448382Z with 2025-04-25T04:17:25.5448700Z [ 2025-04-25T04:17:25.5449012Z T=uint8_t, 2025-04-25T04:17:25.5449381Z accT=int16_t 2025-04-25T04:17:25.5449756Z ] 2025-04-25T04:17:25.5452099Z 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-04-25T04:17:25.5454598Z with 2025-04-25T04:17:25.5454906Z [ 2025-04-25T04:17:25.5455223Z T=uint8_t, 2025-04-25T04:17:25.5455582Z accT=int16_t 2025-04-25T04:17:25.5455964Z ] 2025-04-25T04:17:25.5457497Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.5459163Z with 2025-04-25T04:17:25.5459481Z [ 2025-04-25T04:17:25.5459780Z T=uint8_t, 2025-04-25T04:17:25.5460157Z accT=int16_t 2025-04-25T04:17:25.5460525Z ] 2025-04-25T04:17:25.5462642Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.5466661Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.5469471Z [1289/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-04-25T04:17:25.5472157Z 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-04-25T04:17:25.5475323Z 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-04-25T04:17:25.5478582Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5482256Z 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-04-25T04:17:25.5484757Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5486569Z 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-04-25T04:17:25.5490210Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5495215Z 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-04-25T04:17:25.5497129Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5498922Z 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-04-25T04:17:25.5500554Z 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-04-25T04:17:25.5502148Z 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-04-25T04:17:25.5503836Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5505684Z 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-04-25T04:17:25.5507881Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5510131Z 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-04-25T04:17:25.5512216Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5514418Z 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-04-25T04:17:25.5516203Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5518116Z 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-04-25T04:17:25.5519881Z 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-04-25T04:17:25.5521564Z 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-04-25T04:17:25.5523324Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5525040Z 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-04-25T04:17:25.5526818Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5528430Z 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-04-25T04:17:25.5530134Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5531747Z 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-04-25T04:17:25.5533558Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5535318Z 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-04-25T04:17:25.5536966Z 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-04-25T04:17:25.5538713Z 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-04-25T04:17:25.5540742Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5543746Z 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-04-25T04:17:25.5546981Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5550091Z 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-04-25T04:17:25.5553210Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5555151Z 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-04-25T04:17:25.5557003Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5559163Z 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-04-25T04:17:25.5561289Z 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-04-25T04:17:25.5565021Z 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-04-25T04:17:25.5568134Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5571320Z 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-04-25T04:17:25.5574865Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5578486Z 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-04-25T04:17:25.5581557Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5584181Z 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-04-25T04:17:25.5586070Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5588266Z 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-04-25T04:17:25.5590082Z 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-04-25T04:17:25.5591806Z 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-04-25T04:17:25.5594570Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5596569Z 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-04-25T04:17:25.5599242Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5601931Z 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-04-25T04:17:25.5605034Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5608218Z 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-04-25T04:17:25.5611458Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5613434Z 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-04-25T04:17:25.5614514Z [1290/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-04-25T04:17:25.5696390Z [1291/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-04-25T04:17:25.5699128Z 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-04-25T04:17:25.5702693Z 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-04-25T04:17:25.5705904Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5709534Z 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-04-25T04:17:25.5712875Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5716096Z 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-04-25T04:17:25.5719397Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5722560Z 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-04-25T04:17:25.5725689Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5729170Z 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-04-25T04:17:25.5732150Z 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-04-25T04:17:25.5734509Z 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-04-25T04:17:25.5737907Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5741519Z 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-04-25T04:17:25.5743630Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5745355Z 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-04-25T04:17:25.5747373Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5749494Z 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-04-25T04:17:25.5753525Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5757260Z 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-04-25T04:17:25.5759782Z 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-04-25T04:17:25.5762869Z 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-04-25T04:17:25.5766158Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5769518Z 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-04-25T04:17:25.5772803Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5775766Z 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-04-25T04:17:25.5778609Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5782018Z 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-04-25T04:17:25.5785331Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5788765Z 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-04-25T04:17:25.5791916Z 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-04-25T04:17:25.5795255Z 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-04-25T04:17:25.5798729Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5802206Z 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-04-25T04:17:25.5805524Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5808651Z 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-04-25T04:17:25.5812286Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5815440Z 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-04-25T04:17:25.5818623Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5821969Z 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-04-25T04:17:25.5825338Z 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-04-25T04:17:25.5828644Z 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-04-25T04:17:25.5831852Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5835050Z 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-04-25T04:17:25.5837979Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5841365Z 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-04-25T04:17:25.5844230Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5846179Z 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-04-25T04:17:25.5848478Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5852084Z 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-04-25T04:17:25.5855507Z 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-04-25T04:17:25.5860537Z 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-04-25T04:17:25.5863753Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5866945Z 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-04-25T04:17:25.5870044Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5873164Z 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-04-25T04:17:25.5876235Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5879211Z 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-04-25T04:17:25.5882363Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5885990Z 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-04-25T04:17:25.5889479Z 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-04-25T04:17:25.5891508Z 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-04-25T04:17:25.5894887Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5898449Z 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-04-25T04:17:25.5902254Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5905747Z 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-04-25T04:17:25.5909555Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5913924Z 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-04-25T04:17:25.5918021Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5921443Z 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-04-25T04:17:25.5923559Z 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-04-25T04:17:25.5925410Z 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-04-25T04:17:25.5927513Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5929623Z 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-04-25T04:17:25.5931534Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5933393Z 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-04-25T04:17:25.5935542Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5937418Z 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-04-25T04:17:25.5940735Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5944076Z 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-04-25T04:17:25.5947189Z 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-04-25T04:17:25.5950353Z 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-04-25T04:17:25.5953692Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5956927Z 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-04-25T04:17:25.5959766Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5961605Z 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-04-25T04:17:25.5963329Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5965121Z 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-04-25T04:17:25.5968368Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5971884Z 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-04-25T04:17:25.5974684Z 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-04-25T04:17:25.5976652Z 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-04-25T04:17:25.5978632Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5980505Z 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-04-25T04:17:25.5983187Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5985440Z 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-04-25T04:17:25.5988567Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5991715Z 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-04-25T04:17:25.5995498Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.5999222Z 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-04-25T04:17:25.6002548Z 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-04-25T04:17:25.6005716Z 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-04-25T04:17:25.6007619Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6009839Z 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-04-25T04:17:25.6011684Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6013603Z 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-04-25T04:17:25.6016462Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6018282Z 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-04-25T04:17:25.6021196Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6023640Z 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-04-25T04:17:25.6025811Z 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-04-25T04:17:25.6027751Z 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-04-25T04:17:25.6029596Z 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_9::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6031604Z 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-04-25T04:17:25.6035248Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6038705Z 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-04-25T04:17:25.6042141Z 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_9::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6044189Z 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-04-25T04:17:25.6046314Z 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_9::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6980457Z 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-04-25T04:17:25.6982880Z [1292/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-04-25T04:17:25.6985457Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.6987583Z with 2025-04-25T04:17:25.6987929Z [ 2025-04-25T04:17:25.6988237Z T=int8_t, 2025-04-25T04:17:25.6988555Z accT=int32_t, 2025-04-25T04:17:25.6988892Z inpType=int8_t 2025-04-25T04:17:25.6989219Z ] 2025-04-25T04:17:25.6990430Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.6991650Z with 2025-04-25T04:17:25.6991899Z [ 2025-04-25T04:17:25.6992103Z T=int8_t, 2025-04-25T04:17:25.6992456Z accT=int32_t 2025-04-25T04:17:25.6992717Z ] 2025-04-25T04:17:25.6994140Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.6996905Z with 2025-04-25T04:17:25.6997220Z [ 2025-04-25T04:17:25.6997535Z T=int8_t, 2025-04-25T04:17:25.6997917Z accT=int32_t 2025-04-25T04:17:25.6998294Z ] 2025-04-25T04:17:25.6999757Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.7001298Z with 2025-04-25T04:17:25.7001608Z [ 2025-04-25T04:17:25.7001906Z T=int8_t, 2025-04-25T04:17:25.7002271Z accT=int32_t 2025-04-25T04:17:25.7002638Z ] 2025-04-25T04:17:25.7043350Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7045931Z [1293/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-04-25T04:17:25.7048766Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.7051135Z with 2025-04-25T04:17:25.7051435Z [ 2025-04-25T04:17:25.7051722Z T=int8_t, 2025-04-25T04:17:25.7052041Z accT=int32_t, 2025-04-25T04:17:25.7052472Z inpType=int8_t 2025-04-25T04:17:25.7052862Z ] 2025-04-25T04:17:25.7054175Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.7055662Z with 2025-04-25T04:17:25.7055958Z [ 2025-04-25T04:17:25.7056248Z T=int8_t, 2025-04-25T04:17:25.7056582Z accT=int32_t 2025-04-25T04:17:25.7056934Z ] 2025-04-25T04:17:25.7059118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.7061426Z with 2025-04-25T04:17:25.7061721Z [ 2025-04-25T04:17:25.7062022Z T=int8_t, 2025-04-25T04:17:25.7062371Z accT=int32_t 2025-04-25T04:17:25.7062723Z ] 2025-04-25T04:17:25.7064058Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.7065586Z with 2025-04-25T04:17:25.7065882Z [ 2025-04-25T04:17:25.7066170Z T=int8_t, 2025-04-25T04:17:25.7066510Z accT=int32_t 2025-04-25T04:17:25.7066851Z ] 2025-04-25T04:17:25.7069246Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): 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-04-25T04:17:25.7071594Z with 2025-04-25T04:17:25.7071892Z [ 2025-04-25T04:17:25.7072183Z T=int8_t, 2025-04-25T04:17:25.7072573Z accT=int16_t, 2025-04-25T04:17:25.7072966Z inpType=int8_t 2025-04-25T04:17:25.7073330Z ] 2025-04-25T04:17:25.7074680Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.7076322Z with 2025-04-25T04:17:25.7076666Z [ 2025-04-25T04:17:25.7076961Z T=int8_t, 2025-04-25T04:17:25.7077284Z accT=int16_t 2025-04-25T04:17:25.7077652Z ] 2025-04-25T04:17:25.7079818Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(312): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-04-25T04:17:25.7082096Z with 2025-04-25T04:17:25.7082414Z [ 2025-04-25T04:17:25.7082711Z T=int8_t, 2025-04-25T04:17:25.7083034Z accT=int16_t 2025-04-25T04:17:25.7083371Z ] 2025-04-25T04:17:25.7084736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.7086229Z with 2025-04-25T04:17:25.7086531Z [ 2025-04-25T04:17:25.7086825Z T=int8_t, 2025-04-25T04:17:25.7087175Z accT=int16_t 2025-04-25T04:17:25.7087527Z ] 2025-04-25T04:17:25.7089413Z 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-04-25T04:17:25.7090829Z with 2025-04-25T04:17:25.7091004Z [ 2025-04-25T04:17:25.7091184Z T=int8_t, 2025-04-25T04:17:25.7091398Z accT=int32_t, 2025-04-25T04:17:25.7091634Z inpType=int8_t 2025-04-25T04:17:25.7091868Z ] 2025-04-25T04:17:25.7093413Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.7095210Z with 2025-04-25T04:17:25.7095535Z [ 2025-04-25T04:17:25.7095845Z T=int8_t, 2025-04-25T04:17:25.7096208Z accT=int32_t 2025-04-25T04:17:25.7096584Z ] 2025-04-25T04:17:25.7098793Z 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-04-25T04:17:25.7101201Z with 2025-04-25T04:17:25.7101518Z [ 2025-04-25T04:17:25.7101833Z T=int8_t, 2025-04-25T04:17:25.7102195Z accT=int32_t 2025-04-25T04:17:25.7102567Z ] 2025-04-25T04:17:25.7104013Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.7105700Z with 2025-04-25T04:17:25.7106024Z [ 2025-04-25T04:17:25.7106316Z T=int8_t, 2025-04-25T04:17:25.7106683Z accT=int32_t 2025-04-25T04:17:25.7107051Z ] 2025-04-25T04:17:25.7109452Z 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-04-25T04:17:25.7111963Z with 2025-04-25T04:17:25.7112527Z [ 2025-04-25T04:17:25.7112784Z T=int8_t, 2025-04-25T04:17:25.7113005Z accT=int16_t, 2025-04-25T04:17:25.7113241Z inpType=int8_t 2025-04-25T04:17:25.7113462Z ] 2025-04-25T04:17:25.7114332Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(106): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-04-25T04:17:25.7115492Z with 2025-04-25T04:17:25.7115699Z [ 2025-04-25T04:17:25.7115869Z T=int8_t, 2025-04-25T04:17:25.7116102Z accT=int16_t 2025-04-25T04:17:25.7116363Z ] 2025-04-25T04:17:25.7117599Z 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-04-25T04:17:25.7120145Z with 2025-04-25T04:17:25.7120457Z [ 2025-04-25T04:17:25.7120721Z T=int8_t, 2025-04-25T04:17:25.7121057Z accT=int16_t 2025-04-25T04:17:25.7121365Z ] 2025-04-25T04:17:25.7122615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(137): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-04-25T04:17:25.7124092Z with 2025-04-25T04:17:25.7124371Z [ 2025-04-25T04:17:25.7124660Z T=int8_t, 2025-04-25T04:17:25.7125019Z accT=int16_t 2025-04-25T04:17:25.7125377Z ] 2025-04-25T04:17:25.7339010Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7342467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7344072Z [1294/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-04-25T04:17:25.7345635Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7347891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7350240Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7352975Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7358157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7362620Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7367238Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(148) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7369958Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7373672Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7377437Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7381992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7385952Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7579106Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(157) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-04-25T04:17:25.7580553Z [1295/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-04-25T04:17:25.8339962Z [1296/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-04-25T04:17:25.9136796Z [1297/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-04-25T04:17:25.9449631Z [1298/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-04-25T04:17:25.9515931Z [1299/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-04-25T04:17:26.0384598Z [1300/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-04-25T04:17:26.0465303Z [1301/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-04-25T04:17:26.0888053Z [1302/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-04-25T04:17:26.0954489Z [1303/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-04-25T04:17:26.1125720Z [1304/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-04-25T04:17:26.1275523Z 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-04-25T04:17:26.1276849Z 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-04-25T04:17:26.1278148Z [1305/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-04-25T04:17:26.1355583Z [1306/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-04-25T04:17:26.1771274Z [1307/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-04-25T04:17:26.2290327Z [1308/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-04-25T04:17:26.2699999Z [1309/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-04-25T04:17:26.3043452Z [1310/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-04-25T04:17:26.3108169Z [1311/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-04-25T04:17:26.3263784Z [1312/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-04-25T04:17:26.3282510Z [1313/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-04-25T04:17:26.3403167Z [1314/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-04-25T04:17:26.3713601Z [1315/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-04-25T04:17:26.3908542Z [1316/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-04-25T04:17:26.4261360Z [1317/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-04-25T04:17:26.4262586Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1555): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4263815Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2037): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4265998Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2201): note: see reference to function template instantiation 'void fbgemm::FusedNBitRowwiseQuantizedSBHalfToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-04-25T04:17:26.4267772Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2041): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4269031Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2045): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4270244Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2049): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4271433Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2102): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4272724Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2107): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4273995Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2112): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4275935Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2117): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.4278110Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2170): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:17:26.5054008Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2223): note: see reference to function template instantiation 'void fbgemm::Fused8BitRowwiseQuantizedSBFloatToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-04-25T04:17:26.5055984Z [1318/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-04-25T04:17:26.5230861Z [1319/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-04-25T04:17:26.5469885Z [1320/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-04-25T04:17:26.5674613Z [1321/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-04-25T04:17:26.6004832Z [1322/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-04-25T04:17:26.6050272Z [1323/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-04-25T04:17:26.6061435Z [1324/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-04-25T04:17:26.6167664Z [1325/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-04-25T04:17:26.6745214Z [1326/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-04-25T04:17:26.7692072Z [1327/7078] Linking CXX shared library bin\asmjit.dll 2025-04-25T04:17:26.7874999Z [1328/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-04-25T04:17:26.8111273Z [1329/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-04-25T04:17:26.8282629Z [1330/7078] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-04-25T04:17:26.8647512Z [1331/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-04-25T04:17:26.9026081Z [1332/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-04-25T04:17:27.0309870Z [1333/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-04-25T04:17:27.0443886Z [1334/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-04-25T04:17:27.0522019Z [1335/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-04-25T04:17:27.0816275Z [1336/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-04-25T04:17:27.1264717Z [1337/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-04-25T04:17:27.1676895Z [1338/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-04-25T04:17:27.2842132Z [1339/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-04-25T04:17:27.2918357Z [1340/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-04-25T04:17:27.3157239Z [1341/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-04-25T04:17:27.3514768Z [1342/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-04-25T04:17:27.3657225Z [1343/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-04-25T04:17:27.4436993Z [1344/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-04-25T04:17:27.4912639Z [1345/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-04-25T04:17:27.5567098Z [1346/7078] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-04-25T04:17:27.5720751Z 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-04-25T04:17:27.5721930Z [1347/7078] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-04-25T04:17:27.6349069Z 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-04-25T04:17:27.6350737Z [1348/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-04-25T04:17:27.6359678Z [1349/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-04-25T04:17:27.6719392Z [1350/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-04-25T04:17:27.6861457Z [1351/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-04-25T04:17:27.6981980Z [1352/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-04-25T04:17:27.7291849Z [1353/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-04-25T04:17:27.7348218Z [1354/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-04-25T04:17:27.7759063Z [1355/7078] Linking CXX static library lib\onnx_proto.lib 2025-04-25T04:17:27.8372430Z [1356/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-04-25T04:17:27.8710609Z [1357/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-04-25T04:17:27.8956091Z [1358/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-04-25T04:17:27.9006580Z [1359/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-04-25T04:17:27.9065823Z [1360/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-04-25T04:17:27.9346967Z [1361/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-04-25T04:17:27.9653801Z [1362/7078] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-04-25T04:17:28.0735176Z [1363/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-04-25T04:17:28.1915330Z [1364/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-04-25T04:17:28.3020995Z [1365/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-04-25T04:17:28.3037625Z [1366/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-04-25T04:17:28.3306828Z [1367/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-04-25T04:17:28.4046735Z [1368/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-04-25T04:17:28.4929751Z [1369/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-04-25T04:17:28.6230611Z [1370/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-04-25T04:17:28.6413149Z [1371/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-04-25T04:17:28.6511383Z [1372/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-04-25T04:17:28.7166464Z [1373/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-04-25T04:17:28.7728829Z [1374/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-04-25T04:17:28.8159446Z [1375/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-04-25T04:17:28.8671977Z [1376/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-04-25T04:17:28.8804228Z [1377/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-04-25T04:17:29.0108216Z [1378/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-04-25T04:17:29.0804138Z [1379/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-04-25T04:17:29.1082966Z [1380/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-04-25T04:17:29.2072954Z [1381/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-04-25T04:17:29.2370622Z [1382/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-04-25T04:17:29.2464050Z [1383/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-04-25T04:17:29.3312554Z [1384/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-04-25T04:17:29.3596584Z [1385/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-04-25T04:17:29.4691847Z [1386/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-04-25T04:17:29.4708943Z [1387/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-04-25T04:17:29.5897079Z [1388/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-04-25T04:17:29.6243909Z [1389/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-04-25T04:17:29.6355050Z [1390/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-04-25T04:17:29.6734304Z [1391/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-04-25T04:17:29.7813276Z [1392/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-04-25T04:17:29.7835384Z [1393/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-04-25T04:17:29.9198294Z [1394/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-04-25T04:17:29.9437181Z [1395/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-04-25T04:17:29.9823421Z [1396/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-04-25T04:17:30.0265078Z [1397/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-04-25T04:17:30.0555397Z [1398/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-04-25T04:17:30.1700064Z [1399/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-04-25T04:17:30.2091395Z [1400/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-04-25T04:17:30.2430483Z [1401/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-04-25T04:17:30.3742556Z [1402/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-04-25T04:17:30.4289507Z [1403/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-04-25T04:17:30.4425998Z [1404/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-04-25T04:17:30.4591365Z [1405/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-04-25T04:17:30.4850324Z [1406/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-04-25T04:17:30.5728383Z [1407/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-04-25T04:17:30.5982438Z [1408/7078] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-04-25T04:17:30.6792330Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:17:30.6792725Z 2025-04-25T04:17:30.6792741Z 2025-04-25T04:17:30.6792914Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:17:30.6793254Z 2025-04-25T04:17:30.6793259Z 2025-04-25T04:17:30.6793264Z 2025-04-25T04:17:30.6793269Z 2025-04-25T04:17:30.6793944Z [1409/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-04-25T04:17:30.6894247Z [1410/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-04-25T04:17:30.8834836Z [1411/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-04-25T04:17:30.8932951Z [1412/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-04-25T04:17:30.9298586Z [1413/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-04-25T04:17:30.9371763Z [1414/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-04-25T04:17:30.9502878Z [1415/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-04-25T04:17:31.2894495Z [1416/7078] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-04-25T04:17:31.4829367Z [1417/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-04-25T04:17:31.5108667Z [1418/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-04-25T04:17:31.6503852Z [1419/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-04-25T04:17:31.7091458Z [1420/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-04-25T04:17:31.7107929Z [1421/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-04-25T04:17:31.7188362Z [1422/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-04-25T04:17:31.7308664Z [1423/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-04-25T04:17:31.7404091Z [1424/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-04-25T04:17:31.8528096Z [1425/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-04-25T04:17:32.0552463Z [1426/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-04-25T04:17:32.0708649Z [1427/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-04-25T04:17:32.1139797Z [1428/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-04-25T04:17:32.1587540Z [1429/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-04-25T04:17:32.1747326Z [1430/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-04-25T04:17:32.2716015Z [1431/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-04-25T04:17:32.5363470Z [1432/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-04-25T04:17:32.6057680Z [1433/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-04-25T04:17:32.6233245Z [1434/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-04-25T04:17:32.8920354Z [1435/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-04-25T04:17:32.9203502Z [1436/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-04-25T04:17:32.9355611Z [1437/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-04-25T04:17:33.0022638Z [1438/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-04-25T04:17:33.1497055Z [1439/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-04-25T04:17:33.4056131Z [1440/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-04-25T04:17:33.4144660Z [1441/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-04-25T04:17:33.5314342Z [1442/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-04-25T04:17:33.6978584Z [1443/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-04-25T04:17:33.8536297Z [1444/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-04-25T04:17:33.8767559Z [1445/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-04-25T04:17:33.9323887Z [1446/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-04-25T04:17:33.9437142Z [1447/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-04-25T04:17:34.2451350Z [1448/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-04-25T04:17:34.2653795Z [1449/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-04-25T04:17:34.4090219Z [1450/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-04-25T04:17:34.5308211Z [1451/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-04-25T04:17:34.7425486Z [1452/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-04-25T04:17:34.7519689Z [1453/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-04-25T04:17:34.8327915Z [1454/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-04-25T04:17:34.8496027Z [1455/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-04-25T04:17:35.0482482Z [1456/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-04-25T04:17:35.2307431Z [1457/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-04-25T04:17:35.2531247Z [1458/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-04-25T04:17:35.3796735Z [1459/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-04-25T04:17:35.5615758Z [1460/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-04-25T04:17:35.6044496Z [1461/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-04-25T04:17:35.6366652Z [1462/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-04-25T04:17:35.6877687Z [1463/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-04-25T04:17:35.9131142Z [1464/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-04-25T04:17:36.1217358Z [1465/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-04-25T04:17:36.1632530Z [1466/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-04-25T04:17:36.2219199Z [1467/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-04-25T04:17:36.3943041Z [1468/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-04-25T04:17:36.4018382Z [1469/7078] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-04-25T04:17:36.4451820Z Microsoft (R) Macro Assembler (x64) Version 14.29.30158.0 2025-04-25T04:17:36.4452113Z 2025-04-25T04:17:36.4452291Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:17:36.4452557Z 2025-04-25T04:17:36.4452562Z 2025-04-25T04:17:36.4452567Z 2025-04-25T04:17:36.4452947Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-04-25T04:17:36.4453432Z 2025-04-25T04:17:36.4453829Z [1470/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-04-25T04:17:36.4667527Z [1471/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-04-25T04:17:36.5098609Z [1472/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-04-25T04:17:36.6702966Z [1473/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-04-25T04:17:36.7618727Z [1474/7078] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-04-25T04:17:36.8466645Z [1475/7078] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-04-25T04:17:37.2015063Z [1476/7078] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-04-25T04:17:37.2897699Z [1477/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-04-25T04:17:37.3296999Z [1478/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-04-25T04:17:37.3833233Z [1479/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-04-25T04:17:37.5437768Z [1480/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-04-25T04:17:37.7110605Z [1481/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-04-25T04:17:37.7487608Z [1482/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-04-25T04:17:38.1280538Z [1483/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-04-25T04:17:38.1752302Z [1484/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-04-25T04:17:38.2509846Z [1485/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-04-25T04:17:38.2759939Z [1486/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-04-25T04:17:38.3624891Z [1487/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-04-25T04:17:38.5650679Z [1488/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-04-25T04:17:38.6362739Z [1489/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-04-25T04:17:38.7655387Z [1490/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-04-25T04:17:39.2346135Z [1491/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-04-25T04:17:39.2408700Z [1492/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-04-25T04:17:39.3033665Z [1493/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-04-25T04:17:39.3272821Z [1494/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-04-25T04:17:39.4463756Z [1495/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-04-25T04:17:39.4836297Z [1496/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-04-25T04:17:39.6813291Z [1497/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-04-25T04:17:39.7483349Z [1498/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-04-25T04:17:40.2015135Z [1499/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-04-25T04:17:40.2281500Z [1500/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-04-25T04:17:40.2894373Z [1501/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-04-25T04:17:40.3944688Z [1502/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-04-25T04:17:40.4069219Z [1503/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-04-25T04:17:40.5123190Z [1504/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-04-25T04:17:40.6858592Z [1505/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-04-25T04:17:40.7473686Z [1506/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-04-25T04:17:41.1419370Z [1507/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-04-25T04:17:41.1560644Z [1508/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-04-25T04:17:41.2668267Z [1509/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-04-25T04:17:41.3509946Z [1510/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-04-25T04:17:41.3721611Z [1511/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-04-25T04:17:41.5680196Z [1512/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-04-25T04:17:41.5919633Z [1513/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-04-25T04:17:41.6525993Z [1514/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-04-25T04:17:42.1076286Z [1515/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-04-25T04:17:42.1841982Z [1516/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-04-25T04:17:42.2106430Z [1517/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-04-25T04:17:42.3034314Z [1518/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-04-25T04:17:42.3120747Z [1519/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-04-25T04:17:42.4488315Z [1520/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-04-25T04:17:42.4849075Z [1521/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-04-25T04:17:42.6028186Z [1522/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-04-25T04:17:43.0302299Z [1523/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-04-25T04:17:43.0926326Z [1524/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-04-25T04:17:43.2236333Z [1525/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-04-25T04:17:43.2484938Z [1526/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-04-25T04:17:43.3909762Z [1527/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-04-25T04:17:43.4579970Z [1528/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-04-25T04:17:43.4955403Z [1529/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-04-25T04:17:43.5564004Z [1530/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-04-25T04:17:43.8606098Z [1531/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-04-25T04:17:43.9070839Z [1532/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-04-25T04:17:43.9837566Z [1533/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-04-25T04:17:44.2244545Z [1534/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-04-25T04:17:44.2327773Z [1535/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-04-25T04:17:44.2588865Z [1536/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-04-25T04:17:44.2810424Z [1537/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-04-25T04:17:44.3629735Z [1538/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-04-25T04:17:44.3697695Z [1539/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-04-25T04:17:44.3791074Z [1540/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-04-25T04:17:44.8877433Z [1541/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-04-25T04:17:45.0948843Z [1542/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-04-25T04:17:45.1025303Z [1543/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-04-25T04:17:45.1287788Z [1544/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-04-25T04:17:45.3594026Z [1545/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-04-25T04:17:45.4207980Z [1546/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-04-25T04:17:45.4305880Z [1547/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-04-25T04:17:45.5020565Z [1548/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-04-25T04:17:45.7647419Z [1549/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-04-25T04:17:45.9636858Z [1550/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-04-25T04:17:46.0837970Z [1551/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-04-25T04:17:46.1692290Z [1552/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-04-25T04:17:46.5323127Z [1553/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-04-25T04:17:46.5569605Z [1554/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-04-25T04:17:46.6048224Z [1555/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-04-25T04:17:46.6206673Z [1556/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-04-25T04:17:46.8004850Z [1557/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-04-25T04:17:46.9790755Z [1558/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-04-25T04:17:47.1568572Z [1559/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-04-25T04:17:47.2418451Z [1560/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-04-25T04:17:47.6253699Z [1561/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-04-25T04:17:47.6302799Z [1562/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-04-25T04:17:47.6703025Z [1563/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-04-25T04:17:47.6820153Z [1564/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-04-25T04:17:48.0112516Z [1565/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-04-25T04:17:48.0342036Z [1566/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-04-25T04:17:48.1957892Z [1567/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-04-25T04:17:48.4147183Z [1568/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-04-25T04:17:48.6633941Z [1569/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-04-25T04:17:48.6728556Z [1570/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-04-25T04:17:48.6974124Z [1571/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-04-25T04:17:48.7928486Z [1572/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-04-25T04:17:49.0318315Z [1573/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-04-25T04:17:49.0517741Z [1574/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-04-25T04:17:49.1721898Z [1575/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-04-25T04:17:49.5382184Z [1576/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-04-25T04:17:49.6033278Z [1577/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-04-25T04:17:49.6480445Z [1578/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-04-25T04:17:49.7039266Z [1579/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-04-25T04:17:49.7394874Z [1580/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-04-25T04:17:49.7745912Z [1581/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-04-25T04:17:49.9909819Z [1582/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-04-25T04:17:50.0637272Z [1583/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-04-25T04:17:50.1380999Z [1584/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-04-25T04:17:50.6087554Z [1585/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-04-25T04:17:50.6462478Z [1586/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-04-25T04:17:50.6960283Z [1587/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-04-25T04:17:50.7041416Z [1588/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-04-25T04:17:50.7923832Z [1589/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-04-25T04:17:50.9516411Z [1590/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-04-25T04:17:51.0170729Z [1591/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-04-25T04:17:51.0509552Z [1592/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-04-25T04:17:51.5513911Z [1593/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-04-25T04:17:51.6076020Z [1594/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-04-25T04:17:51.6471305Z [1595/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-04-25T04:17:51.6568216Z [1596/7078] 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-04-25T04:17:51.6912154Z [1597/7078] 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-04-25T04:17:51.8815279Z [1598/7078] 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-04-25T04:17:51.9176094Z [1599/7078] 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-04-25T04:17:51.9229300Z [1600/7078] 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-04-25T04:17:52.4995708Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.4996585Z [1601/7078] 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-04-25T04:17:52.5267372Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.5268297Z [1602/7078] 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-04-25T04:17:52.5999249Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.6000152Z [1603/7078] 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-04-25T04:17:52.6308422Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.6309821Z [1604/7078] 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-04-25T04:17:52.6405399Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.6406751Z [1605/7078] 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-04-25T04:17:52.7865484Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.7866339Z [1606/7078] 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-04-25T04:17:52.8124702Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.8126269Z [1607/7078] 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-04-25T04:17:52.9556910Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:52.9558407Z [1608/7078] 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-04-25T04:17:53.4178183Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:53.4179097Z [1609/7078] 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-04-25T04:17:53.4494151Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:53.4495174Z [1610/7078] 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-04-25T04:17:53.5458905Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:53.5459697Z [1611/7078] 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-04-25T04:17:53.6353052Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:53.6354706Z [1612/7078] 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-04-25T04:17:53.6419495Z [1613/7078] 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-04-25T04:17:53.7255520Z [1614/7078] 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-04-25T04:17:53.8232278Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:53.8233679Z [1615/7078] 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-04-25T04:17:53.8876546Z [1616/7078] 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-04-25T04:17:54.3374828Z [1617/7078] 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-04-25T04:17:54.4592163Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:54.4593118Z [1618/7078] 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-04-25T04:17:54.4953277Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:54.4954165Z [1619/7078] 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-04-25T04:17:54.5393328Z [1620/7078] 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-04-25T04:17:54.6603156Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:54.6604050Z [1621/7078] 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-04-25T04:17:54.6662227Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:54.6663186Z [1622/7078] 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-04-25T04:17:54.8121899Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:54.8123193Z [1623/7078] 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-04-25T04:17:54.8344438Z [1624/7078] 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-04-25T04:17:55.4119435Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:55.4120206Z [1625/7078] 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-04-25T04:17:55.4341783Z [1626/7078] 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-04-25T04:17:55.4732297Z [1627/7078] 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-04-25T04:17:55.5338602Z [1628/7078] 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-04-25T04:17:55.5421357Z [1629/7078] 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-04-25T04:17:55.6350158Z [1630/7078] 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-04-25T04:17:55.7554264Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:55.7555358Z [1631/7078] 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-04-25T04:17:55.7767676Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:55.7768999Z [1632/7078] 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-04-25T04:17:56.2686347Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:56.2687118Z [1633/7078] 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-04-25T04:17:56.4123315Z [1634/7078] 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-04-25T04:17:56.4751869Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:56.4752656Z [1635/7078] 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-04-25T04:17:56.5151741Z [1636/7078] 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-04-25T04:17:56.5972653Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:56.5973470Z [1637/7078] 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-04-25T04:17:56.6266713Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:56.6267980Z [1638/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-04-25T04:17:56.6557326Z [1639/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-04-25T04:17:56.7419371Z [1640/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-04-25T04:17:57.1101159Z [1641/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-04-25T04:17:57.4084959Z [1642/7078] 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-04-25T04:17:57.4767218Z [1643/7078] 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-04-25T04:17:57.5158946Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:57.5159814Z [1644/7078] 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-04-25T04:17:57.5918932Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:57.5919781Z [1645/7078] 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-04-25T04:17:57.6822008Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:57.6822825Z [1646/7078] 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-04-25T04:17:57.8297284Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:57.8298093Z [1647/7078] 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-04-25T04:17:57.9230391Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:57.9231266Z [1648/7078] 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-04-25T04:17:58.0163955Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.0164766Z [1649/7078] 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-04-25T04:17:58.3169052Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.3169888Z [1650/7078] 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-04-25T04:17:58.4093780Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.4094656Z [1651/7078] 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-04-25T04:17:58.5451221Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.5452051Z [1652/7078] 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-04-25T04:17:58.6438132Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.6438952Z [1653/7078] 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-04-25T04:17:58.7459004Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.7459858Z [1654/7078] 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-04-25T04:17:58.8390480Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.8391543Z [1655/7078] 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-04-25T04:17:58.8961918Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:58.8963485Z [1656/7078] 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-04-25T04:17:59.0422789Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:59.0423826Z [1657/7078] 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-04-25T04:17:59.2336222Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:59.2337115Z [1658/7078] 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-04-25T04:17:59.3210219Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:59.3211066Z [1659/7078] 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-04-25T04:17:59.4056789Z [1660/7078] 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-04-25T04:17:59.6106668Z [1661/7078] 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-04-25T04:17:59.7484075Z [1662/7078] 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-04-25T04:17:59.8516308Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:59.8517113Z [1663/7078] 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-04-25T04:17:59.9195174Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:17:59.9196634Z [1664/7078] 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-04-25T04:18:00.1017914Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.1018760Z [1665/7078] 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-04-25T04:18:00.1720800Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.1722469Z [1666/7078] 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-04-25T04:18:00.3331492Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.3332416Z [1667/7078] 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-04-25T04:18:00.4850299Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.4851223Z [1668/7078] 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-04-25T04:18:00.5979513Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.5980358Z [1669/7078] 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-04-25T04:18:00.7661884Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.7662782Z [1670/7078] 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-04-25T04:18:00.8486047Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.8487542Z [1671/7078] 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-04-25T04:18:00.9402457Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:00.9403439Z [1672/7078] 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-04-25T04:18:01.0294884Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.0296391Z [1673/7078] 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-04-25T04:18:01.2133527Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.2135116Z [1674/7078] 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-04-25T04:18:01.3052685Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.3053561Z [1675/7078] 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-04-25T04:18:01.3883022Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.3883835Z [1676/7078] 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-04-25T04:18:01.6727146Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.6728372Z [1677/7078] 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-04-25T04:18:01.8015502Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.8016292Z [1678/7078] 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-04-25T04:18:01.8033140Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.8034061Z [1679/7078] 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-04-25T04:18:01.9352172Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.9352956Z [1680/7078] 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-04-25T04:18:01.9640383Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:01.9641759Z [1681/7078] 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-04-25T04:18:02.2179931Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.2181126Z [1682/7078] 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-04-25T04:18:02.2233993Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.2235022Z [1683/7078] 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-04-25T04:18:02.3519419Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.3520250Z [1684/7078] 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-04-25T04:18:02.5320554Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.5322064Z [1685/7078] 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-04-25T04:18:02.8598590Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.8599531Z [1686/7078] 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-04-25T04:18:02.8783126Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.8784661Z [1687/7078] 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-04-25T04:18:02.8920377Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.8921252Z [1688/7078] 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-04-25T04:18:02.9510577Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:02.9512191Z [1689/7078] 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-04-25T04:18:03.0794431Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.0795707Z [1690/7078] 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-04-25T04:18:03.1976099Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.1977146Z [1691/7078] 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-04-25T04:18:03.2526133Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.2527677Z [1692/7078] 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-04-25T04:18:03.6578523Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.6580055Z [1693/7078] 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-04-25T04:18:03.8445900Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.8446746Z [1694/7078] 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-04-25T04:18:03.9323091Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.9323905Z [1695/7078] 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-04-25T04:18:03.9574252Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.9575059Z [1696/7078] 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-04-25T04:18:03.9756274Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:03.9757109Z [1697/7078] 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-04-25T04:18:04.0417689Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:04.0418915Z [1698/7078] 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-04-25T04:18:04.1361577Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:04.1362389Z [1699/7078] 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-04-25T04:18:04.2617620Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:04.2618902Z [1700/7078] 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-04-25T04:18:04.6724355Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:04.6725285Z [1701/7078] 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-04-25T04:18:04.8909985Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:18:04.8910713Z [1702/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-04-25T04:18:04.9032773Z [1703/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-04-25T04:18:04.9221960Z [1704/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-04-25T04:18:04.9728099Z [1705/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-04-25T04:18:04.9923252Z [1706/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-04-25T04:18:05.1078894Z [1707/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-04-25T04:18:05.2258458Z [1708/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-04-25T04:18:05.6559575Z [1709/7078] 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-04-25T04:18:05.9082497Z [1710/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-04-25T04:18:05.9227142Z [1711/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-04-25T04:18:05.9577871Z [1712/7078] 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-04-25T04:18:06.0502993Z [1713/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-04-25T04:18:06.1111812Z [1714/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-04-25T04:18:06.2638036Z [1715/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-04-25T04:18:06.3498964Z [1716/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-04-25T04:18:06.6900678Z [1717/7078] 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-04-25T04:18:06.9028570Z [1718/7078] 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-04-25T04:18:07.0352372Z [1719/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-04-25T04:18:07.0604153Z [1720/7078] 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-04-25T04:18:07.0720470Z [1721/7078] 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-04-25T04:18:07.0788761Z [1722/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-04-25T04:18:07.3195617Z [1723/7078] 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-04-25T04:18:07.3359729Z [1724/7078] 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-04-25T04:18:07.7515170Z [1725/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-04-25T04:18:07.8533071Z [1726/7078] 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-04-25T04:18:07.9914554Z [1727/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-04-25T04:18:08.0274571Z [1728/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-04-25T04:18:08.0617898Z [1729/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-04-25T04:18:08.2620914Z [1730/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-04-25T04:18:08.3242918Z [1731/7078] 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-04-25T04:18:08.3628915Z [1732/7078] 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-04-25T04:18:08.7683067Z [1733/7078] 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-04-25T04:18:08.9057586Z [1734/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-04-25T04:18:08.9657248Z [1735/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-04-25T04:18:09.0526510Z [1736/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-04-25T04:18:09.1871372Z [1737/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-04-25T04:18:09.3452024Z [1738/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-04-25T04:18:09.3806290Z [1739/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-04-25T04:18:09.4223104Z [1740/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-04-25T04:18:09.8137669Z [1741/7078] 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-04-25T04:18:09.8879957Z [1742/7078] 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-04-25T04:18:09.9391205Z [1743/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-04-25T04:18:10.0002760Z [1744/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-04-25T04:18:10.1994941Z [1745/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-04-25T04:18:10.2925645Z [1746/7078] 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-04-25T04:18:10.3285429Z [1747/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-04-25T04:18:10.5202016Z [1748/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-04-25T04:18:10.8578942Z [1749/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-04-25T04:18:10.9175308Z [1750/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-04-25T04:18:10.9972997Z [1751/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-04-25T04:18:11.0403231Z [1752/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-04-25T04:18:11.0722525Z [1753/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-04-25T04:18:11.2651156Z [1754/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-04-25T04:18:11.3021167Z [1755/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-04-25T04:18:11.4300982Z [1756/7078] 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-04-25T04:18:11.8133716Z [1757/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-04-25T04:18:11.8585836Z [1758/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-04-25T04:18:12.0036319Z [1759/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-04-25T04:18:12.1391412Z [1760/7078] 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-04-25T04:18:12.1521130Z [1761/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-04-25T04:18:12.1843626Z [1762/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-04-25T04:18:12.2277103Z [1763/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-04-25T04:18:12.4853665Z [1764/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-04-25T04:18:12.8634433Z [1765/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-04-25T04:18:12.8988105Z [1766/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-04-25T04:18:12.9722641Z [1767/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-04-25T04:18:13.1411672Z [1768/7078] 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-04-25T04:18:13.1611567Z [1769/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-04-25T04:18:13.2082778Z [1770/7078] 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-04-25T04:18:13.2637642Z [1771/7078] 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-04-25T04:18:13.5410122Z [1772/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-04-25T04:18:13.8667876Z [1773/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-04-25T04:18:13.9777611Z [1774/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-04-25T04:18:14.0496119Z [1775/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-04-25T04:18:14.1151111Z [1776/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-04-25T04:18:14.1169944Z [1777/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-04-25T04:18:14.1986149Z [1778/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-04-25T04:18:14.2434177Z [1779/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-04-25T04:18:14.4930920Z [1780/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-04-25T04:18:14.9770007Z [1781/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-04-25T04:18:14.9956543Z [1782/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-04-25T04:18:15.0316949Z [1783/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-04-25T04:18:15.1412812Z [1784/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-04-25T04:18:15.1683704Z [1785/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-04-25T04:18:15.2251616Z [1786/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-04-25T04:18:15.2270631Z [1787/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-04-25T04:18:15.4092750Z [1788/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-04-25T04:18:16.0612483Z [1789/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-04-25T04:18:16.0958225Z [1790/7078] 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-04-25T04:18:16.0982566Z [1791/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-04-25T04:18:16.1073966Z [1792/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-04-25T04:18:16.1673189Z [1793/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-04-25T04:18:16.2510225Z [1794/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-04-25T04:18:16.2566113Z [1795/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-04-25T04:18:16.4055671Z [1796/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-04-25T04:18:17.0357212Z [1797/7078] 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-04-25T04:18:17.0484290Z [1798/7078] 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-04-25T04:18:17.0672342Z [1799/7078] 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-04-25T04:18:17.0763690Z [1800/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-04-25T04:18:17.1485348Z [1801/7078] 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-04-25T04:18:17.1751027Z [1802/7078] 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-04-25T04:18:17.2277064Z [1803/7078] 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-04-25T04:18:17.3755959Z [1804/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-04-25T04:18:18.0138043Z [1805/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-04-25T04:18:18.0262558Z [1806/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-04-25T04:18:18.0315717Z [1807/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-04-25T04:18:18.0744529Z [1808/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-04-25T04:18:18.1896458Z [1809/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-04-25T04:18:18.2414439Z [1810/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-04-25T04:18:18.2718305Z [1811/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-04-25T04:18:18.3390536Z [1812/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-04-25T04:18:18.9778085Z [1813/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-04-25T04:18:19.0245235Z [1814/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-04-25T04:18:19.0327492Z [1815/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-04-25T04:18:19.0461505Z [1816/7078] 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-04-25T04:18:19.1552974Z [1817/7078] 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-04-25T04:18:19.3061901Z [1818/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-04-25T04:18:19.3135639Z [1819/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-04-25T04:18:19.3257711Z [1820/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-04-25T04:18:19.8771252Z [1821/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-04-25T04:18:19.9928597Z [1822/7078] 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-04-25T04:18:20.0171051Z [1823/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-04-25T04:18:20.0853880Z [1824/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-04-25T04:18:20.1575229Z [1825/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-04-25T04:18:20.2465309Z [1826/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-04-25T04:18:20.2695769Z [1827/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-04-25T04:18:20.2885235Z [1828/7078] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-04-25T04:18:20.7058273Z [1829/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-04-25T04:18:20.9547757Z [1830/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-04-25T04:18:20.9895554Z [1831/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-04-25T04:18:21.0439520Z [1832/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-04-25T04:18:21.0851397Z [1833/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-04-25T04:18:21.1184839Z [1834/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-04-25T04:18:21.1285034Z [1835/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-04-25T04:18:21.1437384Z [1836/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-04-25T04:18:21.6385424Z [1837/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-04-25T04:18:21.8968292Z [1838/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-04-25T04:18:21.9055138Z [1839/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-04-25T04:18:21.9071721Z [1840/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-04-25T04:18:21.9355852Z [1841/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-04-25T04:18:21.9623780Z [1842/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-04-25T04:18:22.0134992Z [1843/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-04-25T04:18:22.1849298Z [1844/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-04-25T04:18:22.6387805Z [1845/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-04-25T04:18:22.8470609Z [1846/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-04-25T04:18:22.8763451Z [1847/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-04-25T04:18:22.8908089Z [1848/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-04-25T04:18:22.9706553Z [1849/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-04-25T04:18:22.9819688Z [1850/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-04-25T04:18:22.9955184Z [1851/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-04-25T04:18:23.3302906Z [1852/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-04-25T04:18:23.5908554Z [1853/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-04-25T04:18:23.8457737Z [1854/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-04-25T04:18:23.9357990Z [1855/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-04-25T04:18:23.9577609Z [1856/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-04-25T04:18:23.9895179Z [1857/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-04-25T04:18:24.0598676Z [1858/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-04-25T04:18:24.1664835Z [1859/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-04-25T04:18:24.3146033Z [1860/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-04-25T04:18:24.5435287Z [1861/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-04-25T04:18:24.8341078Z [1862/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-04-25T04:18:24.9869719Z [1863/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-04-25T04:18:25.0532903Z [1864/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-04-25T04:18:25.0918744Z [1865/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-04-25T04:18:25.1274584Z [1866/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-04-25T04:18:25.3031095Z [1867/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-04-25T04:18:25.4154528Z [1868/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-04-25T04:18:25.5261002Z [1869/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-04-25T04:18:25.9309235Z [1870/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-04-25T04:18:26.0260227Z [1871/7078] 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-04-25T04:18:26.0729599Z [1872/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-04-25T04:18:26.0834746Z [1873/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-04-25T04:18:26.1701751Z [1874/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-04-25T04:18:26.2530068Z [1875/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-04-25T04:18:26.3402372Z [1876/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-04-25T04:18:26.4522737Z [1877/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-04-25T04:18:26.9492950Z [1878/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-04-25T04:18:27.0173698Z [1879/7078] 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-04-25T04:18:27.0832792Z [1880/7078] 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-04-25T04:18:27.1209645Z [1881/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-04-25T04:18:27.1832348Z [1882/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-04-25T04:18:27.2880282Z [1883/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-04-25T04:18:27.3825514Z [1884/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-04-25T04:18:27.4610022Z [1885/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-04-25T04:18:27.9942032Z [1886/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-04-25T04:18:28.0249825Z [1887/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-04-25T04:18:28.0577803Z [1888/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-04-25T04:18:28.0991156Z [1889/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-04-25T04:18:28.1808332Z [1890/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-04-25T04:18:28.3360457Z [1891/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-04-25T04:18:28.3773138Z [1892/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-04-25T04:18:28.4254067Z [1893/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-04-25T04:18:28.9544196Z [1894/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-04-25T04:18:29.0362046Z [1895/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-04-25T04:18:29.0907415Z [1896/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-04-25T04:18:29.2067708Z [1897/7078] 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-04-25T04:18:29.2309918Z [1898/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-04-25T04:18:29.2406173Z [1899/7078] 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-04-25T04:18:29.4212594Z [1900/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-04-25T04:18:29.4232675Z [1901/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-04-25T04:18:29.9684055Z [1902/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-04-25T04:18:30.0384017Z [1903/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-04-25T04:18:30.2242158Z [1904/7078] 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-04-25T04:18:30.2509945Z [1905/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-04-25T04:18:30.3035890Z [1906/7078] 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-04-25T04:18:30.3239001Z [1907/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-04-25T04:18:30.4084914Z [1908/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-04-25T04:18:30.4727545Z [1909/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-04-25T04:18:30.6593274Z [1910/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-04-25T04:18:30.6605345Z [1911/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-04-25T04:18:30.6652451Z [1912/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-04-25T04:18:30.7230866Z [1913/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-04-25T04:18:31.0140343Z [1914/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-04-25T04:18:31.0554989Z [1915/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-04-25T04:18:31.2714283Z [1916/7078] 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-04-25T04:18:31.3023639Z [1917/7078] 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-04-25T04:18:31.3435630Z [1918/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-04-25T04:18:31.5530576Z [1919/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-04-25T04:18:31.5951086Z [1920/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-04-25T04:18:31.6695694Z [1921/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-04-25T04:18:31.7162714Z [1922/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-04-25T04:18:31.8135182Z [1923/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-04-25T04:18:31.8396902Z [1924/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-04-25T04:18:31.8398775Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:18:31.8400863Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:31.8402798Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-04-25T04:18:31.8840677Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'NOGDI' 2025-04-25T04:18:31.8841998Z [1925/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-04-25T04:18:31.9888133Z [1926/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-04-25T04:18:31.9985429Z [1927/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-04-25T04:18:32.0792300Z [1928/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-04-25T04:18:32.1148023Z [1929/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-04-25T04:18:32.1610175Z [1930/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-04-25T04:18:32.1665417Z [1931/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-04-25T04:18:32.1971343Z [1932/7078] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-04-25T04:18:32.2033838Z [1933/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-04-25T04:18:32.2448465Z [1934/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-04-25T04:18:32.2709829Z [1935/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-04-25T04:18:32.2876867Z [1936/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-04-25T04:18:32.3052803Z [1937/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-04-25T04:18:32.4022062Z [1938/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-04-25T04:18:32.4868614Z [1939/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-04-25T04:18:32.5205388Z [1940/7078] Linking CXX static library lib\mimalloc-static.lib 2025-04-25T04:18:32.5268600Z [1941/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-04-25T04:18:32.5335129Z [1942/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-04-25T04:18:32.5466321Z [1943/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-04-25T04:18:32.6040250Z [1944/7078] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-04-25T04:18:32.6068862Z [1945/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-04-25T04:18:32.6132792Z [1946/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-04-25T04:18:32.6871586Z [1947/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-04-25T04:18:32.7941688Z [1948/7078] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-04-25T04:18:32.8941708Z [1949/7078] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-04-25T04:18:32.9067438Z [1950/7078] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-04-25T04:18:32.9308848Z [1951/7078] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-04-25T04:18:32.9368206Z [1952/7078] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-04-25T04:18:32.9523374Z [1953/7078] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-04-25T04:18:32.9829750Z [1954/7078] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-04-25T04:18:33.0030092Z [1955/7078] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-04-25T04:18:33.0107518Z [1956/7078] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-04-25T04:18:33.1116177Z [1957/7078] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-04-25T04:18:33.2174973Z [1958/7078] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-04-25T04:18:33.2756947Z [1959/7078] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-04-25T04:18:33.3527138Z [1960/7078] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-04-25T04:18:33.3542654Z [1961/7078] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-04-25T04:18:33.3715696Z [1962/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-04-25T04:18:33.4281330Z [1963/7078] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-04-25T04:18:33.4410363Z [1964/7078] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-04-25T04:18:33.4778465Z [1965/7078] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-04-25T04:18:33.5324071Z [1966/7078] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-04-25T04:18:33.5613347Z [1967/7078] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-04-25T04:18:33.6571765Z [1968/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-04-25T04:18:33.7165795Z [1969/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-04-25T04:18:33.7510284Z [1970/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-04-25T04:18:33.7595628Z [1971/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-04-25T04:18:33.8451952Z [1972/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-04-25T04:18:33.8512062Z [1973/7078] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-04-25T04:18:33.9147934Z [1974/7078] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-04-25T04:18:34.0129884Z [1975/7078] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-04-25T04:18:34.0321311Z [1976/7078] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-04-25T04:18:34.0721081Z [1977/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-04-25T04:18:34.0846217Z [1978/7078] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-04-25T04:18:34.1029897Z [1979/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-04-25T04:18:34.1219391Z [1980/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-04-25T04:18:34.1592611Z [1981/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-04-25T04:18:34.1831337Z [1982/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-04-25T04:18:34.3140833Z [1983/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-04-25T04:18:34.4024188Z [1984/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-04-25T04:18:34.4084934Z [1985/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-04-25T04:18:34.4623263Z 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-04-25T04:18:34.4624171Z [1986/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-04-25T04:18:34.4891434Z [1987/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-04-25T04:18:34.5477755Z [1988/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-04-25T04:18:34.5827760Z [1989/7078] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-04-25T04:18:34.6079699Z [1990/7078] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-04-25T04:18:34.6179234Z [1991/7078] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-04-25T04:18:34.6657657Z [1992/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-04-25T04:18:34.7035587Z [1993/7078] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-04-25T04:18:34.7520935Z [1994/7078] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-04-25T04:18:34.7658036Z [1995/7078] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-04-25T04:18:34.8225592Z [1996/7078] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-04-25T04:18:34.8611607Z [1997/7078] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-04-25T04:18:34.9245609Z [1998/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-04-25T04:18:34.9300230Z [1999/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-04-25T04:18:34.9591013Z [2000/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-04-25T04:18:34.9660164Z [2001/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-04-25T04:18:35.0081847Z [2002/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-04-25T04:18:35.1016361Z [2003/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-04-25T04:18:35.1064448Z [2004/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-04-25T04:18:35.1344313Z [2005/7078] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-04-25T04:18:35.1567629Z [2006/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-04-25T04:18:35.1778652Z [2007/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-04-25T04:18:35.1823870Z [2008/7078] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-04-25T04:18:35.2092314Z [2009/7078] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-04-25T04:18:35.2263242Z [2010/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-04-25T04:18:35.2571872Z [2011/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-04-25T04:18:35.2779351Z [2012/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-04-25T04:18:35.3796951Z [2013/7078] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-04-25T04:18:35.4262173Z [2014/7078] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-04-25T04:18:35.4436940Z [2015/7078] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-04-25T04:18:35.4522486Z [2016/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-04-25T04:18:35.4656887Z [2017/7078] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-04-25T04:18:35.4807973Z [2018/7078] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-04-25T04:18:35.4887444Z [2019/7078] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-04-25T04:18:35.5194969Z [2020/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-04-25T04:18:35.5561852Z [2021/7078] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-04-25T04:18:35.5881104Z [2022/7078] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-04-25T04:18:35.6067036Z [2023/7078] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-04-25T04:18:35.6457627Z [2024/7078] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-04-25T04:18:35.6973703Z [2025/7078] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-04-25T04:18:35.7207977Z [2026/7078] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-04-25T04:18:35.8189427Z [2027/7078] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-04-25T04:18:35.8251309Z [2028/7078] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-04-25T04:18:35.8395159Z [2029/7078] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-04-25T04:18:35.8906928Z [2030/7078] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-04-25T04:18:35.8921840Z [2031/7078] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-04-25T04:18:35.9510514Z [2032/7078] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-04-25T04:18:35.9830157Z [2033/7078] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-04-25T04:18:36.0099540Z [2034/7078] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-04-25T04:18:36.0454621Z [2035/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.0699271Z [2036/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.0996103Z [2037/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.1082478Z [2038/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.1440797Z [2039/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.2039644Z [2040/7078] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-04-25T04:18:36.2769526Z [2041/7078] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-04-25T04:18:36.3310224Z [2042/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.3598470Z [2043/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.3833977Z [2044/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.4282181Z [2045/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.5049531Z [2046/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.5462412Z [2047/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.6316045Z [2048/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.6510288Z [2049/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.7488974Z [2050/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.8447139Z [2051/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-04-25T04:18:36.8786365Z [2052/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-04-25T04:18:36.9673429Z [2053/7078] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.0567956Z [2054/7078] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.0785118Z [2055/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.1499410Z [2056/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.1863629Z [2057/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.1981555Z [2058/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.2145929Z [2059/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.2259429Z [2060/7078] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.2433410Z [2061/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.2480874Z [2062/7078] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.2540115Z [2063/7078] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.3305157Z [2064/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.3349449Z [2065/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.3506734Z [2066/7078] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.3936987Z [2067/7078] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.3992410Z [2068/7078] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.4032943Z [2069/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.4077449Z [2070/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.4138701Z [2071/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.4387102Z [2072/7078] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.4472552Z [2073/7078] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.4802353Z [2074/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.4844858Z [2075/7078] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-04-25T04:18:37.4909813Z [2076/7078] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:18:37.5325137Z [2077/7078] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-04-25T04:18:37.5426913Z [2078/7078] Linking CXX static library lib\XNNPACK.lib 2025-04-25T04:18:37.5595716Z [2079/7078] Linking C static library lib\libittnotify.lib 2025-04-25T04:18:37.5696405Z [2080/7078] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-04-25T04:18:37.5777820Z [2081/7078] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:18:37.6060732Z [2082/7078] Linking CXX static library lib\gloo.lib 2025-04-25T04:18:37.6111564Z [2083/7078] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-04-25T04:18:37.6588458Z [2084/7078] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-04-25T04:18:37.7828170Z [2085/7078] Linking CXX static library lib\kineto.lib 2025-04-25T04:18:37.9230199Z [2086/7078] Linking C static library sleef\lib\sleef.lib 2025-04-25T04:18:38.1538809Z [2087/7078] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-04-25T04:18:38.2129990Z [2088/7078] Generating ../../../torch/utils/data/datapipes/datapipe.pyi 2025-04-25T04:18:38.3095685Z [2089/7078] Linking CXX static library lib\onnx.lib 2025-04-25T04:18:38.3874161Z [2090/7078] Linking CXX shared library bin\fbgemm.dll 2025-04-25T04:18:38.4903952Z [2091/7078] Linking CXX shared library bin\c10.dll 2025-04-25T04:18:38.5460771Z [2092/7078] Linking CXX static library lib\gtest.lib 2025-04-25T04:18:38.7740875Z [2093/7078] Regenerating version file... 2025-04-25T04:18:38.8127564Z [2094/7078] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-04-25T04:18:38.8318602Z [2095/7078] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-04-25T04:18:38.8603368Z [2096/7078] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-04-25T04:18:39.0675549Z [2097/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-04-25T04:18:39.0777156Z [2098/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-04-25T04:18:39.1399013Z [2099/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-04-25T04:18:39.2395090Z [2100/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-04-25T04:18:39.3830822Z [2101/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-04-25T04:18:39.3926922Z [2102/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-04-25T04:18:39.5227935Z [2103/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-04-25T04:18:39.6112145Z [2104/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-04-25T04:18:39.6403237Z [2105/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-04-25T04:18:39.6784169Z [2106/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-04-25T04:18:39.7544178Z [2107/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-04-25T04:18:39.8487571Z [2108/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-04-25T04:18:39.8561684Z [2109/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-04-25T04:18:39.9319606Z [2110/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-04-25T04:18:39.9691659Z [2111/7078] Generating sources 2025-04-25T04:18:40.0746835Z [2112/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-04-25T04:18:40.1003473Z [2113/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-04-25T04:18:40.3364612Z [2114/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-04-25T04:18:40.7901710Z [2115/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-04-25T04:18:40.7955307Z [2116/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-04-25T04:18:40.8178748Z [2117/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sleep.cc.obj 2025-04-25T04:18:41.1017746Z [2118/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-04-25T04:18:41.1140738Z [2119/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-04-25T04:18:41.6751440Z [2120/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-04-25T04:18:41.6768710Z [2121/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-04-25T04:18:41.6782715Z [2122/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-04-25T04:18:41.9240048Z [2123/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-04-25T04:18:42.9213288Z [2124/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-04-25T04:18:42.9233138Z [2125/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-04-25T04:18:42.9280230Z [2126/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-04-25T04:18:43.9738430Z [2127/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-04-25T04:18:43.9753741Z [2128/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-04-25T04:18:43.9800460Z [2129/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-04-25T04:18:44.1285521Z [2130/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-04-25T04:18:44.1455529Z [2131/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-04-25T04:18:44.1867627Z [2132/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-04-25T04:18:44.2625490Z [2133/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-04-25T04:18:44.2635888Z [2134/7078] Linking CXX static library lib\dnnl.lib 2025-04-25T04:18:44.3625679Z [2135/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-04-25T04:18:44.3822698Z [2136/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-04-25T04:18:44.4003214Z [2137/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-04-25T04:18:44.4118109Z [2138/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-04-25T04:18:44.4848898Z [2139/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-04-25T04:18:44.4943611Z [2140/7078] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-04-25T04:18:44.5000231Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:18:44.5000548Z 2025-04-25T04:18:44.5000553Z 2025-04-25T04:18:44.5000718Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:44.5001024Z 2025-04-25T04:18:44.5001028Z 2025-04-25T04:18:44.5001033Z 2025-04-25T04:18:44.5001036Z 2025-04-25T04:18:44.5001514Z [2141/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-04-25T04:18:44.5962675Z [2142/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-04-25T04:18:44.6343963Z [2143/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-04-25T04:18:44.6938127Z [2144/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-04-25T04:18:44.7008934Z [2145/7078] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-04-25T04:18:44.7655900Z [2146/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-04-25T04:18:44.8052329Z [2147/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-04-25T04:18:44.8376984Z [2148/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-04-25T04:18:44.8521292Z [2149/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-04-25T04:18:44.8581912Z [2150/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-04-25T04:18:44.8902845Z [2151/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-04-25T04:18:44.9053059Z [2152/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-04-25T04:18:44.9261555Z [2153/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-04-25T04:18:44.9388589Z [2154/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-04-25T04:18:44.9477579Z [2155/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-04-25T04:18:44.9630511Z [2156/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-04-25T04:18:44.9719251Z [2157/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-04-25T04:18:44.9856796Z [2158/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-04-25T04:18:45.0186000Z [2159/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-04-25T04:18:45.0457872Z [2160/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-04-25T04:18:45.0756177Z [2161/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-04-25T04:18:45.0817952Z [2162/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-04-25T04:18:45.0890210Z [2163/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-04-25T04:18:45.1458700Z [2164/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-04-25T04:18:45.1691773Z [2165/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-04-25T04:18:45.1756777Z [2166/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-04-25T04:18:45.1834876Z [2167/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-04-25T04:18:45.2103585Z [2168/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-04-25T04:18:45.2402315Z [2169/7078] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-04-25T04:18:45.2494205Z [2170/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-04-25T04:18:45.2703993Z [2171/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-04-25T04:18:45.2759952Z [2172/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-04-25T04:18:45.2888148Z [2173/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-04-25T04:18:45.3084846Z [2174/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-04-25T04:18:45.3451904Z [2175/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-04-25T04:18:45.3576704Z [2176/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-04-25T04:18:45.3682300Z [2177/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-04-25T04:18:45.3697183Z [2178/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-04-25T04:18:45.4000612Z [2179/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-04-25T04:18:45.4054606Z [2180/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-04-25T04:18:45.4618619Z [2181/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-04-25T04:18:45.4688955Z [2182/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-04-25T04:18:45.4731164Z [2183/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-04-25T04:18:45.4941266Z [2184/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-04-25T04:18:45.4994933Z [2185/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-04-25T04:18:45.5046447Z [2186/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-04-25T04:18:45.5805309Z [2187/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-04-25T04:18:45.5906553Z [2188/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-04-25T04:18:45.5960286Z [2189/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:18:45.6064701Z [2190/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-04-25T04:18:45.6377576Z [2191/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-04-25T04:18:45.6683513Z [2192/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:45.6991135Z [2193/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-04-25T04:18:45.7073545Z [2194/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:45.7200926Z [2195/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-04-25T04:18:45.7255978Z [2196/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:45.7480909Z [2197/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-04-25T04:18:45.7809632Z [2198/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-04-25T04:18:45.8083514Z [2199/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-04-25T04:18:45.8188064Z [2200/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-04-25T04:18:45.8280198Z [2201/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-04-25T04:18:45.8584657Z [2202/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-04-25T04:18:45.8806728Z [2203/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-04-25T04:18:45.9355182Z [2204/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-04-25T04:18:45.9404235Z [2205/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-04-25T04:18:45.9616543Z [2206/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-04-25T04:18:45.9627928Z [2207/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-04-25T04:18:45.9919232Z [2208/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-04-25T04:18:45.9990325Z [2209/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-04-25T04:18:46.0538530Z [2210/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:46.0656722Z [2211/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:18:46.0952577Z [2212/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-04-25T04:18:46.1114217Z [2213/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-04-25T04:18:46.1128145Z [2214/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:18:46.1174221Z [2215/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:46.1825882Z [2216/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-04-25T04:18:46.1884446Z [2217/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-04-25T04:18:46.2078833Z [2218/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:18:46.2300247Z [2219/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-04-25T04:18:46.2580712Z [2220/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:18:46.2624191Z [2221/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-04-25T04:18:46.2917768Z [2222/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-04-25T04:18:46.3041384Z [2223/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-04-25T04:18:46.3252123Z [2224/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-04-25T04:18:46.3593897Z [2225/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-04-25T04:18:46.3750696Z [2226/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-04-25T04:18:46.4060825Z [2227/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-04-25T04:18:46.4189658Z [2228/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-04-25T04:18:46.4327852Z [2229/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-04-25T04:18:46.4343305Z [2230/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-04-25T04:18:46.4750182Z [2231/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-04-25T04:18:46.5066783Z [2232/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-04-25T04:18:46.5302516Z [2233/7078] 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-04-25T04:18:46.5349541Z [2234/7078] 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-04-25T04:18:46.5563567Z [2235/7078] 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-04-25T04:18:46.5616872Z [2236/7078] 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-04-25T04:18:46.5770694Z [2237/7078] 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-04-25T04:18:46.6445471Z [2238/7078] 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-04-25T04:18:46.6498573Z [2239/7078] 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-04-25T04:18:46.6882751Z [2240/7078] 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-04-25T04:18:46.7006321Z [2241/7078] 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-04-25T04:18:46.7018131Z [2242/7078] 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-04-25T04:18:46.7687323Z [2243/7078] 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-04-25T04:18:46.7798431Z [2244/7078] 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-04-25T04:18:46.7811771Z [2245/7078] 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-04-25T04:18:46.8175391Z [2246/7078] 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-04-25T04:18:46.8268468Z [2247/7078] 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-04-25T04:18:46.8327529Z [2248/7078] 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-04-25T04:18:46.8831189Z [2249/7078] 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-04-25T04:18:46.8927087Z [2250/7078] 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-04-25T04:18:46.9125482Z [2251/7078] 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-04-25T04:18:46.9483106Z [2252/7078] 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-04-25T04:18:46.9653144Z [2253/7078] 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-04-25T04:18:46.9807428Z [2254/7078] 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-04-25T04:18:47.0116606Z [2255/7078] 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-04-25T04:18:47.0201514Z [2256/7078] 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-04-25T04:18:47.0369751Z [2257/7078] 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-04-25T04:18:47.0607976Z [2258/7078] 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-04-25T04:18:47.0824509Z [2259/7078] 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-04-25T04:18:47.1467418Z [2260/7078] 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-04-25T04:18:47.1479329Z [2261/7078] 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-04-25T04:18:47.1536653Z [2262/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-04-25T04:18:47.1549306Z [2263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-04-25T04:18:47.1854334Z [2264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-04-25T04:18:47.1922619Z [2265/7078] 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-04-25T04:18:47.2552878Z [2266/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-04-25T04:18:47.2614176Z [2267/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-04-25T04:18:47.2898237Z [2268/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-04-25T04:18:47.3075159Z [2269/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-04-25T04:18:47.3168664Z [2270/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-04-25T04:18:47.3290044Z [2271/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-04-25T04:18:47.3492636Z [2272/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-04-25T04:18:47.3963919Z [2273/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-04-25T04:18:47.4043186Z [2274/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-04-25T04:18:47.4128924Z [2275/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-04-25T04:18:47.4176749Z [2276/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-04-25T04:18:47.4354790Z [2277/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-04-25T04:18:47.4614795Z [2278/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-04-25T04:18:47.4916439Z [2279/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-04-25T04:18:47.5154901Z [2280/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-04-25T04:18:47.5204996Z [2281/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-04-25T04:18:47.5477902Z [2282/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-04-25T04:18:47.5773133Z [2283/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-04-25T04:18:47.5917515Z [2284/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-04-25T04:18:47.6464755Z [2285/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-04-25T04:18:47.6547973Z [2286/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-04-25T04:18:47.6880783Z [2287/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-04-25T04:18:47.6947257Z [2288/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-04-25T04:18:47.6995521Z [2289/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-04-25T04:18:47.7682440Z [2290/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-04-25T04:18:47.7858552Z [2291/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-04-25T04:18:47.7953792Z [2292/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-04-25T04:18:47.8013321Z [2293/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-04-25T04:18:47.8177647Z [2294/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-04-25T04:18:47.8600547Z [2295/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-04-25T04:18:47.8673705Z [2296/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-04-25T04:18:47.9051739Z [2297/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-04-25T04:18:47.9108762Z [2298/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-04-25T04:18:47.9121028Z [2299/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-04-25T04:18:47.9215512Z [2300/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-04-25T04:18:47.9589372Z [2301/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-04-25T04:18:47.9644145Z [2302/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-04-25T04:18:48.0101488Z [2303/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-04-25T04:18:48.0217022Z [2304/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-04-25T04:18:48.0464232Z [2305/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-04-25T04:18:48.0514048Z [2306/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-04-25T04:18:48.0574740Z [2307/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-04-25T04:18:48.0586006Z [2308/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-04-25T04:18:48.1126161Z [2309/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-04-25T04:18:48.1345806Z [2310/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-04-25T04:18:48.1490177Z [2311/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-04-25T04:18:48.1501414Z [2312/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-04-25T04:18:48.1615025Z [2313/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-04-25T04:18:48.1703997Z [2314/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-04-25T04:18:48.1801992Z [2315/7078] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi 2025-04-25T04:18:48.2420874Z [2316/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-04-25T04:18:48.2554327Z [2317/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-04-25T04:18:48.2663407Z [2318/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-04-25T04:18:48.2820798Z [2319/7078] 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-04-25T04:18:48.3068172Z [2320/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-04-25T04:18:48.3116207Z [2321/7078] 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-04-25T04:18:48.3378236Z [2322/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-04-25T04:18:48.3389817Z [2323/7078] 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-04-25T04:18:48.3556388Z [2324/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-04-25T04:18:48.3756970Z [2325/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-04-25T04:18:48.3767727Z [2326/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-04-25T04:18:48.4102131Z [2327/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-04-25T04:18:48.4252340Z [2328/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-04-25T04:18:48.4296300Z [2329/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-04-25T04:18:48.4363033Z [2330/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-04-25T04:18:48.4713681Z [2331/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-04-25T04:18:48.4762218Z [2332/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-04-25T04:18:48.4914361Z [2333/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-04-25T04:18:48.5162855Z [2334/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-04-25T04:18:48.5230104Z [2335/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-04-25T04:18:48.5337276Z [2336/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-04-25T04:18:48.5420320Z [2337/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-04-25T04:18:48.5687274Z [2338/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-04-25T04:18:48.5788800Z [2339/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-04-25T04:18:48.6201168Z [2340/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-04-25T04:18:48.6251856Z [2341/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-04-25T04:18:48.6307465Z [2342/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-04-25T04:18:48.6405640Z [2343/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-04-25T04:18:48.6705526Z [2344/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-04-25T04:18:48.6775762Z [2345/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-04-25T04:18:48.6892652Z [2346/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-04-25T04:18:48.7189058Z [2347/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-04-25T04:18:48.7266186Z [2348/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-04-25T04:18:48.7317763Z [2349/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-04-25T04:18:48.7863132Z [2350/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-04-25T04:18:48.7959008Z [2351/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-04-25T04:18:48.8387343Z [2352/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-04-25T04:18:48.8446984Z [2353/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-04-25T04:18:48.8459323Z [2354/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-04-25T04:18:48.8518095Z [2355/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-04-25T04:18:48.8882222Z [2356/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-04-25T04:18:48.9079794Z [2357/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-04-25T04:18:48.9309955Z [2358/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-04-25T04:18:48.9497124Z [2359/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-04-25T04:18:48.9592502Z [2360/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-04-25T04:18:48.9604831Z [2361/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-04-25T04:18:48.9663983Z [2362/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-04-25T04:18:49.0024549Z [2363/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-04-25T04:18:49.0139898Z [2364/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-04-25T04:18:49.0590930Z [2365/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-04-25T04:18:49.0695176Z [2366/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-04-25T04:18:49.0707473Z [2367/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-04-25T04:18:49.0784175Z [2368/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-04-25T04:18:49.0844396Z [2369/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-04-25T04:18:49.1188259Z [2370/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-04-25T04:18:49.1262484Z [2371/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-04-25T04:18:49.1739665Z [2372/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-04-25T04:18:49.1874658Z [2373/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-04-25T04:18:49.1947204Z [2374/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-04-25T04:18:49.2006625Z [2375/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-04-25T04:18:49.2278356Z [2376/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-04-25T04:18:49.2348375Z [2377/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-04-25T04:18:49.2361453Z [2378/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-04-25T04:18:49.2833646Z [2379/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-04-25T04:18:49.3026498Z [2380/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-04-25T04:18:49.3111908Z [2381/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-04-25T04:18:49.3452290Z [2382/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-04-25T04:18:49.3511413Z [2383/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-04-25T04:18:49.3523979Z [2384/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-04-25T04:18:49.3833838Z [2385/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-04-25T04:18:49.3905487Z [2386/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-04-25T04:18:49.4093215Z [2387/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-04-25T04:18:49.4598924Z [2388/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-04-25T04:18:49.4752809Z [2389/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-04-25T04:18:49.4765083Z [2390/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-04-25T04:18:49.4946229Z [2391/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-04-25T04:18:49.5007686Z [2392/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-04-25T04:18:49.5020213Z [2393/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-04-25T04:18:49.5168403Z [2394/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-04-25T04:18:49.5702946Z [2395/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-04-25T04:18:49.5880087Z [2396/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-04-25T04:18:49.5933006Z [2397/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-04-25T04:18:49.6041460Z [2398/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-04-25T04:18:49.6094050Z [2399/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-04-25T04:18:49.6372344Z [2400/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-04-25T04:18:49.6800621Z [2401/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-04-25T04:18:49.7020330Z [2402/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-04-25T04:18:49.7062639Z [2403/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-04-25T04:18:49.7125173Z [2404/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-04-25T04:18:49.7337136Z [2405/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-04-25T04:18:49.7388590Z [2406/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-04-25T04:18:49.7681109Z [2407/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-04-25T04:18:49.7867802Z [2408/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-04-25T04:18:49.8153985Z [2409/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-04-25T04:18:49.8242205Z [2410/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-04-25T04:18:49.8258583Z [2411/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-04-25T04:18:49.8462440Z [2412/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-04-25T04:18:49.8517276Z [2413/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-04-25T04:18:49.9012299Z [2414/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-04-25T04:18:49.9172197Z [2415/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-04-25T04:18:49.9420592Z [2416/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-04-25T04:18:49.9512943Z [2417/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-04-25T04:18:49.9600247Z [2418/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-04-25T04:18:49.9735861Z [2419/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-04-25T04:18:50.0041635Z [2420/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-04-25T04:18:50.0119685Z [2421/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-04-25T04:18:50.0294521Z [2422/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-04-25T04:18:50.0510832Z [2423/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-04-25T04:18:50.0639357Z [2424/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-04-25T04:18:50.0802327Z [2425/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-04-25T04:18:50.0864227Z [2426/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-04-25T04:18:50.1096147Z [2427/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-04-25T04:18:50.1553955Z [2428/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-04-25T04:18:50.1698568Z [2429/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-04-25T04:18:50.1792256Z [2430/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-04-25T04:18:50.1867261Z [2431/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-04-25T04:18:50.1985978Z [2432/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-04-25T04:18:50.2040006Z [2433/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-04-25T04:18:50.2096941Z [2434/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-04-25T04:18:50.2889362Z [2435/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-04-25T04:18:50.2941840Z [2436/7078] 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-04-25T04:18:50.2959802Z [2437/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-04-25T04:18:50.3022277Z [2438/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-04-25T04:18:50.3115279Z [2439/7078] 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-04-25T04:18:50.3540643Z [2440/7078] 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-04-25T04:18:50.3879975Z [2441/7078] 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-04-25T04:18:50.3970471Z [2442/7078] 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-04-25T04:18:50.4019893Z [2443/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-04-25T04:18:50.4149681Z [2444/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-04-25T04:18:50.4296946Z [2445/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-04-25T04:18:50.4355650Z [2446/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-04-25T04:18:50.4704617Z [2447/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-04-25T04:18:50.5089317Z [2448/7078] 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-04-25T04:18:50.5287228Z [2449/7078] 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-04-25T04:18:50.5376173Z [2450/7078] 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-04-25T04:18:50.5387794Z [2451/7078] 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-04-25T04:18:50.5661765Z [2452/7078] 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-04-25T04:18:50.5818613Z [2453/7078] 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-04-25T04:18:50.6340267Z [2454/7078] 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-04-25T04:18:50.6549839Z [2455/7078] 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-04-25T04:18:50.6698956Z [2456/7078] 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-04-25T04:18:50.6748820Z [2457/7078] 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-04-25T04:18:50.6956433Z [2458/7078] 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-04-25T04:18:50.6968566Z [2459/7078] 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-04-25T04:18:50.7106563Z [2460/7078] 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-04-25T04:18:50.7604984Z [2461/7078] 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-04-25T04:18:50.7995619Z [2462/7078] 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-04-25T04:18:50.8040151Z [2463/7078] 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-04-25T04:18:50.8133233Z [2464/7078] 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-04-25T04:18:50.8298846Z [2465/7078] 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-04-25T04:18:50.8347402Z [2466/7078] 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-04-25T04:18:50.8847194Z [2467/7078] 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-04-25T04:18:50.8904079Z [2468/7078] 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-04-25T04:18:50.9452891Z [2469/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:50.9642827Z [2470/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:50.9740610Z [2471/7078] 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-04-25T04:18:50.9911438Z [2472/7078] 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-04-25T04:18:51.0030485Z [2473/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.0080988Z [2474/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.0130757Z [2475/7078] 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-04-25T04:18:51.0709010Z [2476/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.0912099Z [2477/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.1096545Z [2478/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.1172888Z [2479/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.1230322Z [2480/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.1252999Z [2481/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.1398526Z [2482/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.1978940Z [2483/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.2151992Z [2484/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.2292278Z [2485/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.2377141Z [2486/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.2459781Z [2487/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.2506932Z [2488/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.2739230Z [2489/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.3285528Z [2490/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.3417276Z [2491/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.3596272Z [2492/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.3650130Z [2493/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.3791415Z [2494/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.3846582Z [2495/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.3858230Z [2496/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.4424149Z [2497/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.4716012Z [2498/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.4967608Z [2499/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.5076488Z [2500/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.5510545Z [2501/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-04-25T04:18:51.5526159Z [2502/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.5626197Z [2503/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.5685632Z [2504/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-04-25T04:18:51.5852341Z [2505/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.6118550Z [2506/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-04-25T04:18:51.6172473Z [2507/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.6676096Z [2508/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.6740723Z [2509/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.6888819Z [2510/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.7018687Z [2511/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:51.7150561Z [2512/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-04-25T04:18:51.7508658Z [2513/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:51.7694316Z [2514/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:51.7757929Z [2515/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-04-25T04:18:51.7825882Z [2516/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-04-25T04:18:51.8176278Z [2517/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.8225545Z [2518/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-04-25T04:18:51.8237587Z [2519/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.8455742Z [2520/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.8674934Z [2521/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-04-25T04:18:51.9042378Z [2522/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.9054693Z [2523/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.9104627Z [2524/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-04-25T04:18:51.9195559Z [2525/7078] 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-04-25T04:18:51.9277742Z [2526/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-04-25T04:18:51.9397684Z [2527/7078] 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-04-25T04:18:51.9685540Z [2528/7078] 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-04-25T04:18:52.0146184Z [2529/7078] 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-04-25T04:18:52.0238488Z [2530/7078] 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-04-25T04:18:52.0336656Z [2531/7078] 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-04-25T04:18:52.0392714Z [2532/7078] 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-04-25T04:18:52.0777462Z [2533/7078] 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-04-25T04:18:52.0886945Z [2534/7078] 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-04-25T04:18:52.1012601Z [2535/7078] 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-04-25T04:18:52.1435927Z [2536/7078] 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-04-25T04:18:52.1489024Z [2537/7078] 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-04-25T04:18:52.1501715Z [2538/7078] 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-04-25T04:18:52.1573450Z [2539/7078] 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-04-25T04:18:52.1931066Z [2540/7078] 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-04-25T04:18:52.2053353Z [2541/7078] 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-04-25T04:18:52.2161642Z [2542/7078] 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-04-25T04:18:52.2692642Z [2543/7078] 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-04-25T04:18:52.2709383Z [2544/7078] 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-04-25T04:18:52.2860538Z [2545/7078] 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-04-25T04:18:52.3150241Z [2546/7078] 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-04-25T04:18:52.3198944Z [2547/7078] 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-04-25T04:18:52.3339026Z [2548/7078] 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-04-25T04:18:52.3616585Z [2549/7078] 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-04-25T04:18:52.3994069Z [2550/7078] 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-04-25T04:18:52.4045662Z [2551/7078] 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-04-25T04:18:52.4186597Z [2552/7078] 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-04-25T04:18:52.4429903Z [2553/7078] 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-04-25T04:18:52.4446677Z [2554/7078] 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-04-25T04:18:52.4587650Z [2555/7078] 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-04-25T04:18:52.4861350Z [2556/7078] 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-04-25T04:18:52.5138930Z [2557/7078] 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-04-25T04:18:52.5245898Z [2558/7078] 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-04-25T04:18:52.5393576Z [2559/7078] 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-04-25T04:18:52.5562154Z [2560/7078] 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-04-25T04:18:52.5851748Z [2561/7078] 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-04-25T04:18:52.5908722Z [2562/7078] 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-04-25T04:18:52.6108496Z [2563/7078] 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-04-25T04:18:52.6405747Z [2564/7078] 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-04-25T04:18:52.6512179Z [2565/7078] 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-04-25T04:18:52.6846174Z [2566/7078] 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-04-25T04:18:52.6971870Z [2567/7078] 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-04-25T04:18:52.6987023Z [2568/7078] 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-04-25T04:18:52.7117797Z [2569/7078] 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-04-25T04:18:52.7664839Z [2570/7078] 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-04-25T04:18:52.7836830Z [2571/7078] 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-04-25T04:18:52.7939347Z [2572/7078] 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-04-25T04:18:52.8165863Z [2573/7078] 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-04-25T04:18:52.8395022Z [2574/7078] 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-04-25T04:18:52.8733727Z [2575/7078] 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-04-25T04:18:52.9008269Z [2576/7078] 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-04-25T04:18:52.9254573Z [2577/7078] 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-04-25T04:18:52.9368374Z [2578/7078] 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-04-25T04:18:52.9416510Z [2579/7078] 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-04-25T04:18:52.9532689Z [2580/7078] 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-04-25T04:18:52.9687379Z [2581/7078] 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-04-25T04:18:53.0268477Z [2582/7078] 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-04-25T04:18:53.0322883Z [2583/7078] 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-04-25T04:18:53.0550073Z [2584/7078] 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-04-25T04:18:53.0696573Z [2585/7078] 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-04-25T04:18:53.0813876Z [2586/7078] 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-04-25T04:18:53.0866328Z [2587/7078] 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-04-25T04:18:53.1321852Z [2588/7078] 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-04-25T04:18:53.1619784Z [2589/7078] 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-04-25T04:18:53.1714850Z [2590/7078] 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-04-25T04:18:53.1940936Z [2591/7078] 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-04-25T04:18:53.2133241Z [2592/7078] 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-04-25T04:18:53.2243314Z [2593/7078] 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-04-25T04:18:53.2712933Z [2594/7078] 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-04-25T04:18:53.2812180Z [2595/7078] 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-04-25T04:18:53.2868834Z [2596/7078] 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-04-25T04:18:53.3124962Z [2597/7078] 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-04-25T04:18:53.3322537Z [2598/7078] 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-04-25T04:18:53.3377564Z [2599/7078] 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-04-25T04:18:53.3642404Z [2600/7078] 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-04-25T04:18:53.4185425Z [2601/7078] 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-04-25T04:18:53.4359103Z [2602/7078] 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-04-25T04:18:53.4575156Z [2603/7078] 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-04-25T04:18:53.4788051Z [2604/7078] 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-04-25T04:18:53.4890125Z [2605/7078] 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-04-25T04:18:53.4944554Z [2606/7078] 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-04-25T04:18:53.4956433Z [2607/7078] 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-04-25T04:18:53.5414707Z [2608/7078] 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-04-25T04:18:53.5470706Z [2609/7078] 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-04-25T04:18:53.5579285Z [2610/7078] 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-04-25T04:18:53.5977686Z [2611/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-04-25T04:18:53.6058493Z [2612/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-04-25T04:18:53.6119647Z [2613/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-04-25T04:18:53.6236543Z [2614/7078] 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-04-25T04:18:53.6491524Z [2615/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-04-25T04:18:53.6505465Z [2616/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-04-25T04:18:53.6642759Z [2617/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-04-25T04:18:53.7178360Z [2618/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-04-25T04:18:53.7190736Z [2619/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-04-25T04:18:53.7202029Z [2620/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-04-25T04:18:53.7339655Z [2621/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-04-25T04:18:53.7664552Z [2622/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-04-25T04:18:53.7690813Z [2623/7078] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/autograd/generated/ViewFuncs.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/TraceType_0.cpp, ../../torch/csrc/autograd/generated/TraceType_1.cpp, ../../torch/csrc/autograd/generated/TraceType_2.cpp, ../../torch/csrc/autograd/generated/TraceType_3.cpp, ../../torch/csrc/autograd/generated/TraceType_4.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, ../../torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, ../../torch/csrc/lazy/generated/LazyNativeFunctions.cpp, ../../torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, ../../torch/csrc/lazy/generated/RegisterLazy.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/ViewFuncs.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/lazy/generated/LazyIr.h, ../../torch/csrc/lazy/generated/LazyNonNativeIr.h, ../../torch/csrc/lazy/generated/LazyNativeFunctions.h, ../../torch/csrc/autograd/generated/python_functions_0.cpp, ../../torch/csrc/autograd/generated/python_functions_1.cpp, ../../torch/csrc/autograd/generated/python_functions_2.cpp, ../../torch/csrc/autograd/generated/python_functions_3.cpp, ../../torch/csrc/autograd/generated/python_functions_4.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_0.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_1.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_2.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_fft_functions.cpp, ../../torch/csrc/autograd/generated/python_linalg_functions.cpp, ../../torch/csrc/autograd/generated/python_nested_functions.cpp, ../../torch/csrc/autograd/generated/python_sparse_functions.cpp, ../../torch/csrc/autograd/generated/python_special_functions.cpp, ../../torch/csrc/autograd/generated/python_return_types.cpp, ../../torch/csrc/autograd/generated/python_enum_tag.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/csrc/autograd/generated/python_return_types.h, ../../torch/testing/_internal/generated/annotated_fn_args.py, ../../torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-04-25T04:18:53.7759213Z [2624/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-04-25T04:18:53.8159251Z [2625/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-04-25T04:18:53.8315387Z [2626/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:18:53.8374365Z [2627/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:53.8504407Z [2628/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:18:53.8549070Z [2629/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:53.8744711Z [2630/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:18:54.1148578Z [2631/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-04-25T04:18:54.2196624Z [2632/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-04-25T04:18:54.3712522Z [2633/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-04-25T04:18:54.4678949Z [2634/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-04-25T04:18:54.6265009Z [2635/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-04-25T04:18:54.6475070Z [2636/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-04-25T04:18:54.7104876Z [2637/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-04-25T04:18:54.7701778Z [2638/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-04-25T04:18:55.1235261Z [2639/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-04-25T04:18:55.2445866Z [2640/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-04-25T04:18:55.6252087Z [2641/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-04-25T04:18:55.7298214Z [2642/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-04-25T04:18:55.7652049Z [2643/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-04-25T04:18:56.0180532Z [2644/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-04-25T04:18:56.0900830Z [2645/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-04-25T04:18:56.5740589Z [2646/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-04-25T04:18:56.6887557Z [2647/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-04-25T04:18:57.0846190Z [2648/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-04-25T04:18:57.1494934Z [2649/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-04-25T04:18:57.2248280Z [2650/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-04-25T04:18:57.4525079Z [2651/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-04-25T04:18:57.8907091Z [2652/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-04-25T04:18:57.9472067Z [2653/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-04-25T04:18:58.2822024Z [2654/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-04-25T04:18:58.3238831Z [2655/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-04-25T04:18:58.3267518Z [2656/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-04-25T04:18:58.3742169Z [2657/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-04-25T04:18:58.4105090Z [2658/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-04-25T04:18:58.4151006Z [2659/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-04-25T04:18:58.9291793Z [2660/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-04-25T04:18:58.9960541Z [2661/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-04-25T04:18:59.0882322Z [2662/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-04-25T04:18:59.1269156Z [2663/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-04-25T04:18:59.5612328Z [2664/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-04-25T04:18:59.8517386Z [2665/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-04-25T04:18:59.9073738Z [2666/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-04-25T04:18:59.9175857Z [2667/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-04-25T04:19:00.0258229Z [2668/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-04-25T04:19:00.3053735Z [2669/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-04-25T04:19:00.5593663Z [2670/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-04-25T04:19:00.8933223Z [2671/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-04-25T04:19:01.2381778Z [2672/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-04-25T04:19:01.3595053Z [2673/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-04-25T04:19:01.4889292Z [2674/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-04-25T04:19:01.5012167Z [2675/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-04-25T04:19:01.6554239Z [2676/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-04-25T04:19:01.7883816Z [2677/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-04-25T04:19:01.9913071Z [2678/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-04-25T04:19:02.0912218Z [2679/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-04-25T04:19:02.1100277Z [2680/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-04-25T04:19:02.2203772Z [2681/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-04-25T04:19:02.4492769Z [2682/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-04-25T04:19:02.5123765Z [2683/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-04-25T04:19:02.6326214Z [2684/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-04-25T04:19:02.6790120Z [2685/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-04-25T04:19:02.7548139Z [2686/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-04-25T04:19:02.7845960Z [2687/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-04-25T04:19:02.9203678Z [2688/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-04-25T04:19:03.1325427Z [2689/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-04-25T04:19:03.2177237Z [2690/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-04-25T04:19:03.5996058Z [2691/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-04-25T04:19:03.7460850Z [2692/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-04-25T04:19:04.3541492Z [2693/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-04-25T04:19:06.0768296Z [2694/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-04-25T04:19:06.1669196Z [2695/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-04-25T04:19:06.2941438Z [2696/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-04-25T04:19:06.4703707Z [2697/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-04-25T04:19:06.5949595Z [2698/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-04-25T04:19:07.0359466Z [2699/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-04-25T04:19:07.1524006Z [2700/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-04-25T04:19:07.9905513Z [2701/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-04-25T04:19:09.5489113Z [2702/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-04-25T04:19:09.6495703Z [2703/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-04-25T04:19:09.8934338Z [2704/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-04-25T04:19:09.9956574Z [2705/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-04-25T04:19:10.0903900Z [2706/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-04-25T04:19:10.3644288Z [2707/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-04-25T04:19:10.5168553Z [2708/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-04-25T04:19:10.9094026Z [2709/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-04-25T04:19:11.3508317Z [2710/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-04-25T04:19:11.4300384Z [2711/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-04-25T04:19:11.4860876Z [2712/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-04-25T04:19:12.4030286Z [2713/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-04-25T04:19:12.9192138Z [2714/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-04-25T04:19:13.1217113Z [2715/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-04-25T04:19:13.2003772Z [2716/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-04-25T04:19:13.3511434Z [2717/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-04-25T04:19:13.5142738Z [2718/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-04-25T04:19:13.5405150Z [2719/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-04-25T04:19:13.8296335Z [2720/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-04-25T04:19:13.8390870Z [2721/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-04-25T04:19:14.1086625Z [2722/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-04-25T04:19:14.2714796Z [2723/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-04-25T04:19:14.3164311Z [2724/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-04-25T04:19:14.4464406Z [2725/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-04-25T04:19:14.5906901Z [2726/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-04-25T04:19:14.6020330Z [2727/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-04-25T04:19:14.6373222Z [2728/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-04-25T04:19:14.9390933Z [2729/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-04-25T04:19:14.9886684Z [2730/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-04-25T04:19:14.9954567Z [2731/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-04-25T04:19:15.1251622Z [2732/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-04-25T04:19:15.2467784Z [2733/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-04-25T04:19:15.3093254Z [2734/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-04-25T04:19:15.4304533Z [2735/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-04-25T04:19:15.4838209Z [2736/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-04-25T04:19:15.5567734Z [2737/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-04-25T04:19:15.5669056Z [2738/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-04-25T04:19:15.8370235Z [2739/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-04-25T04:19:16.1115986Z [2740/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-04-25T04:19:16.1793832Z [2741/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-04-25T04:19:16.2139131Z [2742/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-04-25T04:19:16.3464756Z [2743/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-04-25T04:19:16.3755792Z [2744/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-04-25T04:19:16.4014255Z [2745/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-04-25T04:19:16.4135448Z [2746/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-04-25T04:19:16.4774695Z [2747/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-04-25T04:19:16.5389817Z [2748/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-04-25T04:19:16.7533250Z [2749/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-04-25T04:19:17.0148826Z [2750/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-04-25T04:19:17.1406026Z [2751/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-04-25T04:19:17.3191755Z [2752/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-04-25T04:19:17.3330644Z [2753/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-04-25T04:19:17.3832568Z [2754/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-04-25T04:19:17.3981223Z [2755/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-04-25T04:19:17.5354055Z [2756/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-04-25T04:19:17.5524951Z [2757/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-04-25T04:19:17.5590759Z [2758/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-04-25T04:19:17.7997424Z [2759/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-04-25T04:19:17.8513909Z [2760/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-04-25T04:19:17.9013496Z [2761/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-04-25T04:19:18.1814794Z [2762/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-04-25T04:19:18.2882393Z [2763/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-04-25T04:19:18.2910602Z [2764/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-04-25T04:19:18.3066100Z [2765/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-04-25T04:19:18.3977716Z [2766/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-04-25T04:19:18.5972112Z [2767/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-04-25T04:19:18.6180579Z [2768/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-04-25T04:19:18.6298079Z [2769/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-04-25T04:19:18.6323510Z [2770/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-04-25T04:19:18.6699306Z [2771/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-04-25T04:19:18.7339342Z [2772/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-04-25T04:19:19.1816759Z [2773/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-04-25T04:19:19.2024092Z [2774/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-04-25T04:19:19.4374612Z [2775/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-04-25T04:19:19.4655566Z [2776/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-04-25T04:19:19.5505140Z [2777/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-04-25T04:19:19.5631058Z [2778/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-04-25T04:19:19.5698825Z [2779/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-04-25T04:19:19.6728767Z [2780/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-04-25T04:19:20.0393522Z [2781/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-04-25T04:19:20.1356482Z [2782/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-04-25T04:19:20.3262350Z [2783/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-04-25T04:19:20.3643367Z [2784/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-04-25T04:19:20.4508399Z [2785/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-04-25T04:19:20.5020357Z [2786/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-04-25T04:19:20.6052641Z [2787/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-04-25T04:19:20.6262989Z [2788/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-04-25T04:19:20.7501847Z [2789/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-04-25T04:19:20.9363859Z [2790/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-04-25T04:19:21.2443628Z [2791/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-04-25T04:19:21.3668748Z [2792/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-04-25T04:19:21.3823485Z [2793/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-04-25T04:19:21.4498442Z [2794/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-04-25T04:19:21.5727036Z [2795/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-04-25T04:19:21.5820112Z [2796/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-04-25T04:19:21.6454299Z [2797/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-04-25T04:19:22.0123113Z [2798/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-04-25T04:19:22.1563076Z [2799/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-04-25T04:19:22.2494793Z [2800/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-04-25T04:19:22.2745218Z [2801/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-04-25T04:19:22.4106957Z [2802/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-04-25T04:19:22.4496460Z [2803/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-04-25T04:19:22.5295122Z [2804/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-04-25T04:19:22.5462036Z [2805/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-04-25T04:19:22.5520316Z [2806/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-04-25T04:19:22.8550803Z [2807/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-04-25T04:19:23.1737047Z [2808/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-04-25T04:19:23.2426969Z [2809/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-04-25T04:19:23.3327721Z [2810/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-04-25T04:19:23.3937808Z [2811/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-04-25T04:19:23.4808229Z [2812/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-04-25T04:19:23.5120612Z [2813/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-04-25T04:19:23.5287074Z [2814/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-04-25T04:19:23.5729967Z [2815/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-04-25T04:19:24.1069764Z [2816/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-04-25T04:19:24.1549969Z [2817/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-04-25T04:19:24.2138985Z [2818/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-04-25T04:19:24.2507359Z [2819/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-04-25T04:19:24.4138904Z [2820/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-04-25T04:19:24.4461567Z [2821/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-04-25T04:19:24.4587135Z [2822/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-04-25T04:19:24.5710398Z [2823/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-04-25T04:19:25.0598521Z [2824/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-04-25T04:19:25.0743825Z [2825/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-04-25T04:19:25.1159869Z [2826/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-04-25T04:19:25.1739484Z [2827/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-04-25T04:19:25.2254339Z [2828/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-04-25T04:19:25.3174185Z [2829/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-04-25T04:19:25.4202904Z [2830/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-04-25T04:19:25.6169609Z [2831/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-04-25T04:19:26.0164909Z [2832/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-04-25T04:19:26.0307209Z [2833/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-04-25T04:19:26.0470229Z [2834/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-04-25T04:19:26.0895907Z [2835/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-04-25T04:19:26.1815046Z [2836/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-04-25T04:19:26.1927710Z [2837/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-04-25T04:19:26.3215089Z [2838/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-04-25T04:19:26.5259003Z [2839/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-04-25T04:19:26.7948623Z [2840/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-04-25T04:19:26.8770569Z [2841/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-04-25T04:19:26.9515309Z [2842/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-04-25T04:19:27.0445951Z [2843/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-04-25T04:19:27.1336297Z [2844/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-04-25T04:19:27.1418715Z [2845/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-04-25T04:19:27.2383799Z [2846/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-04-25T04:19:27.5341451Z [2847/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-04-25T04:19:27.7604104Z [2848/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-04-25T04:19:27.8259791Z [2849/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-04-25T04:19:27.8406125Z [2850/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-04-25T04:19:27.9064994Z [2851/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-04-25T04:19:27.9460146Z [2852/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-04-25T04:19:28.0009276Z [2853/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-04-25T04:19:28.1223923Z [2854/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-04-25T04:19:28.4709515Z [2855/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-04-25T04:19:28.7147293Z [2856/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-04-25T04:19:28.7621978Z [2857/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-04-25T04:19:28.8342287Z [2858/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-04-25T04:19:28.9546566Z [2859/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-04-25T04:19:28.9616177Z [2860/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-04-25T04:19:29.0700568Z [2861/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-04-25T04:19:29.1181734Z [2862/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-04-25T04:19:29.3726425Z [2863/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-04-25T04:19:29.6128970Z [2864/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-04-25T04:19:29.6484502Z [2865/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-04-25T04:19:29.6863207Z [2866/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-04-25T04:19:29.8624003Z [2867/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-04-25T04:19:29.9146261Z [2868/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-04-25T04:19:30.0824035Z [2869/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-04-25T04:19:30.1915478Z [2870/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-04-25T04:19:30.2847266Z [2871/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-04-25T04:19:30.5484809Z [2872/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-04-25T04:19:30.5760267Z [2873/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-04-25T04:19:30.8611590Z [2874/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-04-25T04:19:31.2172803Z [2875/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-04-25T04:19:31.2333803Z [2876/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-04-25T04:19:31.4500079Z [2877/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-04-25T04:19:31.7243945Z [2878/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-04-25T04:19:31.8094443Z [2879/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-04-25T04:19:32.0978222Z [2880/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-04-25T04:19:32.1566717Z [2881/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-04-25T04:19:32.1657567Z [2882/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-04-25T04:19:32.3488903Z [2883/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-04-25T04:19:32.7511274Z [2884/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-04-25T04:19:32.9576511Z [2885/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-04-25T04:19:33.0478452Z [2886/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-04-25T04:19:33.1232679Z [2887/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-04-25T04:19:33.1508615Z [2888/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-04-25T04:19:33.1628819Z [2889/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-04-25T04:19:33.2284159Z [2890/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-04-25T04:19:33.3864261Z [2891/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-04-25T04:19:33.6770974Z [2892/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-04-25T04:19:33.9075496Z [2893/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-04-25T04:19:33.9995705Z [2894/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-04-25T04:19:34.0792302Z [2895/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-04-25T04:19:34.1271785Z [2896/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-04-25T04:19:34.1429035Z [2897/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-04-25T04:19:34.1627948Z [2898/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-04-25T04:19:34.2632261Z [2899/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-04-25T04:19:34.5816272Z [2900/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-04-25T04:19:34.7825928Z [2901/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-04-25T04:19:34.9089351Z [2902/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-04-25T04:19:34.9241099Z [2903/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-04-25T04:19:35.0884810Z [2904/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-04-25T04:19:35.1117764Z [2905/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-04-25T04:19:35.2288591Z [2906/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-04-25T04:19:35.2862673Z [2907/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-04-25T04:19:35.7119402Z [2908/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-04-25T04:19:35.9066940Z [2909/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-04-25T04:19:35.9866717Z [2910/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-04-25T04:19:36.0632390Z [2911/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-04-25T04:19:36.0801997Z [2912/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-04-25T04:19:36.1880470Z [2913/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-04-25T04:19:36.6241016Z [2914/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-04-25T04:19:36.8502157Z [2915/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-04-25T04:19:36.9857036Z [2916/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-04-25T04:19:37.0514165Z [2917/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-04-25T04:19:37.0685139Z [2918/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-04-25T04:19:37.1337384Z [2919/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-04-25T04:19:37.5798194Z [2920/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-04-25T04:19:37.8047866Z [2921/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-04-25T04:19:37.8247321Z [2922/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-04-25T04:19:37.9551068Z [2923/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-04-25T04:19:37.9726418Z [2924/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-04-25T04:19:37.9894735Z [2925/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-04-25T04:19:38.1163573Z [2926/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-04-25T04:19:40.4441234Z [2927/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-04-25T04:19:40.9350193Z [2928/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-04-25T04:19:41.0849266Z [2929/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-04-25T04:19:41.1237174Z [2930/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-04-25T04:19:41.2002998Z [2931/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-04-25T04:19:41.2150778Z [2932/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-04-25T04:19:41.2442008Z [2933/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-04-25T04:19:41.2775321Z [2934/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-04-25T04:19:41.3035272Z [2935/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-04-25T04:19:41.4388986Z [2936/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-04-25T04:19:41.7501137Z [2937/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-04-25T04:19:41.8127764Z [2938/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-04-25T04:19:42.7316597Z [2939/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-04-25T04:19:43.6368270Z [2940/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-04-25T04:19:44.3153017Z [2941/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-04-25T04:19:44.3838495Z [2942/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-04-25T04:19:44.4461819Z [2943/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-04-25T04:19:44.5235163Z [2944/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-04-25T04:19:44.5510944Z [2945/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-04-25T04:19:44.5664813Z [2946/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-04-25T04:19:44.6113848Z [2947/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-04-25T04:19:44.7029063Z [2948/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-04-25T04:19:45.2808848Z [2949/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-04-25T04:19:45.3217545Z [2950/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-04-25T04:19:45.3505606Z [2951/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-04-25T04:19:45.4012000Z [2952/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-04-25T04:19:45.4858589Z [2953/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-04-25T04:19:45.5456159Z [2954/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-04-25T04:19:45.5857828Z [2955/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-04-25T04:19:45.6360765Z [2956/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-04-25T04:19:45.7144206Z [2957/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-04-25T04:19:46.2323206Z [2958/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-04-25T04:19:46.2798415Z [2959/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-04-25T04:19:46.3501506Z [2960/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-04-25T04:19:46.3835669Z [2961/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-04-25T04:19:46.4094651Z [2962/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-04-25T04:19:46.5697419Z [2963/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-04-25T04:19:46.5793593Z [2964/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-04-25T04:19:46.8813330Z [2965/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-04-25T04:19:47.1168356Z [2966/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-04-25T04:19:47.3114803Z [2967/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-04-25T04:19:47.5285362Z [2968/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-04-25T04:19:47.5590656Z [2969/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-04-25T04:19:47.7242832Z [2970/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-04-25T04:19:48.0998809Z [2971/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-04-25T04:19:48.3365252Z [2972/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-04-25T04:19:48.5701315Z [2973/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-04-25T04:19:48.5958105Z [2974/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-04-25T04:19:48.6646797Z [2975/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-04-25T04:19:48.9115532Z [2976/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-04-25T04:19:49.0825411Z [2977/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-04-25T04:19:49.2642155Z [2978/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-04-25T04:19:49.7818409Z [2979/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-04-25T04:19:49.8008300Z [2980/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-04-25T04:19:49.8891449Z [2981/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-04-25T04:19:50.0831408Z [2982/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-04-25T04:19:50.1938219Z [2983/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-04-25T04:19:50.2323653Z [2984/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-04-25T04:19:50.2939850Z [2985/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-04-25T04:19:50.7824993Z [2986/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-04-25T04:19:50.7857226Z [2987/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-04-25T04:19:51.0639985Z [2988/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-04-25T04:19:51.1380174Z [2989/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-04-25T04:19:51.2082001Z [2990/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-04-25T04:19:51.2312633Z [2991/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-04-25T04:19:51.3511020Z [2992/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-04-25T04:19:51.4369599Z [2993/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-04-25T04:19:52.1038481Z [2994/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-04-25T04:19:52.1740065Z [2995/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-04-25T04:19:52.1951058Z [2996/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-04-25T04:19:52.4253734Z [2997/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-04-25T04:19:52.4544832Z [2998/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-04-25T04:19:52.4927898Z [2999/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-04-25T04:19:53.0664576Z [3000/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-04-25T04:19:53.1517547Z [3001/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-04-25T04:19:53.1602064Z [3002/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-04-25T04:19:53.2373212Z [3003/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-04-25T04:19:53.5205197Z [3004/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-04-25T04:19:53.8226279Z [3005/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-04-25T04:19:54.1190618Z [3006/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-04-25T04:19:54.1475942Z [3007/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-04-25T04:19:54.2299231Z [3008/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-04-25T04:19:54.2634035Z [3009/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-04-25T04:19:54.4001854Z [3010/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-04-25T04:19:54.8665050Z [3011/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-04-25T04:19:55.3440140Z [3012/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-04-25T04:19:55.3967282Z [3013/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-04-25T04:19:55.4805349Z [3014/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-04-25T04:19:55.7187702Z [3015/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-04-25T04:19:56.2237841Z [3016/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-04-25T04:19:56.3302621Z [3017/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-04-25T04:19:56.4973591Z [3018/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-04-25T04:19:56.7103451Z [3019/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-04-25T04:19:56.9753843Z [3020/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-04-25T04:19:57.1106927Z [3021/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-04-25T04:19:57.2929445Z [3022/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-04-25T04:19:57.3704430Z [3023/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-04-25T04:19:57.3801356Z [3024/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-04-25T04:19:57.4842815Z [3025/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-04-25T04:19:57.6259627Z [3026/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-04-25T04:19:57.6491473Z [3027/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-04-25T04:19:57.8182572Z [3028/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-04-25T04:19:57.8396473Z [3029/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-04-25T04:19:57.9006963Z [3030/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-04-25T04:19:57.9380560Z [3031/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-04-25T04:19:58.1040371Z [3032/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-04-25T04:19:58.3087532Z [3033/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-04-25T04:19:58.3243046Z [3034/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-04-25T04:19:58.5472355Z [3035/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-04-25T04:19:58.5798249Z [3036/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-04-25T04:19:59.3837744Z [3037/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-04-25T04:19:59.4584118Z [3038/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-04-25T04:19:59.5117352Z [3039/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-04-25T04:19:59.6445789Z [3040/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-04-25T04:19:59.7831180Z [3041/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-04-25T04:19:59.8512361Z [3042/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-04-25T04:19:59.9453207Z [3043/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-04-25T04:19:59.9653777Z [3044/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-04-25T04:20:00.9371738Z [3045/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-04-25T04:20:01.1473029Z [3046/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-04-25T04:20:01.1838396Z [3047/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-04-25T04:20:01.2208891Z [3048/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-04-25T04:20:01.3153986Z [3049/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-04-25T04:20:01.5226059Z [3050/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-04-25T04:20:01.5547966Z [3051/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-04-25T04:20:01.5920269Z [3052/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-04-25T04:20:02.3924025Z [3053/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-04-25T04:20:02.5121936Z [3054/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-04-25T04:20:02.5592744Z [3055/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-04-25T04:20:02.6274929Z [3056/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-04-25T04:20:02.6622165Z [3057/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-04-25T04:20:02.7788261Z [3058/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-04-25T04:20:02.8111533Z [3059/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-04-25T04:20:03.0356120Z [3060/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-04-25T04:20:03.3575241Z [3061/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-04-25T04:20:03.4652769Z [3062/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-04-25T04:20:03.5219063Z [3063/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-04-25T04:20:03.5872704Z [3064/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-04-25T04:20:03.6685545Z [3065/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-04-25T04:20:03.8289178Z [3066/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-04-25T04:20:03.8908736Z [3067/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-04-25T04:20:04.1075896Z [3068/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-04-25T04:20:04.1499512Z [3069/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-04-25T04:20:04.1927289Z [3070/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-04-25T04:20:04.3216215Z [3071/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-04-25T04:20:04.3771153Z [3072/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-04-25T04:20:04.4607504Z [3073/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-04-25T04:20:04.6363143Z [3074/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-04-25T04:20:04.6591795Z [3075/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-04-25T04:20:04.6872158Z [3076/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-04-25T04:20:04.7593183Z [3077/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-04-25T04:20:04.9007129Z [3078/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-04-25T04:20:05.2228525Z [3079/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:05.2825809Z [3080/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:05.3237085Z [3081/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:05.5184252Z [3082/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:05.6174041Z [3083/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.1450134Z [3084/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.1941057Z [3085/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.2385652Z [3086/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.4436144Z [3087/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.5702806Z [3088/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.6695923Z [3089/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:06.7128404Z [3090/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.1772055Z [3091/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.2525771Z [3092/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.3765638Z [3093/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-04-25T04:20:07.3897826Z [3094/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.4986238Z [3095/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-04-25T04:20:07.5486639Z [3096/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.5941063Z [3097/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-04-25T04:20:07.6422841Z [3098/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:07.8004763Z [3099/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.0580733Z [3100/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.1193860Z [3101/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.1692985Z [3102/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.2185268Z [3103/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.3442849Z [3104/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.4405842Z [3105/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.5395712Z [3106/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.6392386Z [3107/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.6575178Z [3108/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.7524014Z [3109/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.9347368Z [3110/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:08.9951335Z [3111/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.0555365Z [3112/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.0649204Z [3113/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.1833518Z [3114/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.2060074Z [3115/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.5082933Z [3116/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.6108852Z [3117/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.7210410Z [3118/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.8470000Z [3119/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.9121193Z [3120/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.9242916Z [3121/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:09.9964190Z [3122/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.0392281Z [3123/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.1179854Z [3124/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.3039099Z [3125/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.4734600Z [3126/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.5122765Z [3127/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.6320283Z [3128/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.6496385Z [3129/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.6972500Z [3130/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:10.7427483Z [3131/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.1469459Z [3132/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.2722451Z [3133/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.2723741Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(33): warning C4180: qualifier applied to function type has no meaning; ignored 2025-04-25T04:20:11.2725347Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(150): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-04-25T04:20:11.2726213Z with 2025-04-25T04:20:11.2726398Z [ 2025-04-25T04:20:11.2726608Z scalar_t=float, 2025-04-25T04:20:11.2727179Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:20:11.2727771Z ] 2025-04-25T04:20:11.2728749Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(272): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::DEFAULT::Vectorized &)' being compiled 2025-04-25T04:20:11.2729810Z with 2025-04-25T04:20:11.2729982Z [ 2025-04-25T04:20:11.2730191Z scalar_t=float, 2025-04-25T04:20:11.2730798Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-04-25T04:20:11.2731681Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:20:11.2732300Z ] 2025-04-25T04:20:11.2734349Z 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-04-25T04:20:11.2736253Z with 2025-04-25T04:20:11.2736564Z [ 2025-04-25T04:20:11.2736751Z scalar_t=scalar_t, 2025-04-25T04:20:11.2737027Z data_t=at::vec::DEFAULT::Vectorized, 2025-04-25T04:20:11.2737843Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:20:11.2738925Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:20:11.2739504Z ] 2025-04-25T04:20:11.2740986Z 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-04-25T04:20:11.2742535Z with 2025-04-25T04:20:11.2742726Z [ 2025-04-25T04:20:11.2742922Z scalar_t=scalar_t 2025-04-25T04:20:11.2743150Z ] 2025-04-25T04:20:11.2744708Z 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-04-25T04:20:11.2746328Z with 2025-04-25T04:20:11.2746515Z [ 2025-04-25T04:20:11.2746689Z scalar_t=scalar_t 2025-04-25T04:20:11.2746976Z ] 2025-04-25T04:20:11.2748048Z 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-04-25T04:20:11.2749178Z with 2025-04-25T04:20:11.2749397Z [ 2025-04-25T04:20:11.2749566Z scalar_t=scalar_t 2025-04-25T04:20:11.2749827Z ] 2025-04-25T04:20:11.2938063Z 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-04-25T04:20:11.2939478Z with 2025-04-25T04:20:11.2939676Z [ 2025-04-25T04:20:11.2939867Z scalar_t=scalar_t 2025-04-25T04:20:11.2940161Z ] 2025-04-25T04:20:11.2941055Z 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-04-25T04:20:11.2942407Z [3134/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.3108910Z [3135/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.3542648Z [3136/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.5023692Z [3137/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.5133170Z [3138/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.6313570Z [3139/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.6773401Z [3140/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.9108617Z [3141/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:11.9110684Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(517): warning C4333: '>>': right shift by too large amount, data loss 2025-04-25T04:20:11.9112849Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1172): warning C4333: '>>': right shift by too large amount, data loss 2025-04-25T04:20:12.0193299Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(517): 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-04-25T04:20:12.0197869Z [3142/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-04-25T04:20:12.0509431Z [3143/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.1696306Z [3144/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.2090629Z [3145/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.2882213Z [3146/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.3155192Z [3147/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.3482623Z [3148/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:20:12.4685395Z [3149/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-04-25T04:20:12.5410794Z [3150/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-04-25T04:20:12.5458077Z [3151/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-04-25T04:20:12.5712986Z [3152/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-04-25T04:20:12.6027471Z [3153/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-04-25T04:20:12.6600902Z [3154/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-04-25T04:20:12.7162573Z [3155/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-04-25T04:20:12.7835520Z [3156/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-04-25T04:20:12.7935811Z [3157/7078] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-04-25T04:20:12.8295803Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-04-25T04:20:12.8297163Z command line(1): note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:20:12.8298563Z 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-04-25T04:20:12.8300371Z [3158/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-04-25T04:20:12.8426233Z [3159/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-04-25T04:20:12.9695136Z [3160/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-04-25T04:20:13.1081628Z [3161/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-04-25T04:20:13.2776231Z [3162/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-04-25T04:20:13.7605563Z [3163/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-04-25T04:20:14.7785167Z [3164/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-04-25T04:20:15.1890820Z [3165/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-04-25T04:20:16.2664929Z [3166/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-04-25T04:20:16.4617945Z [3167/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-04-25T04:20:16.4886881Z [3168/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-04-25T04:20:16.5048334Z [3169/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-04-25T04:20:16.5274079Z [3170/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-04-25T04:20:16.5463174Z [3171/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-04-25T04:20:16.6249355Z [3172/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-04-25T04:20:16.7648002Z [3173/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-04-25T04:20:17.4727113Z [3174/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-04-25T04:20:17.4987788Z [3175/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-04-25T04:20:17.5677850Z [3176/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-04-25T04:20:17.8991617Z [3177/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-04-25T04:20:18.2255003Z [3178/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-04-25T04:20:18.2412066Z [3179/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-04-25T04:20:18.2448129Z [3180/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-04-25T04:20:18.2707286Z [3181/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-04-25T04:20:18.2976925Z [3182/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-04-25T04:20:18.3600783Z [3183/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-04-25T04:20:19.1332160Z [3184/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-04-25T04:20:19.1969986Z [3185/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-04-25T04:20:19.2351893Z [3186/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-04-25T04:20:20.1234182Z [3187/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-04-25T04:20:20.2475709Z [3188/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-04-25T04:20:21.0337342Z [3189/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-04-25T04:20:21.2036368Z [3190/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-04-25T04:20:21.5460629Z [3191/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-04-25T04:20:21.6192088Z [3192/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-04-25T04:20:21.6360328Z [3193/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-04-25T04:20:21.6861322Z [3194/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-04-25T04:20:21.9579444Z [3195/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-04-25T04:20:22.0241227Z [3196/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-04-25T04:20:22.1384040Z [3197/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-04-25T04:20:22.4956006Z [3198/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-04-25T04:20:22.5052206Z [3199/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-04-25T04:20:22.5423341Z [3200/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-04-25T04:20:22.5608716Z [3201/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-04-25T04:20:22.9227501Z [3202/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-04-25T04:20:22.9557138Z [3203/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-04-25T04:20:23.2111516Z [3204/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-04-25T04:20:23.3617386Z [3205/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-04-25T04:20:23.5109876Z [3206/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-04-25T04:20:23.6376732Z [3207/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-04-25T04:20:23.7143600Z [3208/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-04-25T04:20:23.7839408Z [3209/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-04-25T04:20:24.0318975Z [3210/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-04-25T04:20:24.1115385Z [3211/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-04-25T04:20:24.6925484Z [3212/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-04-25T04:20:24.7847091Z [3213/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-04-25T04:20:24.8298087Z [3214/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-04-25T04:20:24.9799716Z [3215/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-04-25T04:20:25.0990214Z [3216/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-04-25T04:20:25.2236157Z [3217/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-04-25T04:20:25.5792291Z [3218/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-04-25T04:20:25.8283814Z [3219/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-04-25T04:20:26.8938160Z [3220/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-04-25T04:20:27.0072660Z [3221/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-04-25T04:20:27.8662569Z [3222/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-04-25T04:20:27.9770015Z [3223/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-04-25T04:20:28.1843646Z [3224/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-04-25T04:20:28.2800474Z [3225/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-04-25T04:20:28.5335473Z [3226/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-04-25T04:20:28.5833841Z [3227/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-04-25T04:20:28.6439543Z [3228/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-04-25T04:20:28.8165465Z [3229/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-04-25T04:20:28.8712129Z [3230/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-04-25T04:20:28.9360392Z [3231/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-04-25T04:20:29.0535335Z [3232/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-04-25T04:20:29.1683674Z [3233/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-04-25T04:20:29.1970550Z [3234/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-04-25T04:20:29.2331712Z [3235/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-04-25T04:20:29.7952479Z [3236/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-04-25T04:20:29.9189246Z [3237/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-04-25T04:20:29.9480684Z [3238/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-04-25T04:20:29.9560923Z [3239/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-04-25T04:20:30.0334306Z [3240/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-04-25T04:20:30.1331323Z [3241/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-04-25T04:20:30.1483142Z [3242/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-04-25T04:20:30.1563069Z [3243/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-04-25T04:20:30.9253463Z [3244/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-04-25T04:20:31.1491344Z [3245/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-04-25T04:20:31.1709759Z [3246/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-04-25T04:20:31.1738052Z [3247/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-04-25T04:20:31.1764431Z [3248/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-04-25T04:20:31.1791741Z [3249/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-04-25T04:20:31.1818874Z [3250/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-04-25T04:20:31.9894481Z [3251/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-04-25T04:20:32.1110642Z [3252/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-04-25T04:20:32.1955556Z [3253/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-04-25T04:20:32.1987145Z [3254/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-04-25T04:20:32.2318565Z [3255/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-04-25T04:20:32.2596156Z [3256/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-04-25T04:20:32.5787720Z [3257/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-04-25T04:20:32.7766654Z [3258/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-04-25T04:20:33.1948017Z [3259/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-04-25T04:20:33.2486622Z [3260/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-04-25T04:20:33.4512719Z [3261/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-04-25T04:20:33.7197120Z [3262/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-04-25T04:20:33.8617627Z [3263/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-04-25T04:20:34.1015332Z [3264/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-04-25T04:20:34.1157536Z [3265/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-04-25T04:20:34.4123657Z [3266/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-04-25T04:20:34.6573171Z [3267/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-04-25T04:20:34.6752960Z [3268/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-04-25T04:20:34.9476306Z [3269/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-04-25T04:20:34.9982228Z [3270/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-04-25T04:20:35.0327077Z [3271/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-04-25T04:20:35.1824929Z [3272/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-04-25T04:20:35.3347494Z [3273/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-04-25T04:20:35.3764595Z [3274/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-04-25T04:20:35.6511489Z [3275/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-04-25T04:20:35.7107398Z [3276/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-04-25T04:20:35.9195721Z [3277/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-04-25T04:20:36.1099461Z [3278/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-04-25T04:20:36.1200357Z [3279/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-04-25T04:20:36.3038520Z [3280/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-04-25T04:20:36.5706684Z [3281/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-04-25T04:20:36.6816948Z [3282/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-04-25T04:20:37.0156171Z [3283/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-04-25T04:20:37.3632161Z [3284/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-04-25T04:20:37.6277845Z [3285/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-04-25T04:20:37.7013018Z [3286/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-04-25T04:20:38.0318193Z [3287/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-04-25T04:20:38.3126800Z [3288/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-04-25T04:20:38.5547408Z [3289/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-04-25T04:20:38.6137767Z [3290/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-04-25T04:20:38.6885885Z [3291/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-04-25T04:20:38.7616157Z [3292/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-04-25T04:20:39.0361183Z [3293/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-04-25T04:20:39.2857164Z [3294/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-04-25T04:20:39.5328419Z [3295/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-04-25T04:20:39.5663581Z [3296/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-04-25T04:20:39.5879442Z [3297/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-04-25T04:20:39.6229216Z [3298/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-04-25T04:20:39.6646451Z [3299/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-04-25T04:20:39.7296131Z [3300/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-04-25T04:20:40.0255088Z [3301/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-04-25T04:20:40.2896691Z [3302/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-04-25T04:20:40.6056929Z [3303/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-04-25T04:20:40.6361786Z [3304/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-04-25T04:20:40.6550773Z [3305/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-04-25T04:20:40.6710722Z [3306/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-04-25T04:20:40.7231747Z [3307/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-04-25T04:20:40.9526229Z [3308/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-04-25T04:20:41.6173582Z [3309/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-04-25T04:20:41.6903130Z [3310/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-04-25T04:20:41.7201139Z [3311/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-04-25T04:20:41.9443216Z [3312/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-04-25T04:20:42.5646781Z [3313/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-04-25T04:20:42.6405296Z [3314/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-04-25T04:20:42.7313013Z [3315/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-04-25T04:20:42.9823894Z [3316/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-04-25T04:20:43.2656374Z [3317/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-04-25T04:20:43.5208197Z [3318/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-04-25T04:20:43.6668174Z [3319/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-04-25T04:20:43.9468628Z [3320/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-04-25T04:20:44.0925444Z [3321/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-04-25T04:20:44.3234483Z [3322/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-04-25T04:20:44.3727041Z [3323/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-04-25T04:20:44.4360783Z [3324/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-04-25T04:20:44.5547795Z [3325/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-04-25T04:20:44.9173953Z [3326/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-04-25T04:20:45.4034981Z [3327/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-04-25T04:20:45.4710382Z [3328/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-04-25T04:20:45.5749364Z [3329/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-04-25T04:20:45.9363849Z [3330/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-04-25T04:20:46.0203691Z [3331/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-04-25T04:20:46.3311406Z [3332/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-04-25T04:20:46.4225254Z [3333/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-04-25T04:20:46.5671849Z [3334/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-04-25T04:20:46.8220637Z [3335/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-04-25T04:20:46.9099526Z [3336/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-04-25T04:20:46.9684353Z [3337/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-04-25T04:20:47.1813171Z [3338/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-04-25T04:20:47.4041673Z [3339/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-04-25T04:20:47.4806207Z [3340/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-04-25T04:20:47.6200269Z [3341/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-04-25T04:20:47.8276481Z [3342/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-04-25T04:20:47.9520987Z [3343/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-04-25T04:20:48.1771094Z [3344/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-04-25T04:20:48.3624136Z [3345/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-04-25T04:20:48.4818168Z [3346/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-04-25T04:20:48.5323677Z [3347/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-04-25T04:20:48.8137660Z [3348/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-04-25T04:20:48.9634520Z [3349/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-04-25T04:20:49.2238576Z [3350/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-04-25T04:20:49.3842311Z [3351/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-04-25T04:20:49.4085452Z [3352/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-04-25T04:20:49.5277579Z [3353/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-04-25T04:20:49.8065650Z [3354/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-04-25T04:20:50.0059886Z [3355/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-04-25T04:20:50.1899080Z [3356/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-04-25T04:20:50.3460959Z [3357/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-04-25T04:20:50.4236823Z [3358/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-04-25T04:20:50.6083288Z [3359/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-04-25T04:20:50.8678597Z [3360/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-04-25T04:20:51.3136186Z [3361/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-04-25T04:20:51.3334223Z [3362/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-04-25T04:20:51.3642385Z [3363/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-04-25T04:20:51.7548153Z [3364/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-04-25T04:20:51.8064254Z [3365/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-04-25T04:20:51.8452780Z [3366/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-04-25T04:20:51.8742090Z [3367/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-04-25T04:20:52.2935471Z [3368/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-04-25T04:20:52.5944492Z [3369/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-04-25T04:20:52.8004258Z [3370/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-04-25T04:20:52.9214202Z [3371/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-04-25T04:20:53.0492043Z [3372/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-04-25T04:20:53.1813330Z [3373/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-04-25T04:20:53.4756154Z [3374/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-04-25T04:20:53.5562307Z 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-04-25T04:20:53.5563603Z 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-04-25T04:20:53.5564804Z [3375/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-04-25T04:20:53.5844409Z [3376/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-04-25T04:20:53.7657049Z [3377/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-04-25T04:20:54.0288981Z [3378/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-04-25T04:20:54.4640104Z [3379/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-04-25T04:20:54.6673327Z [3380/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-04-25T04:20:54.9168200Z [3381/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-04-25T04:20:55.0240899Z [3382/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-04-25T04:20:56.3999231Z [3383/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-04-25T04:20:56.6664625Z [3384/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-04-25T04:20:56.6958717Z [3385/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-04-25T04:20:56.9681020Z [3386/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-04-25T04:20:57.2649760Z [3387/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-04-25T04:20:57.3380865Z [3388/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-04-25T04:20:57.4420642Z [3389/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-04-25T04:20:57.6569527Z [3390/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-04-25T04:20:58.1483234Z [3391/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-04-25T04:20:58.2364641Z [3392/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-04-25T04:20:58.3998819Z [3393/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-04-25T04:20:58.4550110Z [3394/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-04-25T04:20:58.6996240Z [3395/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-04-25T04:20:58.7218826Z [3396/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-04-25T04:20:59.4237219Z [3397/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-04-25T04:20:59.7412910Z [3398/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-04-25T04:20:59.7761881Z [3399/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-04-25T04:21:00.2672322Z [3400/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-04-25T04:21:00.4744587Z [3401/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-04-25T04:21:00.7297163Z [3402/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-04-25T04:21:01.2171463Z [3403/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-04-25T04:21:01.2787447Z [3404/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-04-25T04:21:01.7596291Z [3405/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-04-25T04:21:01.9046533Z [3406/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-04-25T04:21:01.9446373Z [3407/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-04-25T04:21:02.2329461Z [3408/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-04-25T04:21:02.2498539Z [3409/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-04-25T04:21:02.4133077Z [3410/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-04-25T04:21:02.4416104Z [3411/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-04-25T04:21:02.8864660Z [3412/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-04-25T04:21:02.9082276Z [3413/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-04-25T04:21:03.3172200Z [3414/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-04-25T04:21:03.8541634Z [3415/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-04-25T04:21:05.0838459Z [3416/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-04-25T04:21:05.6480166Z [3417/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-04-25T04:21:05.7981089Z [3418/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-04-25T04:21:06.1670787Z [3419/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-04-25T04:21:06.3282198Z [3420/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-04-25T04:21:06.3979114Z [3421/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-04-25T04:21:06.5121417Z [3422/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-04-25T04:21:06.8877454Z [3423/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-04-25T04:21:06.9626465Z [3424/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-04-25T04:21:07.0797003Z [3425/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-04-25T04:21:07.8318370Z [3426/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-04-25T04:21:08.6073733Z [3427/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-04-25T04:21:08.9981569Z [3428/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-04-25T04:21:09.2473022Z [3429/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-04-25T04:21:09.4036183Z [3430/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-04-25T04:21:09.9955614Z [3431/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-04-25T04:21:10.2135357Z [3432/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-04-25T04:21:10.3461405Z [3433/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-04-25T04:21:10.4194913Z [3434/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-04-25T04:21:10.4212531Z [3435/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-04-25T04:21:11.0310526Z [3436/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-04-25T04:21:12.0084071Z [3437/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-04-25T04:21:12.5674188Z [3438/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-04-25T04:21:12.5675495Z 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-04-25T04:21:12.5676362Z with 2025-04-25T04:21:12.5676802Z [ 2025-04-25T04:21:12.5676979Z T=int 2025-04-25T04:21:12.5677183Z ] 2025-04-25T04:21:12.5678153Z 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-04-25T04:21:12.7304472Z with 2025-04-25T04:21:12.7304787Z [ 2025-04-25T04:21:12.7304981Z T=int 2025-04-25T04:21:12.7305218Z ] 2025-04-25T04:21:12.7305765Z [3439/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-04-25T04:21:12.8255454Z [3440/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-04-25T04:21:13.6617535Z [3441/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-04-25T04:21:13.8429364Z [3442/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-04-25T04:21:14.0711826Z [3443/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-04-25T04:21:14.4975389Z [3444/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-04-25T04:21:15.3799334Z [3445/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-04-25T04:21:15.3800719Z 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-04-25T04:21:15.3801674Z with 2025-04-25T04:21:15.3801871Z [ 2025-04-25T04:21:15.3802046Z T=int 2025-04-25T04:21:15.3802318Z ] 2025-04-25T04:21:16.1009866Z 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-04-25T04:21:16.1011309Z with 2025-04-25T04:21:16.1011491Z [ 2025-04-25T04:21:16.1011679Z T=int 2025-04-25T04:21:16.1011912Z ] 2025-04-25T04:21:16.1012540Z [3446/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-04-25T04:21:16.6315053Z [3447/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-04-25T04:21:16.8864962Z [3448/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-04-25T04:21:17.0863556Z [3449/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-04-25T04:21:17.0943002Z [3450/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-04-25T04:21:17.3008185Z [3451/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-04-25T04:21:17.4701919Z [3452/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-04-25T04:21:17.6785261Z [3453/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-04-25T04:21:17.7267483Z [3454/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-04-25T04:21:17.9681628Z [3455/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-04-25T04:21:18.1112006Z [3456/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-04-25T04:21:18.2501405Z [3457/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-04-25T04:21:18.3853043Z [3458/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-04-25T04:21:18.4525660Z [3459/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-04-25T04:21:18.6974616Z [3460/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-04-25T04:21:18.7228844Z [3461/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-04-25T04:21:18.8025425Z [3462/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-04-25T04:21:18.9335160Z [3463/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-04-25T04:21:19.1880650Z [3464/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-04-25T04:21:19.2409804Z [3465/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-04-25T04:21:19.4079988Z [3466/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-04-25T04:21:19.6819441Z [3467/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-04-25T04:21:19.6879400Z [3468/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-04-25T04:21:19.7172343Z [3469/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-04-25T04:21:19.8146020Z [3470/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-04-25T04:21:19.9225643Z [3471/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-04-25T04:21:19.9227031Z 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-04-25T04:21:19.9227890Z with 2025-04-25T04:21:19.9228130Z [ 2025-04-25T04:21:19.9228321Z T=int 2025-04-25T04:21:19.9228514Z ] 2025-04-25T04:21:19.9229526Z 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-04-25T04:21:19.9319321Z with 2025-04-25T04:21:19.9319565Z [ 2025-04-25T04:21:19.9319739Z T=int 2025-04-25T04:21:19.9319975Z ] 2025-04-25T04:21:19.9320995Z [3472/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-04-25T04:21:19.9983445Z [3473/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-04-25T04:21:20.1624030Z [3474/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-04-25T04:21:20.2664244Z [3475/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-04-25T04:21:20.6722089Z [3476/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-04-25T04:21:20.6772704Z [3477/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-04-25T04:21:20.6954976Z [3478/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-04-25T04:21:20.8087153Z [3479/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-04-25T04:21:20.9194412Z [3480/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-04-25T04:21:20.9377753Z [3481/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-04-25T04:21:20.9633672Z [3482/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-04-25T04:21:21.0512695Z [3483/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-04-25T04:21:21.2929112Z [3484/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-04-25T04:21:21.7544781Z [3485/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-04-25T04:21:21.8421913Z [3486/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-04-25T04:21:21.8552521Z [3487/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-04-25T04:21:21.8581533Z [3488/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-04-25T04:21:21.9714705Z [3489/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-04-25T04:21:22.0533142Z [3490/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-04-25T04:21:22.1425005Z [3491/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-04-25T04:21:22.1985539Z [3492/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-04-25T04:21:22.4957592Z [3493/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-04-25T04:21:22.6241746Z [3494/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-04-25T04:21:22.7090390Z [3495/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-04-25T04:21:22.7275733Z [3496/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-04-25T04:21:22.7413013Z [3497/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-04-25T04:21:22.8375764Z [3498/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-04-25T04:21:22.9577698Z [3499/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-04-25T04:21:23.0088331Z [3500/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-04-25T04:21:23.0340539Z [3501/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-04-25T04:21:23.0476798Z [3502/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-04-25T04:21:23.5935746Z [3503/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-04-25T04:21:23.7084829Z [3504/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-04-25T04:21:23.7192662Z [3505/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-04-25T04:21:23.8731036Z [3506/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-04-25T04:21:24.0586686Z [3507/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-04-25T04:21:24.5581982Z [3508/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-04-25T04:21:24.6640715Z [3509/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-04-25T04:21:24.7101724Z [3510/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-04-25T04:21:25.6846225Z [3511/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-04-25T04:21:25.7624803Z [3512/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-04-25T04:21:25.9133625Z [3513/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-04-25T04:21:26.0011512Z [3514/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-04-25T04:21:26.7055154Z [3515/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-04-25T04:21:26.7541408Z [3516/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-04-25T04:21:26.7698916Z [3517/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-04-25T04:21:26.8829722Z [3518/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-04-25T04:21:26.9550698Z [3519/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-04-25T04:21:27.4050250Z [3520/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-04-25T04:21:27.5684878Z [3521/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-04-25T04:21:27.8979896Z [3522/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-04-25T04:21:28.0153403Z [3523/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-04-25T04:21:28.3373348Z [3524/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-04-25T04:21:28.3598845Z [3525/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-04-25T04:21:29.0399669Z [3526/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-04-25T04:21:29.0585305Z [3527/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-04-25T04:21:29.5147905Z [3528/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-04-25T04:21:30.0917107Z [3529/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-04-25T04:21:30.3322437Z [3530/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-04-25T04:21:30.4848226Z [3531/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-04-25T04:21:30.8435554Z [3532/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-04-25T04:21:31.1344033Z [3533/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-04-25T04:21:31.2893711Z [3534/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-04-25T04:21:31.4325575Z [3535/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-04-25T04:21:31.6554457Z [3536/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-04-25T04:21:31.7072875Z [3537/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-04-25T04:21:32.3245403Z [3538/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-04-25T04:21:32.3641394Z [3539/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-04-25T04:21:32.5138478Z [3540/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-04-25T04:21:32.7048184Z [3541/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-04-25T04:21:32.7428436Z [3542/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-04-25T04:21:32.9027293Z [3543/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-04-25T04:21:32.9657904Z [3544/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-04-25T04:21:33.1773635Z [3545/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-04-25T04:21:33.4261037Z [3546/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-04-25T04:21:33.4626180Z [3547/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-04-25T04:21:33.9127982Z [3548/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-04-25T04:21:33.9642675Z [3549/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-04-25T04:21:34.4297010Z [3550/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-04-25T04:21:34.7656848Z [3551/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-04-25T04:21:35.0647074Z [3552/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-04-25T04:21:36.1316644Z [3553/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-04-25T04:21:36.1930643Z [3554/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-04-25T04:21:36.4357570Z [3555/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-04-25T04:21:36.6158145Z [3556/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-04-25T04:21:36.6840950Z [3557/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\DMAConnectivity.cpp.obj 2025-04-25T04:21:36.7534460Z [3558/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-04-25T04:21:36.9448493Z [3559/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-04-25T04:21:37.0511232Z [3560/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-04-25T04:21:37.7507024Z [3561/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-04-25T04:21:37.8799143Z [3562/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-04-25T04:21:38.5176376Z [3563/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-04-25T04:21:38.8383755Z [3564/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-04-25T04:21:39.7125394Z [3565/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-04-25T04:21:40.1680043Z [3566/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-04-25T04:21:40.4610285Z [3567/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\SymmetricMemory.cpp.obj 2025-04-25T04:21:40.6297301Z [3568/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-04-25T04:21:40.8176737Z [3569/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-04-25T04:21:40.9218251Z [3570/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-04-25T04:21:41.2564080Z [3571/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-04-25T04:21:41.3326775Z [3572/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-04-25T04:21:41.6227493Z [3573/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-04-25T04:21:42.0910718Z [3574/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-04-25T04:21:42.2038373Z [3575/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-04-25T04:21:42.4870521Z [3576/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-04-25T04:21:42.6356487Z [3577/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-04-25T04:21:43.0747563Z [3578/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-04-25T04:21:43.2319390Z [3579/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-04-25T04:21:43.2953373Z [3580/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-04-25T04:21:44.2488993Z [3581/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-04-25T04:21:44.4384647Z [3582/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-04-25T04:21:44.5975280Z [3583/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-04-25T04:21:44.8300328Z 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-04-25T04:21:44.8302106Z [3584/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-04-25T04:21:45.0991658Z [3585/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-04-25T04:21:45.7141431Z [3586/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-04-25T04:21:45.7431865Z [3587/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-04-25T04:21:46.2526149Z [3588/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-04-25T04:21:46.4457763Z [3589/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-04-25T04:21:46.7073190Z [3590/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-04-25T04:21:46.8414507Z [3591/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-04-25T04:21:47.8968261Z [3592/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-04-25T04:21:48.0251623Z [3593/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-04-25T04:21:48.5923632Z [3594/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-04-25T04:21:49.1009157Z [3595/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-04-25T04:21:49.7843232Z [3596/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-04-25T04:21:49.8742035Z [3597/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-04-25T04:21:50.2412214Z [3598/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-04-25T04:21:50.3142510Z [3599/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-04-25T04:21:51.4300464Z [3600/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-04-25T04:21:51.6440970Z [3601/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-04-25T04:21:52.1426542Z [3602/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-04-25T04:21:52.8016344Z [3603/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-04-25T04:21:53.2787150Z [3604/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-04-25T04:21:53.4633550Z [3605/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-04-25T04:21:53.9406583Z [3606/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-04-25T04:21:54.0135412Z [3607/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-04-25T04:21:54.9531169Z [3608/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-04-25T04:21:55.2750851Z [3609/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-04-25T04:21:55.6528875Z [3610/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-04-25T04:21:56.3591950Z [3611/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-04-25T04:21:56.8609210Z [3612/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-04-25T04:21:57.2291219Z [3613/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-04-25T04:21:57.4778324Z [3614/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-04-25T04:21:57.5482891Z [3615/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-04-25T04:21:58.4508824Z [3616/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-04-25T04:21:58.6762807Z [3617/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-04-25T04:21:59.0234236Z [3618/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-04-25T04:21:59.5390457Z [3619/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-04-25T04:22:00.2859286Z [3620/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-04-25T04:22:00.5987839Z [3621/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-04-25T04:22:00.8363188Z [3622/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-04-25T04:22:01.0449612Z [3623/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-04-25T04:22:01.9517638Z [3624/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-04-25T04:22:02.0467507Z [3625/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-04-25T04:22:02.4259075Z [3626/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-04-25T04:22:02.9445560Z [3627/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-04-25T04:22:03.6456077Z [3628/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-04-25T04:22:04.0495740Z [3629/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-04-25T04:22:04.4844753Z [3630/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-04-25T04:22:04.5651426Z [3631/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-04-25T04:22:05.6034885Z [3632/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-04-25T04:22:05.6181371Z [3633/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-04-25T04:22:05.6304323Z [3634/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-04-25T04:22:05.9550893Z [3635/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-04-25T04:22:06.2334151Z [3636/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-04-25T04:22:06.3872272Z [3637/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-04-25T04:22:06.3998836Z [3638/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-04-25T04:22:06.8017273Z [3639/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-04-25T04:22:06.9049021Z [3640/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-04-25T04:22:06.9050174Z 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-04-25T04:22:06.9051361Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.4582890Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.4584240Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.4585492Z [3641/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-04-25T04:22:07.5253181Z [3642/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-04-25T04:22:07.5255294Z 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-04-25T04:22:07.5257542Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.5812562Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.5814546Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.5815831Z [3643/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-04-25T04:22:07.5816889Z 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-04-25T04:22:07.5818081Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.6219739Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.6221064Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:07.6222349Z [3644/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-04-25T04:22:07.6315444Z [3645/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-04-25T04:22:07.6316726Z 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-04-25T04:22:07.6318145Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.0217981Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.0220157Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.0222142Z [3646/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-04-25T04:22:08.0999265Z [3647/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.1000420Z 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-04-25T04:22:08.1001877Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.4781520Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.4783138Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.4784253Z [3648/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.4785245Z 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-04-25T04:22:08.4786566Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.5354780Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.5356104Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.5357190Z [3649/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.5358252Z 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-04-25T04:22:08.5359483Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6299019Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6300384Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6301544Z [3650/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.6302593Z 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-04-25T04:22:08.6303766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6515615Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6517835Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.6519683Z [3651/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.6521565Z 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-04-25T04:22:08.6523568Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.7584446Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.7586910Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.7589239Z [3652/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.7591384Z 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-04-25T04:22:08.7593530Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.9847501Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.9848794Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:08.9850007Z [3653/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:08.9851028Z 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-04-25T04:22:08.9852206Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1059491Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1061970Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1063904Z [3654/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.1065831Z 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-04-25T04:22:09.1068203Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1294476Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1296946Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.1298957Z [3655/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-04-25T04:22:09.3359117Z [3656/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.3360963Z 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-04-25T04:22:09.3363174Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.4249047Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.4251439Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.4253254Z [3657/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-04-25T04:22:09.4343834Z [3658/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.4345808Z 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-04-25T04:22:09.4348066Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5636906Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5638700Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5639879Z [3659/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.5640900Z 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-04-25T04:22:09.5642133Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5799861Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5801160Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.5802366Z [3660/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.5803624Z 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-04-25T04:22:09.5804873Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.6868678Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.6870156Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.6871214Z [3661/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.6872266Z 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-04-25T04:22:09.6873443Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.9844531Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.9846103Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.9847268Z [3662/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:09.9848581Z 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-04-25T04:22:09.9849773Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:09.9999644Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.0001870Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.0003538Z [3663/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.0005038Z 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-04-25T04:22:10.0006797Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.0755532Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.0756920Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.0758146Z [3664/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.0759220Z 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-04-25T04:22:10.0760456Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1442754Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1445084Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1447048Z [3665/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.1448954Z 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-04-25T04:22:10.1451138Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1869486Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1870869Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.1871988Z [3666/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.1873022Z 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-04-25T04:22:10.1874656Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.3936771Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.3938134Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.3939657Z [3667/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.3940711Z 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-04-25T04:22:10.3942089Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.4676410Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.4678851Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.4680847Z [3668/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.4682817Z 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-04-25T04:22:10.4685019Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6040412Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6041756Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6042882Z [3669/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.6043947Z 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-04-25T04:22:10.6045198Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6187609Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6189329Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.6190550Z [3670/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.6191823Z 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-04-25T04:22:10.6193150Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.7279739Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.7281190Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.7282342Z [3671/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.7283429Z 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-04-25T04:22:10.7285459Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.9524322Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.9525755Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:10.9526932Z [3672/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:10.9528015Z 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-04-25T04:22:10.9529267Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0038867Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0040313Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0041538Z [3673/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.0042603Z 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-04-25T04:22:11.0043882Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0311351Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0313388Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0314819Z [3674/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.0315921Z 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-04-25T04:22:11.0317230Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0852223Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0853873Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.0855076Z [3675/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.0856172Z 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-04-25T04:22:11.0857370Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1754952Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1757259Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1759236Z [3676/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.1761077Z 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-04-25T04:22:11.1763163Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1930361Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1931651Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.1933382Z [3677/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.1935549Z 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-04-25T04:22:11.1937247Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.2097196Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.2099620Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.2101720Z [3678/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.2104005Z 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-04-25T04:22:11.2106113Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.6166245Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.6167640Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.6168865Z [3679/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.6170257Z 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-04-25T04:22:11.6171453Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.7966857Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.7969054Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.7970345Z [3680/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.7971442Z 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-04-25T04:22:11.7972776Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.8504443Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.8505779Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.8506929Z [3681/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.8507920Z 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-04-25T04:22:11.8509220Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9302192Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9303535Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9304861Z [3682/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.9306015Z 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-04-25T04:22:11.9307258Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9460777Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9463146Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9465098Z [3683/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.9466839Z 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-04-25T04:22:11.9469197Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9618704Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9620002Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:11.9621501Z [3684/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-04-25T04:22:11.9622647Z 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-04-25T04:22:11.9623967Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.0829898Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.0831371Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.0832550Z [3685/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.0833651Z 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-04-25T04:22:12.0834983Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.1385391Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.1387840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.1389849Z [3686/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.1391766Z 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-04-25T04:22:12.1394031Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.2173507Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.2174860Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.2175993Z [3687/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.2177094Z 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-04-25T04:22:12.2178358Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.4885856Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.4888289Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.4890566Z [3688/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.4891809Z 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-04-25T04:22:12.4893223Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.6245440Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.6246756Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.6247945Z [3689/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.7379001Z 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-04-25T04:22:12.7380208Z [3690/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.7381268Z 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-04-25T04:22:12.7382474Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.7703090Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.7704398Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.7705518Z [3691/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.8023032Z 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-04-25T04:22:12.8024912Z [3692/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.8026770Z 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-04-25T04:22:12.8028921Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8436874Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8438306Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8439528Z [3693/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.8440823Z 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-04-25T04:22:12.8442005Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8476991Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8478866Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:12.8480126Z [3694/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:12.8481424Z 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-04-25T04:22:12.8482774Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.0901782Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.0904037Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.0905889Z [3695/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.0907661Z 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-04-25T04:22:13.0909597Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4014822Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4016137Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4017281Z [3696/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.4018393Z 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-04-25T04:22:13.4019604Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4409994Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4412452Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4414489Z [3697/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.4416329Z 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-04-25T04:22:13.4418767Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4421201Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4423491Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4425902Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(33): warning C4180: qualifier applied to function type has no meaning; ignored 2025-04-25T04:22:13.4428279Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(150): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-04-25T04:22:13.4429776Z with 2025-04-25T04:22:13.4430100Z [ 2025-04-25T04:22:13.4430427Z scalar_t=float, 2025-04-25T04:22:13.4431327Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:22:13.4432255Z ] 2025-04-25T04:22:13.4433986Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(272): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX2::Vectorized &)' being compiled 2025-04-25T04:22:13.4435928Z with 2025-04-25T04:22:13.4436239Z [ 2025-04-25T04:22:13.4436557Z scalar_t=float, 2025-04-25T04:22:13.4437500Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-04-25T04:22:13.4439072Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:22:13.4440030Z ] 2025-04-25T04:22:13.4443324Z 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-04-25T04:22:13.4446837Z with 2025-04-25T04:22:13.4447154Z [ 2025-04-25T04:22:13.4447469Z scalar_t=scalar_t, 2025-04-25T04:22:13.4447951Z data_t=at::vec::AVX2::Vectorized, 2025-04-25T04:22:13.4449320Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:22:13.4451177Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:22:13.4452211Z ] 2025-04-25T04:22:13.4454970Z 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-04-25T04:22:13.4458493Z with 2025-04-25T04:22:13.4458722Z [ 2025-04-25T04:22:13.4458972Z scalar_t=scalar_t 2025-04-25T04:22:13.4459272Z ] 2025-04-25T04:22:13.4462702Z 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-04-25T04:22:13.4465375Z with 2025-04-25T04:22:13.4465661Z [ 2025-04-25T04:22:13.4465960Z scalar_t=scalar_t 2025-04-25T04:22:13.4466325Z ] 2025-04-25T04:22:13.4468102Z 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-04-25T04:22:13.4469602Z with 2025-04-25T04:22:13.4469789Z [ 2025-04-25T04:22:13.4469990Z scalar_t=scalar_t 2025-04-25T04:22:13.4470304Z ] 2025-04-25T04:22:13.4578198Z 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-04-25T04:22:13.4580059Z with 2025-04-25T04:22:13.4580386Z [ 2025-04-25T04:22:13.4580725Z scalar_t=scalar_t 2025-04-25T04:22:13.4581160Z ] 2025-04-25T04:22:13.4582520Z 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-04-25T04:22:13.4584572Z [3698/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.4586155Z 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-04-25T04:22:13.4587931Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4845505Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4846934Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.4848127Z [3699/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.4849250Z 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-04-25T04:22:13.4850573Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.5773681Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.5775072Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.5776151Z [3700/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.6037443Z 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-04-25T04:22:13.6039445Z [3701/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.8237728Z 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-04-25T04:22:13.8239023Z [3702/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:13.8240092Z 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-04-25T04:22:13.8241364Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.9212091Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.9214572Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:13.9216626Z [3703/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.0091745Z 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-04-25T04:22:14.0092797Z [3704/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.0093977Z 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-04-25T04:22:14.0095224Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.0611684Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.0614167Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.0616615Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(517): warning C4333: '>>': right shift by too large amount, data loss 2025-04-25T04:22:14.0618675Z [3705/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.0620596Z 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-04-25T04:22:14.0622933Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.3807868Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.3809168Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.3810253Z [3706/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.3811322Z 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-04-25T04:22:14.3812495Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4398832Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4400193Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4401253Z [3707/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.4402444Z 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-04-25T04:22:14.4403821Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4476651Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4478091Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4479209Z [3708/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.4480267Z 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-04-25T04:22:14.4481458Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4548487Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4549830Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.4551004Z [3709/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-04-25T04:22:14.4741877Z [3710/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.4743646Z 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-04-25T04:22:14.4745751Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5033299Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5034931Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5036185Z [3711/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-04-25T04:22:14.5037246Z 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-04-25T04:22:14.5038459Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5992486Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5995202Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:22:14.5997471Z [3712/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-04-25T04:22:14.9482997Z [3713/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-04-25T04:22:14.9932905Z [3714/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.0094119Z [3715/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.3394174Z [3716/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.4589784Z [3717/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.4619114Z [3718/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.4754864Z [3719/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.4841063Z [3720/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.5405716Z [3721/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.6221251Z [3722/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:15.9255857Z [3723/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.0495530Z [3724/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.1355513Z [3725/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.2987394Z [3726/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.4075294Z [3727/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.4166427Z [3728/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.4297013Z [3729/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.4465130Z [3730/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.5928623Z [3731/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.7148421Z [3732/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.9545912Z [3733/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:16.9872590Z [3734/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.0079364Z [3735/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.1071187Z [3736/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.3614840Z [3737/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.4994555Z [3738/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.5284356Z [3739/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.5314498Z [3740/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.6131325Z [3741/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.6697412Z [3742/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.7137803Z [3743/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:17.7274599Z [3744/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.2138433Z [3745/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.3696642Z [3746/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.3841185Z [3747/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.4004189Z [3748/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.4382024Z [3749/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.4838752Z [3750/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.5717589Z [3751/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.6940395Z [3752/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.8108418Z [3753/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:18.9942161Z [3754/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.1000878Z [3755/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.2599027Z [3756/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.2687579Z [3757/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.3279024Z [3758/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.3347361Z [3759/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.3987639Z [3760/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.6732396Z [3761/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.9751680Z [3762/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.9835051Z [3763/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:19.9925685Z [3764/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.0123240Z [3765/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.0124627Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(33): warning C4180: qualifier applied to function type has no meaning; ignored 2025-04-25T04:22:20.0126585Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(150): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-04-25T04:22:20.0127907Z with 2025-04-25T04:22:20.0128188Z [ 2025-04-25T04:22:20.0128470Z scalar_t=float, 2025-04-25T04:22:20.0129279Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:22:20.0130110Z ] 2025-04-25T04:22:20.0131782Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(272): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX512::Vectorized &)' being compiled 2025-04-25T04:22:20.0133723Z with 2025-04-25T04:22:20.0134012Z [ 2025-04-25T04:22:20.0134334Z scalar_t=float, 2025-04-25T04:22:20.0135279Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-04-25T04:22:20.0136845Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:22:20.0137823Z ] 2025-04-25T04:22:20.0141451Z 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-04-25T04:22:20.0144992Z with 2025-04-25T04:22:20.0145296Z [ 2025-04-25T04:22:20.0145591Z scalar_t=scalar_t, 2025-04-25T04:22:20.0146058Z data_t=at::vec::AVX512::Vectorized, 2025-04-25T04:22:20.0147393Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:22:20.0149273Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:22:20.0150366Z ] 2025-04-25T04:22:20.0152093Z 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-04-25T04:22:20.0153720Z with 2025-04-25T04:22:20.0153922Z [ 2025-04-25T04:22:20.0154114Z scalar_t=scalar_t 2025-04-25T04:22:20.0154373Z ] 2025-04-25T04:22:20.0156300Z 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-04-25T04:22:20.0158828Z with 2025-04-25T04:22:20.0159054Z [ 2025-04-25T04:22:20.0159249Z scalar_t=scalar_t 2025-04-25T04:22:20.0159759Z ] 2025-04-25T04:22:20.0160863Z 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-04-25T04:22:20.0163060Z with 2025-04-25T04:22:20.0163287Z [ 2025-04-25T04:22:20.0163518Z scalar_t=scalar_t 2025-04-25T04:22:20.0163781Z ] 2025-04-25T04:22:20.1009561Z 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-04-25T04:22:20.1010886Z with 2025-04-25T04:22:20.1011088Z [ 2025-04-25T04:22:20.1011286Z scalar_t=scalar_t 2025-04-25T04:22:20.1011578Z ] 2025-04-25T04:22:20.1012499Z 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-04-25T04:22:20.1013791Z [3766/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.2105910Z [3767/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.3006603Z [3768/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.4076536Z [3769/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.4960564Z [3770/7078] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-04-25T04:22:20.5622840Z [3771/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.5849321Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(517): warning C4333: '>>': right shift by too large amount, data loss 2025-04-25T04:22:20.5850554Z [3772/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.7931919Z [3773/7078] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-04-25T04:22:20.8471518Z [3774/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.8904762Z [3775/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-04-25T04:22:20.9695487Z [3776/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-04-25T04:22:21.0095630Z [3777/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:21.0543979Z [3778/7078] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:22:21.3460192Z [3779/7078] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCPUCustomOps.cpp.obj 2025-04-25T04:22:21.4450556Z [3780/7078] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\custom_ops.cpp.obj 2025-04-25T04:22:21.7605348Z [3781/7078] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-04-25T04:22:21.8451077Z [3782/7078] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-04-25T04:22:21.8516947Z [3783/7078] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-04-25T04:22:22.1544300Z [3784/7078] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-04-25T04:22:23.0736765Z [3785/7078] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-04-25T04:22:23.2963507Z [3786/7078] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\operator_registry.cpp.obj 2025-04-25T04:22:24.4827138Z [3787/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-04-25T04:22:24.6874307Z [3788/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-04-25T04:22:25.2062443Z [3789/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-04-25T04:22:25.2407613Z [3790/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-04-25T04:22:25.2837977Z [3791/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-04-25T04:22:25.3211633Z [3792/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-04-25T04:22:25.4708537Z [3793/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-04-25T04:22:25.8978789Z [3794/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-04-25T04:22:26.0561608Z [3795/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-04-25T04:22:26.3536102Z [3796/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-04-25T04:22:26.3573101Z [3797/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-04-25T04:22:26.3955456Z [3798/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-04-25T04:22:26.5236817Z [3799/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-04-25T04:22:26.5341013Z [3800/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-04-25T04:22:26.6485055Z [3801/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-04-25T04:22:26.9885821Z [3802/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-04-25T04:22:27.1067437Z [3803/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-04-25T04:22:27.2106607Z [3804/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-04-25T04:22:27.2888515Z [3805/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-04-25T04:22:27.5745528Z [3806/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-04-25T04:22:27.5833018Z [3807/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-04-25T04:22:28.0950251Z [3808/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-04-25T04:22:28.2391109Z [3809/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-04-25T04:22:28.4393316Z [3810/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-04-25T04:22:29.1425910Z [3811/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-04-25T04:22:29.5441090Z [3812/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-04-25T04:22:30.1007055Z [3813/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-04-25T04:22:30.5390264Z [3814/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-04-25T04:22:30.5747627Z [3815/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-04-25T04:22:31.1462706Z [3816/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-04-25T04:22:31.5178730Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\Module.cpp(603): warning C4003: not enough arguments for function-like macro invocation 'END_HANDLE_TH_ERRORS_RET' 2025-04-25T04:22:31.5179996Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\Module.cpp(1968): warning C4003: not enough arguments for function-like macro invocation 'CATCH_TH_ERRORS' 2025-04-25T04:22:31.5181265Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\Module.cpp(1968): warning C4003: not enough arguments for function-like macro invocation 'CATCH_CORE_ERRORS' 2025-04-25T04:22:31.5182205Z [3817/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-04-25T04:22:32.8748223Z [3818/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-04-25T04:22:33.3946238Z [3819/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-04-25T04:22:33.8396572Z [3820/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-04-25T04:22:33.9203109Z [3821/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-04-25T04:22:34.0882984Z [3822/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-04-25T04:22:34.6087098Z [3823/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-04-25T04:22:34.9006311Z [3824/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-04-25T04:22:34.9130544Z [3825/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-04-25T04:22:35.0758505Z [3826/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-04-25T04:22:35.6632252Z [3827/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-04-25T04:22:36.2044463Z [3828/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-04-25T04:22:36.9724375Z [3829/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-04-25T04:22:37.4389593Z [3830/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-04-25T04:22:38.2770784Z [3831/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-04-25T04:22:38.3739071Z [3832/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-04-25T04:22:38.5565506Z [3833/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-04-25T04:22:39.3066593Z [3834/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-04-25T04:22:39.4173344Z [3835/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-04-25T04:22:40.0160134Z [3836/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-04-25T04:22:40.0523392Z [3837/7078] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-04-25T04:22:40.1681611Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:22:40.1682628Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:22:40.1683451Z [3838/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-04-25T04:22:40.4297831Z [3839/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-04-25T04:22:40.7892573Z [3840/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-04-25T04:22:40.7911021Z [3841/7078] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-04-25T04:22:41.0132544Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:22:41.0133577Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:22:41.0134380Z [3842/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-04-25T04:22:41.1486683Z [3843/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-04-25T04:22:41.1614457Z [3844/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-04-25T04:22:41.3188182Z [3845/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-04-25T04:22:41.3964583Z [3846/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-04-25T04:22:41.6789178Z [3847/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-04-25T04:22:41.9603401Z [3848/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-04-25T04:22:42.0080254Z [3849/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-04-25T04:22:42.7180058Z [3850/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-04-25T04:22:42.9280663Z [3851/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-04-25T04:22:43.0029749Z [3852/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-04-25T04:22:43.8958321Z [3853/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-04-25T04:22:43.9538603Z [3854/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-04-25T04:22:44.6161240Z [3855/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-04-25T04:22:44.6449336Z [3856/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-04-25T04:22:44.7129399Z [3857/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-04-25T04:22:44.9428752Z [3858/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-04-25T04:22:45.6573445Z [3859/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-04-25T04:22:45.8623409Z [3860/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-04-25T04:22:46.0932453Z [3861/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-04-25T04:22:46.2253478Z [3862/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-04-25T04:22:47.2222340Z [3863/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-04-25T04:22:47.2934740Z [3864/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-04-25T04:22:47.6260662Z [3865/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-04-25T04:22:48.1475012Z [3866/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-04-25T04:22:48.2728702Z [3867/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-04-25T04:22:48.4001216Z [3868/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-04-25T04:22:48.5210476Z [3869/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-04-25T04:22:48.6354761Z [3870/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-04-25T04:22:49.1558165Z [3871/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-04-25T04:22:49.2289655Z [3872/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-04-25T04:22:49.2640495Z [3873/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-04-25T04:22:49.3943118Z [3874/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-04-25T04:22:49.4154898Z [3875/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-04-25T04:22:49.6134921Z [3876/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-04-25T04:22:49.7466335Z [3877/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-04-25T04:22:50.1982096Z [3878/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-04-25T04:22:50.3889700Z [3879/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-04-25T04:22:50.5385626Z [3880/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-04-25T04:22:50.7414938Z [3881/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-04-25T04:22:51.1425409Z [3882/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-04-25T04:22:51.3355587Z [3883/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-04-25T04:22:51.4140105Z [3884/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-04-25T04:22:51.5921807Z [3885/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-04-25T04:22:51.7834791Z [3886/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-04-25T04:22:53.1802680Z [3887/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-04-25T04:22:53.3483597Z [3888/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-04-25T04:22:54.7491288Z [3889/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-04-25T04:22:55.0508274Z [3890/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-04-25T04:22:55.1172516Z [3891/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-04-25T04:22:55.1961629Z [3892/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-04-25T04:22:55.4599932Z [3893/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-04-25T04:22:55.5286011Z [3894/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-04-25T04:22:56.4109274Z [3895/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-04-25T04:22:56.7479730Z [3896/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-04-25T04:22:56.8993132Z [3897/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-04-25T04:22:57.7868463Z [3898/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-04-25T04:22:57.9042515Z [3899/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-04-25T04:22:58.4820371Z [3900/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-04-25T04:22:58.5411969Z [3901/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-04-25T04:22:58.5413465Z 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-04-25T04:22:58.5415362Z 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-04-25T04:22:58.5416752Z with 2025-04-25T04:22:58.5416942Z [ 2025-04-25T04:22:58.5417132Z _Ty1=const pybind11::object &, 2025-04-25T04:22:58.5417453Z _Ty2=const pybind11::object & 2025-04-25T04:22:58.5417788Z ] 2025-04-25T04:22:58.5418838Z 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-04-25T04:22:58.5419891Z with 2025-04-25T04:22:58.5420075Z [ 2025-04-25T04:22:58.5420265Z _InIt1=const pybind11::object *, 2025-04-25T04:22:58.5420638Z _InIt2=const pybind11::object *, 2025-04-25T04:22:58.5420934Z _Pr=std::equal_to 2025-04-25T04:22:58.5421263Z ] 2025-04-25T04:22:58.5422378Z 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-04-25T04:22:58.5423697Z with 2025-04-25T04:22:58.5423914Z [ 2025-04-25T04:22:58.5424370Z _InIt1=const pybind11::object *, 2025-04-25T04:22:58.5424659Z _InIt2=const pybind11::object * 2025-04-25T04:22:58.5424963Z ] 2025-04-25T04:22:58.9172345Z 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-04-25T04:22:58.9174515Z [3902/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-04-25T04:22:59.1604523Z [3903/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-04-25T04:22:59.4675255Z [3904/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-04-25T04:23:00.1349837Z [3905/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-04-25T04:23:01.4513877Z [3906/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-04-25T04:23:01.5150680Z [3907/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-04-25T04:23:01.9806295Z [3908/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-04-25T04:23:02.3049846Z [3909/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-04-25T04:23:02.4549880Z [3910/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-04-25T04:23:02.4666036Z [3911/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-04-25T04:23:02.5448855Z [3912/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-04-25T04:23:02.6864778Z [3913/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-04-25T04:23:03.2177598Z [3914/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-04-25T04:23:03.5394536Z [3915/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-04-25T04:23:03.5425796Z [3916/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-04-25T04:23:03.6033289Z [3917/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-04-25T04:23:03.7378455Z [3918/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-04-25T04:23:04.4755068Z [3919/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-04-25T04:23:04.4918917Z [3920/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-04-25T04:23:04.7028650Z [3921/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-04-25T04:23:05.3929915Z [3922/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-04-25T04:23:05.4226402Z [3923/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-04-25T04:23:05.6017832Z [3924/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-04-25T04:23:05.7970813Z [3925/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-04-25T04:23:05.9300233Z [3926/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-04-25T04:23:06.6766886Z [3927/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-04-25T04:23:06.7233476Z [3928/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-04-25T04:23:06.8608377Z [3929/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-04-25T04:23:07.0157520Z [3930/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-04-25T04:23:07.5677643Z [3931/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-04-25T04:23:07.5906182Z [3932/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-04-25T04:23:08.0084774Z [3933/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-04-25T04:23:08.0318792Z [3934/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-04-25T04:23:08.4600575Z [3935/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-04-25T04:23:08.6478966Z [3936/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:08.7521656Z [3937/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:08.8096390Z [3938/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-04-25T04:23:08.8723107Z [3939/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:08.8982796Z [3940/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-04-25T04:23:08.9306711Z [3941/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:08.9958105Z [3942/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.0137664Z [3943/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.0785518Z [3944/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.1102374Z [3945/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.1259508Z [3946/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.1913594Z [3947/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.2209285Z [3948/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.2457253Z [3949/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.3112644Z [3950/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.3476475Z [3951/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.3787187Z [3952/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.4299131Z [3953/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.5025589Z [3954/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.5156583Z [3955/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.5475756Z [3956/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.6330589Z [3957/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.6344533Z [3958/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.6594920Z [3959/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.7523053Z [3960/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:09.7574396Z [3961/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:09.8156940Z [3962/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:09.8754395Z [3963/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:09.8938084Z [3964/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:09.9285880Z [3965/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.0218839Z [3966/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.0269194Z [3967/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:10.1288865Z [3968/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:10.1353472Z [3969/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.1409145Z [3970/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.2687919Z [3971/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:10.2701046Z [3972/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.2800181Z [3973/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:10.3800998Z [3974/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.3874061Z [3975/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-04-25T04:23:10.4049998Z [3976/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-04-25T04:23:10.4579264Z [3977/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-04-25T04:23:10.5121079Z [3978/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.5491266Z [3979/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.5773897Z [3980/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.6163771Z [3981/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:10.6270552Z [3982/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:10.7130030Z [3983/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:10.7143493Z [3984/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.7582867Z [3985/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:10.7696642Z [3986/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.8462407Z [3987/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.8521050Z [3988/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:10.8965294Z [3989/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:10.9096541Z [3990/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:10.9712678Z [3991/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:10.9832980Z [3992/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.0630866Z [3993/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.0731582Z [3994/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.1022918Z [3995/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-04-25T04:23:11.1086470Z [3996/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.1215333Z [3997/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.2146288Z [3998/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.2279051Z [3999/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.2388022Z [4000/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.2445759Z [4001/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.2508575Z [4002/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.3565142Z [4003/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.3667937Z [4004/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.3759995Z [4005/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.3874275Z [4006/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.3887539Z [4007/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.5368443Z [4008/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.5418977Z [4009/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.5620589Z [4010/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.5867873Z [4011/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.6391091Z [4012/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.6541712Z [4013/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-04-25T04:23:11.6600605Z [4014/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.6782676Z [4015/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.7089287Z [4016/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.7511497Z [4017/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.7742616Z [4018/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.7855282Z [4019/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.7957416Z [4020/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.8092335Z [4021/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.8650672Z [4022/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.8728029Z [4023/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:11.8999175Z [4024/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:11.9041601Z [4025/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:11.9200279Z [4026/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:11.9737285Z [4027/7078] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-04-25T04:23:11.9977846Z [4028/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:12.0194664Z [4029/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:12.0352453Z [4030/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:12.0552182Z [4031/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:12.0668760Z [4032/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-04-25T04:23:12.1316657Z [4033/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-04-25T04:23:12.1410296Z [4034/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:12.1422419Z [4035/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-04-25T04:23:12.1434690Z [4036/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-04-25T04:23:12.1446613Z [4037/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-04-25T04:23:12.1571678Z [4038/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-04-25T04:23:12.1650625Z [4039/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-04-25T04:23:12.2547909Z [4040/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-04-25T04:23:12.2822818Z [4041/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-04-25T04:23:12.2921762Z [4042/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-04-25T04:23:12.2934625Z [4043/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-04-25T04:23:12.2999124Z [4044/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-04-25T04:23:12.3121845Z [4045/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-04-25T04:23:12.3722990Z [4046/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-04-25T04:23:12.3853304Z [4047/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-04-25T04:23:12.3899488Z [4048/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-04-25T04:23:12.4047920Z [4049/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-04-25T04:23:12.4198610Z [4050/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-04-25T04:23:12.4280169Z [4051/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-04-25T04:23:12.4333626Z [4052/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-04-25T04:23:12.4548069Z [4053/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-04-25T04:23:12.4588394Z [4054/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-04-25T04:23:12.4761851Z [4055/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-04-25T04:23:12.4847728Z [4056/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-04-25T04:23:12.4898906Z [4057/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-04-25T04:23:12.5179315Z [4058/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-04-25T04:23:12.5277482Z [4059/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-04-25T04:23:12.5484009Z [4060/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-04-25T04:23:12.5799922Z [4061/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-04-25T04:23:12.5850008Z [4062/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-04-25T04:23:12.5862326Z [4063/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-04-25T04:23:12.6180587Z [4064/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-04-25T04:23:12.6268899Z [4065/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-04-25T04:23:12.6363861Z [4066/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-04-25T04:23:12.6423611Z [4067/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-04-25T04:23:12.6889294Z [4068/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-04-25T04:23:12.6901757Z [4069/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-04-25T04:23:12.7073892Z [4070/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-04-25T04:23:12.7174366Z [4071/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-04-25T04:23:12.7258865Z [4072/7078] 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-04-25T04:23:12.7803942Z [4073/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-04-25T04:23:12.7940072Z [4074/7078] 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-04-25T04:23:12.8134239Z [4075/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-04-25T04:23:12.8147062Z [4076/7078] 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-04-25T04:23:12.8353361Z [4077/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-04-25T04:23:12.8440723Z [4078/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-04-25T04:23:12.8498495Z [4079/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-04-25T04:23:12.8850502Z [4080/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-04-25T04:23:12.9029752Z [4081/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-04-25T04:23:12.9211628Z [4082/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-04-25T04:23:12.9259400Z [4083/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-04-25T04:23:12.9353679Z [4084/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-04-25T04:23:12.9637637Z [4085/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-04-25T04:23:12.9730695Z [4086/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-04-25T04:23:12.9743574Z [4087/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-04-25T04:23:12.9961777Z [4088/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-04-25T04:23:13.0229368Z [4089/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.0453889Z [4090/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.0611841Z [4091/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.0624980Z [4092/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.0808787Z [4093/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.1046903Z [4094/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.1122520Z [4095/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.1190940Z [4096/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.1505403Z [4097/7078] 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-04-25T04:23:13.1612119Z [4098/7078] 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-04-25T04:23:13.1821458Z [4099/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-04-25T04:23:13.1870428Z [4100/7078] 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-04-25T04:23:13.2051798Z [4101/7078] 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-04-25T04:23:13.2168090Z [4102/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-04-25T04:23:13.2247916Z [4103/7078] 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-04-25T04:23:13.2739656Z [4104/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-04-25T04:23:13.2787731Z [4105/7078] 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-04-25T04:23:13.2834364Z [4106/7078] 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-04-25T04:23:13.2963024Z [4107/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-04-25T04:23:13.2978468Z [4108/7078] 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-04-25T04:23:13.2990132Z [4109/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-04-25T04:23:13.3346961Z [4110/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-04-25T04:23:13.3522552Z [4111/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-04-25T04:23:13.3827660Z [4112/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-04-25T04:23:13.3889037Z [4113/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-04-25T04:23:13.4114836Z [4114/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-04-25T04:23:13.4164716Z [4115/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-04-25T04:23:13.4212356Z [4116/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-04-25T04:23:13.4402776Z [4117/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-04-25T04:23:13.4746005Z [4118/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-04-25T04:23:13.4795612Z [4119/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-04-25T04:23:13.4899472Z [4120/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-04-25T04:23:13.5124852Z [4121/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-04-25T04:23:13.5297107Z [4122/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-04-25T04:23:13.5566197Z [4123/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-04-25T04:23:13.5625693Z [4124/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-04-25T04:23:13.5691837Z [4125/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-04-25T04:23:13.5800417Z [4126/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-04-25T04:23:13.5969216Z [4127/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.6054081Z [4128/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.6238973Z [4129/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.6681149Z [4130/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.7040582Z [4131/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.7096814Z [4132/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.7386623Z [4133/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-04-25T04:23:13.7565817Z [4134/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-04-25T04:23:13.7639254Z [4135/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-04-25T04:23:13.7735155Z [4136/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-04-25T04:23:13.8039169Z [4137/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-04-25T04:23:13.8210234Z [4138/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-04-25T04:23:13.8295255Z [4139/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-04-25T04:23:13.9035824Z [4140/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-04-25T04:23:13.9275958Z [4141/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-04-25T04:23:13.9490540Z [4142/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-04-25T04:23:13.9805207Z [4143/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-04-25T04:23:14.0408829Z [4144/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-04-25T04:23:14.1081994Z [4145/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.1347240Z [4146/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-04-25T04:23:14.1520671Z [4147/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.1909283Z [4148/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.2232022Z [4149/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-04-25T04:23:14.2465710Z [4150/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.2849947Z [4151/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.3030065Z [4152/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.3205787Z [4153/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.3570715Z [4154/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.4035233Z [4155/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.4540223Z [4156/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.5792030Z [4157/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.6317231Z [4158/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.6759657Z [4159/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.6929615Z [4160/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.7277955Z [4161/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.7462754Z [4162/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.8063165Z [4163/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.8257361Z [4164/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-04-25T04:23:14.8552110Z [4165/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:14.8756672Z [4166/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-04-25T04:23:16.3150742Z [4167/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-04-25T04:23:16.3779311Z [4168/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-04-25T04:23:16.3981152Z [4169/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-04-25T04:23:16.4157240Z [4170/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-04-25T04:23:16.4329860Z [4171/7078] 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-04-25T04:23:16.4382901Z [4172/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-04-25T04:23:16.4516861Z [4173/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-04-25T04:23:16.4566196Z [4174/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-04-25T04:23:16.5135012Z [4175/7078] 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-04-25T04:23:16.5347970Z [4176/7078] 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-04-25T04:23:16.5399391Z [4177/7078] 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-04-25T04:23:16.5643834Z [4178/7078] 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-04-25T04:23:16.5700386Z [4179/7078] 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-04-25T04:23:16.5714692Z [4180/7078] 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-04-25T04:23:16.6211081Z [4181/7078] 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-04-25T04:23:16.6542991Z [4182/7078] 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-04-25T04:23:16.6736294Z [4183/7078] 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-04-25T04:23:16.6806770Z [4184/7078] 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-04-25T04:23:16.6993243Z [4185/7078] 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-04-25T04:23:16.7011104Z [4186/7078] 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-04-25T04:23:16.7286230Z [4187/7078] 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-04-25T04:23:16.7658625Z [4188/7078] 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-04-25T04:23:16.7716490Z [4189/7078] 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-04-25T04:23:16.8019132Z [4190/7078] 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-04-25T04:23:16.8214683Z [4191/7078] 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-04-25T04:23:16.8500624Z [4192/7078] 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-04-25T04:23:16.8605790Z [4193/7078] 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-04-25T04:23:16.8622975Z [4194/7078] 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-04-25T04:23:16.8818375Z [4195/7078] 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-04-25T04:23:16.8921802Z [4196/7078] 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-04-25T04:23:16.9107799Z [4197/7078] 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-04-25T04:23:16.9344493Z [4198/7078] 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-04-25T04:23:16.9828748Z [4199/7078] 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-04-25T04:23:16.9841456Z [4200/7078] 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-04-25T04:23:17.0129598Z [4201/7078] 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-04-25T04:23:17.0256904Z [4202/7078] 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-04-25T04:23:17.0485855Z [4203/7078] 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-04-25T04:23:17.0680461Z [4204/7078] 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-04-25T04:23:17.1027256Z [4205/7078] 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-04-25T04:23:17.1196221Z [4206/7078] 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-04-25T04:23:17.1366045Z [4207/7078] 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-04-25T04:23:17.1497769Z [4208/7078] 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-04-25T04:23:17.1762915Z [4209/7078] 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-04-25T04:23:17.1820852Z [4210/7078] 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-04-25T04:23:17.2360275Z [4211/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.2428734Z [4212/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.2497346Z [4213/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.2550842Z [4214/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.2850437Z [4215/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.3248831Z [4216/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.3321473Z [4217/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.3683694Z [4218/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.3860804Z [4219/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.4061368Z [4220/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-04-25T04:23:17.4076609Z [4221/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.4132894Z [4222/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.4460010Z [4223/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.4719593Z [4224/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.5051369Z [4225/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.5401450Z [4226/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.5413945Z [4227/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.5493230Z [4228/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.5995688Z [4229/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.6008686Z [4230/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.6325823Z [4231/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.6628021Z [4232/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.6679439Z [4233/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.6887762Z [4234/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.7256708Z [4235/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.7269658Z [4236/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.7321520Z [4237/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.7767084Z [4238/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-04-25T04:23:17.8104393Z [4239/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-04-25T04:23:17.8275648Z [4240/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.8403492Z [4241/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.8679547Z [4242/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.8931156Z [4243/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-04-25T04:23:17.9120106Z [4244/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.9264858Z [4245/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-04-25T04:23:17.9470816Z [4246/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.9590736Z [4247/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-04-25T04:23:17.9712523Z [4248/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-04-25T04:23:18.0072805Z [4249/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-04-25T04:23:18.0296098Z [4250/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-04-25T04:23:18.0538853Z [4251/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-04-25T04:23:18.0896889Z [4252/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-04-25T04:23:18.0940640Z [4253/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-04-25T04:23:18.1265774Z [4254/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-04-25T04:23:18.1280012Z [4255/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-04-25T04:23:18.1382894Z [4256/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-04-25T04:23:18.1439324Z [4257/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-04-25T04:23:18.1854122Z [4258/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-04-25T04:23:18.1912439Z [4259/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-04-25T04:23:18.2016385Z [4260/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-04-25T04:23:18.2285196Z [4261/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-04-25T04:23:18.2422316Z [4262/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-04-25T04:23:18.2474779Z [4263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-04-25T04:23:18.2490452Z [4264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-04-25T04:23:18.2884863Z [4265/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-04-25T04:23:18.3340617Z [4266/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-04-25T04:23:18.3403789Z [4267/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-04-25T04:23:18.3616339Z [4268/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-04-25T04:23:18.3666279Z [4269/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-04-25T04:23:18.3719094Z [4270/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-04-25T04:23:18.3973187Z [4271/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-04-25T04:23:18.4594964Z [4272/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-04-25T04:23:18.4643367Z [4273/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-04-25T04:23:18.4753933Z [4274/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-04-25T04:23:18.4799763Z [4275/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-04-25T04:23:18.4884125Z [4276/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-04-25T04:23:18.4897497Z [4277/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-04-25T04:23:18.5088271Z [4278/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-04-25T04:23:18.5677030Z [4279/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-04-25T04:23:18.5742458Z [4280/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-04-25T04:23:18.6095656Z [4281/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-04-25T04:23:18.6151709Z [4282/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-04-25T04:23:18.6208634Z [4283/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-04-25T04:23:18.6428127Z [4284/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-04-25T04:23:18.6679462Z [4285/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-04-25T04:23:18.6977985Z [4286/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-04-25T04:23:18.7323049Z [4287/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-04-25T04:23:18.7376693Z [4288/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-04-25T04:23:18.7443651Z [4289/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-04-25T04:23:18.7693315Z [4290/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-04-25T04:23:18.7802784Z [4291/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-04-25T04:23:18.7981178Z [4292/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-04-25T04:23:18.8060631Z [4293/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-04-25T04:23:18.8779922Z [4294/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-04-25T04:23:18.8855287Z [4295/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-04-25T04:23:18.9003686Z [4296/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-04-25T04:23:18.9069962Z [4297/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-04-25T04:23:18.9125233Z [4298/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-04-25T04:23:18.9276065Z [4299/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-04-25T04:23:18.9828144Z [4300/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-04-25T04:23:19.0257983Z [4301/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-04-25T04:23:19.0335819Z [4302/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-04-25T04:23:19.0423151Z [4303/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-04-25T04:23:19.0440300Z [4304/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-04-25T04:23:19.0534168Z [4305/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-04-25T04:23:19.0855124Z [4306/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-04-25T04:23:19.1205252Z [4307/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-04-25T04:23:19.1259773Z [4308/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-04-25T04:23:19.1469735Z [4309/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-04-25T04:23:19.1525444Z [4310/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-04-25T04:23:19.1649899Z [4311/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-04-25T04:23:19.1824559Z [4312/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-04-25T04:23:19.1935883Z [4313/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-04-25T04:23:19.2156448Z [4314/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-04-25T04:23:19.2530911Z [4315/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-04-25T04:23:19.2545549Z [4316/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-04-25T04:23:19.2754590Z [4317/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-04-25T04:23:19.2978872Z [4318/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-04-25T04:23:19.3224681Z [4319/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-04-25T04:23:19.3451398Z [4320/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-04-25T04:23:19.3518004Z [4321/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-04-25T04:23:19.3680509Z [4322/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-04-25T04:23:19.3906751Z [4323/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-04-25T04:23:19.4188175Z [4324/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-04-25T04:23:19.4374351Z [4325/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-04-25T04:23:19.4581330Z [4326/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-04-25T04:23:19.4629329Z [4327/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-04-25T04:23:19.4685342Z [4328/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-04-25T04:23:19.4854829Z [4329/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-04-25T04:23:19.5553149Z [4330/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-04-25T04:23:19.5618944Z [4331/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-04-25T04:23:19.5664487Z [4332/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-04-25T04:23:19.5814446Z [4333/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-04-25T04:23:19.5874440Z [4334/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-04-25T04:23:19.6080317Z [4335/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-04-25T04:23:19.6297600Z [4336/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-04-25T04:23:19.6636283Z [4337/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-04-25T04:23:19.6694334Z [4338/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-04-25T04:23:19.6758191Z [4339/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-04-25T04:23:19.6914813Z [4340/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-04-25T04:23:19.7193094Z [4341/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-04-25T04:23:19.7387377Z [4342/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-04-25T04:23:19.7648293Z [4343/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-04-25T04:23:19.7858979Z [4344/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-04-25T04:23:19.7871448Z [4345/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-04-25T04:23:19.7883798Z [4346/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-04-25T04:23:19.8603208Z [4347/7078] 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-04-25T04:23:19.8688472Z [4348/7078] 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-04-25T04:23:19.8734493Z [4349/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-04-25T04:23:19.8826289Z [4350/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-04-25T04:23:19.8870062Z [4351/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-04-25T04:23:19.8923437Z [4352/7078] 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-04-25T04:23:19.9093045Z [4353/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-04-25T04:23:19.9937327Z [4354/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-04-25T04:23:20.0066248Z [4355/7078] 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-04-25T04:23:20.0116261Z [4356/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-04-25T04:23:20.0269037Z [4357/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-04-25T04:23:20.0282360Z [4358/7078] 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-04-25T04:23:20.1089938Z [4359/7078] 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-04-25T04:23:20.1104636Z [4360/7078] 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-04-25T04:23:20.1298499Z [4361/7078] 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-04-25T04:23:20.1401221Z [4362/7078] 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-04-25T04:23:20.1456302Z [4363/7078] 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-04-25T04:23:20.1552021Z [4364/7078] 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-04-25T04:23:20.1622364Z [4365/7078] 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-04-25T04:23:20.2418437Z [4366/7078] 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-04-25T04:23:20.2554100Z [4367/7078] 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-04-25T04:23:20.2766844Z [4368/7078] 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-04-25T04:23:20.2883878Z [4369/7078] 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-04-25T04:23:20.2894965Z [4370/7078] 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-04-25T04:23:20.3030089Z [4371/7078] 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-04-25T04:23:20.3685741Z [4372/7078] 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-04-25T04:23:20.3969439Z [4373/7078] 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-04-25T04:23:20.3987578Z [4374/7078] 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-04-25T04:23:20.4085604Z [4375/7078] 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-04-25T04:23:20.4148275Z [4376/7078] 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-04-25T04:23:20.4232639Z [4377/7078] 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-04-25T04:23:20.4323485Z [4378/7078] 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-04-25T04:23:20.4973297Z [4379/7078] 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-04-25T04:23:20.5191566Z [4380/7078] 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-04-25T04:23:20.5268354Z [4381/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.5441661Z [4382/7078] 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-04-25T04:23:20.5492996Z [4383/7078] 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-04-25T04:23:20.5548938Z [4384/7078] 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-04-25T04:23:20.5649500Z [4385/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.6183883Z [4386/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.6415799Z [4387/7078] 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-04-25T04:23:20.6542508Z [4388/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.6674740Z [4389/7078] 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-04-25T04:23:20.6731266Z [4390/7078] 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-04-25T04:23:20.6781598Z [4391/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.6990212Z [4392/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.7326565Z [4393/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.7613003Z [4394/7078] 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-04-25T04:23:20.7963023Z [4395/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.8214049Z [4396/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-04-25T04:23:20.8300025Z [4397/7078] 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-04-25T04:23:20.8479707Z [4398/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.8559057Z [4399/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:20.8709427Z [4400/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-04-25T04:23:20.9083432Z [4401/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-04-25T04:23:20.9308657Z [4402/7078] 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-04-25T04:23:20.9360027Z [4403/7078] 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-04-25T04:23:20.9506946Z [4404/7078] 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-04-25T04:23:20.9590428Z [4405/7078] 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-04-25T04:23:20.9725087Z [4406/7078] 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-04-25T04:23:20.9847343Z [4407/7078] 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-04-25T04:23:21.0331509Z [4408/7078] 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-04-25T04:23:21.0563572Z [4409/7078] 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-04-25T04:23:21.0691107Z [4410/7078] 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-04-25T04:23:21.0797342Z [4411/7078] 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-04-25T04:23:21.1151142Z [4412/7078] 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-04-25T04:23:21.1200832Z [4413/7078] 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-04-25T04:23:21.1748657Z [4414/7078] 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-04-25T04:23:21.1873706Z [4415/7078] 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-04-25T04:23:21.1928050Z [4416/7078] 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-04-25T04:23:21.1990588Z [4417/7078] 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-04-25T04:23:21.2089114Z [4418/7078] 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-04-25T04:23:21.2438030Z [4419/7078] 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-04-25T04:23:21.2698332Z [4420/7078] 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-04-25T04:23:21.3158293Z [4421/7078] 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-04-25T04:23:21.3215373Z [4422/7078] 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-04-25T04:23:21.3282884Z [4423/7078] 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-04-25T04:23:21.3401373Z [4424/7078] 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-04-25T04:23:21.3784882Z [4425/7078] 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-04-25T04:23:21.3854928Z [4426/7078] 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-04-25T04:23:21.3949778Z [4427/7078] 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-04-25T04:23:21.4469127Z [4428/7078] 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-04-25T04:23:21.4689814Z [4429/7078] 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-04-25T04:23:21.4873964Z [4430/7078] 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-04-25T04:23:21.4922914Z [4431/7078] 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-04-25T04:23:21.5031133Z [4432/7078] 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-04-25T04:23:21.5097488Z [4433/7078] 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-04-25T04:23:21.5425044Z [4434/7078] 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-04-25T04:23:21.6074898Z [4435/7078] 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-04-25T04:23:21.6410613Z [4436/7078] 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-04-25T04:23:21.6453751Z [4437/7078] 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-04-25T04:23:21.6554245Z [4438/7078] 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-04-25T04:23:21.6687742Z [4439/7078] 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-04-25T04:23:21.6916440Z [4440/7078] 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-04-25T04:23:21.7056726Z [4441/7078] 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-04-25T04:23:21.7387461Z [4442/7078] 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-04-25T04:23:21.7528077Z [4443/7078] 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-04-25T04:23:21.7539939Z [4444/7078] 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-04-25T04:23:21.7837529Z [4445/7078] 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-04-25T04:23:21.7893190Z [4446/7078] 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-04-25T04:23:21.8279082Z [4447/7078] 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-04-25T04:23:21.8299771Z [4448/7078] 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-04-25T04:23:21.8500278Z [4449/7078] 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-04-25T04:23:21.8655832Z [4450/7078] 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-04-25T04:23:21.8778220Z [4451/7078] 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-04-25T04:23:21.9159161Z [4452/7078] 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-04-25T04:23:21.9288615Z [4453/7078] 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-04-25T04:23:21.9470669Z [4454/7078] 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-04-25T04:23:21.9526746Z [4455/7078] 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-04-25T04:23:21.9739983Z [4456/7078] 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-04-25T04:23:21.9813380Z [4457/7078] 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-04-25T04:23:22.0378600Z [4458/7078] 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-04-25T04:23:22.0392595Z [4459/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-04-25T04:23:22.0479070Z [4460/7078] 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-04-25T04:23:22.0644186Z [4461/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-04-25T04:23:22.0749552Z [4462/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-04-25T04:23:22.0840531Z [4463/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-04-25T04:23:22.0930189Z [4464/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-04-25T04:23:22.1453819Z [4465/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-04-25T04:23:22.1567880Z [4466/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-04-25T04:23:22.1800795Z [4467/7078] 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-04-25T04:23:22.1813887Z [4468/7078] 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-04-25T04:23:22.1866716Z [4469/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-04-25T04:23:22.1999371Z [4470/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.2070717Z [4471/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.2631892Z [4472/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.2723515Z [4473/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.2976031Z [4474/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.3144650Z [4475/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-04-25T04:23:22.3224816Z [4476/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.3281520Z [4477/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.3577687Z [4478/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-04-25T04:23:22.3665133Z [4479/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-04-25T04:23:22.3715527Z [4480/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-04-25T04:23:22.4291848Z [4481/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.4415788Z [4482/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.4719797Z [4483/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.4930793Z [4484/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.4987209Z [4485/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.4999795Z [4486/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.5048018Z [4487/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.6181685Z [4488/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.6225676Z [4489/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.6271674Z [4490/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.6480841Z [4491/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.6558477Z [4492/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.6569774Z [4493/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.6747366Z [4494/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.7641038Z [4495/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.7767667Z [4496/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.7821859Z [4497/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.8085351Z [4498/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.8097333Z [4499/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.8108568Z [4500/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.8210823Z [4501/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.8827222Z [4502/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.9045914Z [4503/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.9220513Z [4504/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.9235261Z [4505/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.9287190Z [4506/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:22.9301551Z [4507/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:22.9359902Z [4508/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.0143973Z [4509/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.0259065Z [4510/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.0468494Z [4511/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.0528692Z [4512/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.0578270Z [4513/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.0757809Z [4514/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.0962155Z [4515/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.1279762Z [4516/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.1425008Z [4517/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.1711397Z [4518/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.1758071Z [4519/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-04-25T04:23:23.1769730Z [4520/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-04-25T04:23:23.1913285Z [4521/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-04-25T04:23:23.2219827Z [4522/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-04-25T04:23:23.2306506Z [4523/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-04-25T04:23:23.2796693Z [4524/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-04-25T04:23:23.2861414Z [4525/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-04-25T04:23:23.2959042Z [4526/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-04-25T04:23:23.2972471Z [4527/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-04-25T04:23:23.3025472Z [4528/7078] 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-04-25T04:23:23.3398643Z [4529/7078] 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-04-25T04:23:23.3692234Z [4530/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-04-25T04:23:23.3791902Z [4531/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-04-25T04:23:23.3942603Z [4532/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-04-25T04:23:23.3993142Z [4533/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-04-25T04:23:23.4055717Z [4534/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-04-25T04:23:23.4263396Z [4535/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-04-25T04:23:23.4355712Z [4536/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-04-25T04:23:23.4613980Z [4537/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-04-25T04:23:23.4999884Z [4538/7078] 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-04-25T04:23:23.5134086Z [4539/7078] 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-04-25T04:23:23.5174809Z [4540/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-04-25T04:23:23.5298011Z [4541/7078] 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-04-25T04:23:23.5379582Z [4542/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-04-25T04:23:23.5990433Z [4543/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-04-25T04:23:23.6004804Z [4544/7078] 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-04-25T04:23:23.6091314Z [4545/7078] 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-04-25T04:23:23.6327271Z [4546/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-04-25T04:23:23.6557686Z [4547/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-04-25T04:23:23.6927636Z [4548/7078] 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-04-25T04:23:23.7061551Z [4549/7078] 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-04-25T04:23:23.7156664Z [4550/7078] 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-04-25T04:23:23.7212122Z [4551/7078] 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-04-25T04:23:23.7262629Z [4552/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-04-25T04:23:23.7444462Z [4553/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-04-25T04:23:23.7498722Z [4554/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-04-25T04:23:23.7902008Z [4555/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-04-25T04:23:23.8014928Z [4556/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-04-25T04:23:23.8148741Z [4557/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-04-25T04:23:23.8191994Z [4558/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-04-25T04:23:23.8282301Z [4559/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-04-25T04:23:23.8371847Z [4560/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-04-25T04:23:23.8432153Z [4561/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-04-25T04:23:23.8832344Z [4562/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-04-25T04:23:23.8933631Z [4563/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-04-25T04:23:23.9040480Z [4564/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-04-25T04:23:23.9485046Z [4565/7078] 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-04-25T04:23:23.9644480Z [4566/7078] 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-04-25T04:23:23.9747952Z [4567/7078] 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-04-25T04:23:23.9913673Z [4568/7078] 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-04-25T04:23:24.0038852Z [4569/7078] 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-04-25T04:23:24.0100914Z [4570/7078] 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-04-25T04:23:24.0115823Z [4571/7078] 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-04-25T04:23:24.0862352Z [4572/7078] 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-04-25T04:23:24.1156603Z [4573/7078] 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-04-25T04:23:24.1282734Z [4574/7078] 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-04-25T04:23:24.1328408Z [4575/7078] 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-04-25T04:23:24.1413752Z [4576/7078] 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-04-25T04:23:24.1462538Z [4577/7078] 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-04-25T04:23:24.1478399Z [4578/7078] 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-04-25T04:23:24.2112084Z [4579/7078] 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-04-25T04:23:24.2128205Z [4580/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-04-25T04:23:24.2376947Z [4581/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-04-25T04:23:24.2426217Z [4582/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-04-25T04:23:24.2502705Z [4583/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-04-25T04:23:24.2595052Z [4584/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-04-25T04:23:24.2826475Z [4585/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-04-25T04:23:24.3066427Z [4586/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-04-25T04:23:24.3136985Z [4587/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-04-25T04:23:24.3327627Z [4588/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-04-25T04:23:24.3339805Z [4589/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-04-25T04:23:24.3426837Z [4590/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-04-25T04:23:24.4041961Z [4591/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-04-25T04:23:24.4146378Z [4592/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-04-25T04:23:24.4158247Z [4593/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-04-25T04:23:24.4219152Z [4594/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-04-25T04:23:24.4300318Z [4595/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-04-25T04:23:24.4371207Z [4596/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-04-25T04:23:24.4538400Z [4597/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-04-25T04:23:24.5164901Z [4598/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-04-25T04:23:24.5313520Z [4599/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-04-25T04:23:24.5448372Z [4600/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-04-25T04:23:24.5640122Z [4601/7078] 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-04-25T04:23:24.5726162Z [4602/7078] 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-04-25T04:23:24.5748738Z [4603/7078] 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-04-25T04:23:24.5902522Z [4604/7078] 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-04-25T04:23:24.6474020Z [4605/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-04-25T04:23:24.6724868Z [4606/7078] 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-04-25T04:23:24.6843861Z [4607/7078] 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-04-25T04:23:24.7085293Z [4608/7078] 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-04-25T04:23:24.7244789Z [4609/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-04-25T04:23:24.7292313Z [4610/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-04-25T04:23:24.7908487Z [4611/7078] 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-04-25T04:23:24.8100103Z [4612/7078] 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-04-25T04:23:24.8166748Z [4613/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-04-25T04:23:24.8226651Z [4614/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-04-25T04:23:24.8277019Z [4615/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-04-25T04:23:24.8453336Z [4616/7078] 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-04-25T04:23:24.8947351Z [4617/7078] 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-04-25T04:23:24.9126620Z [4618/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-04-25T04:23:24.9171105Z [4619/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-04-25T04:23:24.9361671Z [4620/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-04-25T04:23:24.9417249Z [4621/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-04-25T04:23:24.9724748Z [4622/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-04-25T04:23:24.9811159Z [4623/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-04-25T04:23:25.0008962Z [4624/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-04-25T04:23:25.0240248Z [4625/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-04-25T04:23:25.0253335Z [4626/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-04-25T04:23:25.0525209Z [4627/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-04-25T04:23:25.0818381Z [4628/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-04-25T04:23:25.0871799Z [4629/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-04-25T04:23:25.1086193Z [4630/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-04-25T04:23:25.1151969Z [4631/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-04-25T04:23:25.1371800Z [4632/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-04-25T04:23:25.1391105Z [4633/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-04-25T04:23:25.1876012Z [4634/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-04-25T04:23:25.1946843Z [4635/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-04-25T04:23:25.2012174Z [4636/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-04-25T04:23:25.2232302Z [4637/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-04-25T04:23:25.2357457Z [4638/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-04-25T04:23:25.2455366Z [4639/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-04-25T04:23:25.2613123Z [4640/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-04-25T04:23:25.2992986Z [4641/7078] 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-04-25T04:23:25.3049874Z [4642/7078] 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-04-25T04:23:25.3109113Z [4643/7078] 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-04-25T04:23:25.3304504Z [4644/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-04-25T04:23:25.3466793Z [4645/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-04-25T04:23:25.3529037Z [4646/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-04-25T04:23:25.3696380Z [4647/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-04-25T04:23:25.4318957Z [4648/7078] 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-04-25T04:23:25.4449367Z [4649/7078] 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-04-25T04:23:25.4569834Z [4650/7078] 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-04-25T04:23:25.4653355Z [4651/7078] 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-04-25T04:23:25.4857759Z [4652/7078] 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-04-25T04:23:25.5514056Z [4653/7078] 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-04-25T04:23:25.5562070Z [4654/7078] 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-04-25T04:23:25.5614749Z [4655/7078] 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-04-25T04:23:25.5680323Z [4656/7078] 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-04-25T04:23:25.5749930Z [4657/7078] 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-04-25T04:23:25.6377295Z [4658/7078] 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-04-25T04:23:25.6602979Z [4659/7078] 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-04-25T04:23:25.6783097Z [4660/7078] 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-04-25T04:23:25.6928887Z [4661/7078] 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-04-25T04:23:25.6981143Z [4662/7078] 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-04-25T04:23:25.7003657Z [4663/7078] 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-04-25T04:23:25.7140219Z [4664/7078] 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-04-25T04:23:25.7743450Z [4665/7078] 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-04-25T04:23:25.8135482Z [4666/7078] 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-04-25T04:23:25.8265368Z [4667/7078] 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-04-25T04:23:25.8281222Z [4668/7078] 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-04-25T04:23:25.8459137Z [4669/7078] 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-04-25T04:23:25.8631255Z [4670/7078] 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-04-25T04:23:25.8752887Z [4671/7078] 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-04-25T04:23:25.9028791Z [4672/7078] 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-04-25T04:23:25.9383889Z [4673/7078] 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-04-25T04:23:25.9625645Z [4674/7078] 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-04-25T04:23:25.9729378Z [4675/7078] 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-04-25T04:23:25.9740971Z [4676/7078] 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-04-25T04:23:25.9834883Z [4677/7078] 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-04-25T04:23:25.9956210Z [4678/7078] 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-04-25T04:23:26.0275747Z [4679/7078] 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-04-25T04:23:26.0674744Z [4680/7078] 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-04-25T04:23:26.0787511Z [4681/7078] 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-04-25T04:23:26.0855454Z [4682/7078] 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-04-25T04:23:26.1097026Z [4683/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.1193082Z [4684/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.1365010Z [4685/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.1492440Z [4686/7078] 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-04-25T04:23:26.1888511Z [4687/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.1942460Z [4688/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.2333299Z [4689/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.2410807Z [4690/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.2491770Z [4691/7078] 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-04-25T04:23:26.2553641Z [4692/7078] 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-04-25T04:23:26.2738697Z [4693/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.2950726Z [4694/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.3321256Z [4695/7078] 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-04-25T04:23:26.3445568Z [4696/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.3626188Z [4697/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.4117470Z [4698/7078] 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-04-25T04:23:26.4165670Z [4699/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.4263999Z [4700/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.4275932Z [4701/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.4353532Z [4702/7078] 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-04-25T04:23:26.4486091Z [4703/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.4892862Z [4704/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.5300310Z [4705/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.5356601Z [4706/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.5528904Z [4707/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:26.5589894Z [4708/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:26.5601962Z [4709/7078] 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-04-25T04:23:26.5761247Z [4710/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-04-25T04:23:26.5922513Z [4711/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-04-25T04:23:26.6442240Z [4712/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-04-25T04:23:26.6688558Z [4713/7078] 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-04-25T04:23:26.6737099Z [4714/7078] 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-04-25T04:23:26.6785731Z [4715/7078] 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-04-25T04:23:26.6892476Z [4716/7078] 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-04-25T04:23:26.7072784Z [4717/7078] 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-04-25T04:23:26.7541231Z [4718/7078] 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-04-25T04:23:26.7717497Z [4719/7078] 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-04-25T04:23:26.7913759Z [4720/7078] 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-04-25T04:23:26.7928412Z [4721/7078] 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-04-25T04:23:26.8107417Z [4722/7078] 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-04-25T04:23:26.8198105Z [4723/7078] 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-04-25T04:23:26.8713237Z [4724/7078] 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-04-25T04:23:26.8851491Z [4725/7078] 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-04-25T04:23:26.8939222Z [4726/7078] 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-04-25T04:23:26.9082773Z [4727/7078] 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-04-25T04:23:26.9136947Z [4728/7078] 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-04-25T04:23:26.9263250Z [4729/7078] 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-04-25T04:23:26.9741757Z [4730/7078] 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-04-25T04:23:26.9986244Z [4731/7078] 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-04-25T04:23:27.0119500Z [4732/7078] 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-04-25T04:23:27.0218183Z [4733/7078] 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-04-25T04:23:27.0318995Z [4734/7078] 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-04-25T04:23:27.0576678Z [4735/7078] 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-04-25T04:23:27.0828642Z [4736/7078] 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-04-25T04:23:27.1145102Z [4737/7078] 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-04-25T04:23:27.1188436Z [4738/7078] 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-04-25T04:23:27.1243397Z [4739/7078] 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-04-25T04:23:27.1320405Z [4740/7078] 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-04-25T04:23:27.1678010Z [4741/7078] 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-04-25T04:23:27.1964370Z [4742/7078] 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-04-25T04:23:27.2459423Z [4743/7078] 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-04-25T04:23:27.2512419Z [4744/7078] 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-04-25T04:23:27.2529797Z [4745/7078] 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-04-25T04:23:27.2623766Z [4746/7078] 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-04-25T04:23:27.2689489Z [4747/7078] 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-04-25T04:23:27.3199902Z [4748/7078] 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-04-25T04:23:27.3438782Z [4749/7078] 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-04-25T04:23:27.3659764Z [4750/7078] 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-04-25T04:23:27.3885817Z [4751/7078] 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-04-25T04:23:27.3988615Z [4752/7078] 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-04-25T04:23:27.4132575Z [4753/7078] 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-04-25T04:23:27.4146976Z [4754/7078] 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-04-25T04:23:27.4546341Z [4755/7078] 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-04-25T04:23:27.4715041Z [4756/7078] 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-04-25T04:23:27.5128223Z [4757/7078] 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-04-25T04:23:27.5175813Z [4758/7078] 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-04-25T04:23:27.5430157Z [4759/7078] 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-04-25T04:23:27.5477006Z [4760/7078] 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-04-25T04:23:27.5664648Z [4761/7078] 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-04-25T04:23:27.5743685Z [4762/7078] 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-04-25T04:23:27.6202919Z [4763/7078] 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-04-25T04:23:27.6381293Z [4764/7078] 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-04-25T04:23:27.6393343Z [4765/7078] 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-04-25T04:23:27.6711318Z [4766/7078] 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-04-25T04:23:27.6722933Z [4767/7078] 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-04-25T04:23:27.6902330Z [4768/7078] 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-04-25T04:23:27.7352220Z [4769/7078] 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-04-25T04:23:27.7517685Z [4770/7078] 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-04-25T04:23:27.7533742Z [4771/7078] 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-04-25T04:23:27.7704916Z [4772/7078] 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-04-25T04:23:27.7886621Z [4773/7078] 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-04-25T04:23:27.8056527Z [4774/7078] 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-04-25T04:23:27.8173575Z [4775/7078] 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-04-25T04:23:27.8445116Z [4776/7078] 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-04-25T04:23:27.8678847Z [4777/7078] 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-04-25T04:23:27.8771325Z [4778/7078] 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-04-25T04:23:27.9049306Z [4779/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-04-25T04:23:27.9102615Z [4780/7078] 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-04-25T04:23:27.9366940Z [4781/7078] 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-04-25T04:23:27.9470650Z [4782/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-04-25T04:23:27.9802460Z [4783/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-04-25T04:23:27.9862851Z [4784/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-04-25T04:23:28.0209004Z [4785/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-04-25T04:23:28.0310015Z [4786/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-04-25T04:23:28.0438987Z [4787/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-04-25T04:23:28.0504228Z [4788/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-04-25T04:23:28.0694635Z [4789/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-04-25T04:23:28.0893473Z [4790/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-04-25T04:23:28.1231607Z [4791/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-04-25T04:23:28.1288228Z [4792/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-04-25T04:23:28.1527144Z [4793/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-04-25T04:23:28.1581755Z [4794/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-04-25T04:23:28.1636565Z [4795/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-04-25T04:23:28.1735217Z [4796/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-04-25T04:23:28.2059676Z [4797/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-04-25T04:23:28.2291401Z [4798/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-04-25T04:23:28.2721584Z [4799/7078] 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-04-25T04:23:28.2896805Z [4800/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.2951776Z [4801/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-04-25T04:23:28.2964296Z [4802/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-04-25T04:23:28.3109286Z [4803/7078] 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-04-25T04:23:28.3568472Z [4804/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.3762580Z [4805/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.4037181Z [4806/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.4139065Z [4807/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.4151581Z [4808/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.4309408Z [4809/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.4698161Z [4810/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.5182385Z [4811/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.5233891Z [4812/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.5245953Z [4813/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.5294567Z [4814/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.5477001Z [4815/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.5572394Z [4816/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.5861880Z [4817/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.6440037Z [4818/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-04-25T04:23:28.6516886Z [4819/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.6528282Z [4820/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-04-25T04:23:28.6539937Z [4821/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-04-25T04:23:28.6677514Z [4822/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-04-25T04:23:28.7067719Z [4823/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.7122700Z [4824/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-04-25T04:23:28.7694321Z [4825/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.7834933Z [4826/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.7846407Z [4827/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.7915082Z [4828/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.8032899Z [4829/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.8440450Z [4830/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.8867935Z [4831/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.9251639Z [4832/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.9430208Z [4833/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.9481554Z [4834/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.9531036Z [4835/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:28.9606198Z [4836/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:28.9655582Z [4837/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.0211856Z [4838/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.0610548Z [4839/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.0853488Z [4840/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.0907729Z [4841/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.0926203Z [4842/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.0979549Z [4843/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.1134125Z [4844/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.1566077Z [4845/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.1940377Z [4846/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.2026839Z [4847/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.2105646Z [4848/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.2286250Z [4849/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.2363860Z [4850/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.2514936Z [4851/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.2761220Z [4852/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.3109617Z [4853/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.3195465Z [4854/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.3331606Z [4855/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.3429752Z [4856/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.3538452Z [4857/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.3597278Z [4858/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.3903532Z [4859/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.4290946Z [4860/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.4426452Z [4861/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.4499330Z [4862/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-04-25T04:23:29.4717157Z [4863/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-04-25T04:23:29.4773848Z [4864/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-04-25T04:23:29.4889843Z [4865/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-04-25T04:23:29.5266828Z [4866/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-04-25T04:23:29.5473588Z [4867/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-04-25T04:23:29.5576009Z [4868/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-04-25T04:23:29.5632375Z [4869/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-04-25T04:23:29.5726447Z [4870/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-04-25T04:23:29.5918724Z [4871/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-04-25T04:23:29.6162991Z [4872/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-04-25T04:23:29.6287283Z [4873/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-04-25T04:23:29.6515014Z [4874/7078] 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-04-25T04:23:29.6670267Z [4875/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-04-25T04:23:29.6869218Z [4876/7078] 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-04-25T04:23:29.6983232Z [4877/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-04-25T04:23:29.7122788Z [4878/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-04-25T04:23:29.7251780Z [4879/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-04-25T04:23:29.7504773Z [4880/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-04-25T04:23:29.7783151Z [4881/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-04-25T04:23:29.7841998Z [4882/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-04-25T04:23:29.7915026Z [4883/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-04-25T04:23:29.8067945Z [4884/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-04-25T04:23:29.8430262Z [4885/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-04-25T04:23:29.8528760Z [4886/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-04-25T04:23:29.8658771Z [4887/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-04-25T04:23:29.8918951Z [4888/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-04-25T04:23:29.9063042Z [4889/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-04-25T04:23:29.9111977Z [4890/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-04-25T04:23:29.9196029Z [4891/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-04-25T04:23:29.9495421Z [4892/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:29.9718607Z [4893/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-04-25T04:23:29.9990278Z [4894/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.0352022Z [4895/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.0406583Z [4896/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-04-25T04:23:30.0417773Z [4897/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-04-25T04:23:30.0469788Z [4898/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.0757352Z [4899/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.0867789Z [4900/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-04-25T04:23:30.1271037Z [4901/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.1602994Z [4902/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.1616273Z [4903/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-04-25T04:23:30.1666199Z [4904/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-04-25T04:23:30.1718935Z [4905/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.2140826Z [4906/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.2386748Z [4907/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-04-25T04:23:30.2464047Z [4908/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-04-25T04:23:30.2610581Z [4909/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-04-25T04:23:30.2846459Z [4910/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-04-25T04:23:30.2934296Z [4911/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.3086504Z [4912/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-04-25T04:23:30.3395404Z [4913/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.3835740Z [4914/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.3930857Z [4915/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.3978395Z [4916/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.4237976Z [4917/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.4491660Z [4918/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.4545678Z [4919/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.4559841Z [4920/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5144873Z [4921/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5223981Z [4922/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5276184Z [4923/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5566975Z [4924/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5752226Z [4925/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5931754Z [4926/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.5993508Z [4927/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.6443380Z [4928/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.6504432Z [4929/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.6641936Z [4930/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.6782278Z [4931/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.7098587Z [4932/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.7110180Z [4933/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.7182933Z [4934/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.7747438Z [4935/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.7794265Z [4936/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.8138212Z [4937/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-04-25T04:23:30.8223544Z [4938/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-04-25T04:23:30.8345963Z [4939/7078] 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-04-25T04:23:30.8732171Z [4940/7078] 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-04-25T04:23:30.9066234Z [4941/7078] 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-04-25T04:23:30.9114863Z [4942/7078] 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-04-25T04:23:30.9271349Z [4943/7078] 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-04-25T04:23:30.9467905Z [4944/7078] 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-04-25T04:23:30.9699611Z [4945/7078] 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-04-25T04:23:30.9715672Z [4946/7078] 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-04-25T04:23:31.0010420Z [4947/7078] 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-04-25T04:23:31.0355817Z [4948/7078] 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-04-25T04:23:31.0581973Z [4949/7078] 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-04-25T04:23:31.0737956Z [4950/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-04-25T04:23:31.0969632Z [4951/7078] 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-04-25T04:23:31.1018750Z [4952/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-04-25T04:23:31.1287672Z [4953/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-04-25T04:23:31.1335781Z [4954/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-04-25T04:23:31.1586787Z [4955/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-04-25T04:23:31.1633389Z [4956/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-04-25T04:23:31.1735610Z [4957/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-04-25T04:23:31.1971274Z [4958/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-04-25T04:23:31.2126527Z [4959/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-04-25T04:23:31.2248975Z [4960/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-04-25T04:23:31.2513104Z [4961/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-04-25T04:23:31.2761778Z [4962/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-04-25T04:23:31.2883475Z [4963/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-04-25T04:23:31.2899017Z [4964/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-04-25T04:23:31.3079260Z [4965/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-04-25T04:23:31.3175264Z [4966/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-04-25T04:23:31.3626415Z [4967/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-04-25T04:23:31.3726365Z [4968/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-04-25T04:23:31.3845028Z [4969/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-04-25T04:23:31.3916118Z [4970/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-04-25T04:23:31.4226212Z [4971/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-04-25T04:23:31.4417820Z [4972/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-04-25T04:23:31.4640139Z [4973/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-04-25T04:23:31.4830007Z [4974/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-04-25T04:23:31.4842287Z [4975/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-04-25T04:23:31.4973446Z [4976/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-04-25T04:23:31.5353201Z [4977/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-04-25T04:23:31.5471187Z [4978/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-04-25T04:23:31.5654511Z [4979/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-04-25T04:23:31.5767358Z [4980/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-04-25T04:23:31.5914017Z [4981/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-04-25T04:23:31.5930631Z [4982/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-04-25T04:23:31.6028917Z [4983/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-04-25T04:23:31.6479610Z [4984/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-04-25T04:23:31.6772075Z [4985/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-04-25T04:23:31.7037474Z [4986/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-04-25T04:23:31.7088901Z [4987/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-04-25T04:23:31.7230843Z [4988/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-04-25T04:23:31.7448413Z [4989/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-04-25T04:23:31.7617640Z [4990/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-04-25T04:23:31.7782570Z [4991/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-04-25T04:23:31.7939005Z [4992/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-04-25T04:23:31.8196689Z [4993/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-04-25T04:23:31.8342571Z [4994/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-04-25T04:23:31.8437397Z [4995/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-04-25T04:23:31.8725462Z [4996/7078] 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-04-25T04:23:31.8779404Z [4997/7078] 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-04-25T04:23:31.9060390Z [4998/7078] 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-04-25T04:23:31.9181455Z [4999/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-04-25T04:23:31.9243998Z [5000/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-04-25T04:23:31.9467279Z [5001/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-04-25T04:23:31.9571199Z [5002/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-04-25T04:23:32.0004012Z [5003/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-04-25T04:23:32.0227508Z [5004/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-04-25T04:23:32.0299732Z [5005/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-04-25T04:23:32.0352400Z [5006/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-04-25T04:23:32.0506775Z [5007/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-04-25T04:23:32.0519350Z [5008/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-04-25T04:23:32.0706360Z [5009/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-04-25T04:23:32.1097477Z [5010/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-04-25T04:23:32.1344007Z [5011/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-04-25T04:23:32.1434213Z [5012/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-04-25T04:23:32.1508395Z [5013/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-04-25T04:23:32.1573268Z [5014/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-04-25T04:23:32.1655788Z [5015/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-04-25T04:23:32.1833563Z [5016/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-04-25T04:23:32.2231228Z [5017/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-04-25T04:23:32.2498351Z [5018/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-04-25T04:23:32.2703774Z [5019/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-04-25T04:23:32.2910227Z [5020/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-04-25T04:23:32.2923218Z [5021/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-04-25T04:23:32.2978905Z [5022/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-04-25T04:23:32.3312834Z [5023/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-04-25T04:23:32.3574705Z [5024/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-04-25T04:23:32.3684479Z [5025/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-04-25T04:23:32.3747299Z [5026/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-04-25T04:23:32.4003303Z [5027/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-04-25T04:23:32.4054697Z [5028/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-04-25T04:23:32.4169192Z [5029/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-04-25T04:23:32.4547951Z [5030/7078] 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-04-25T04:23:32.5164916Z [5031/7078] 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-04-25T04:23:32.5177347Z [5032/7078] 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-04-25T04:23:32.5273752Z [5033/7078] 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-04-25T04:23:32.5541463Z [5034/7078] 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-04-25T04:23:32.5701254Z [5035/7078] 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-04-25T04:23:32.5715621Z [5036/7078] 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-04-25T04:23:32.5942938Z [5037/7078] 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-04-25T04:23:32.6606395Z [5038/7078] 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-04-25T04:23:32.6664174Z [5039/7078] 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-04-25T04:23:32.6679878Z [5040/7078] 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-04-25T04:23:32.6735384Z [5041/7078] 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-04-25T04:23:32.6917157Z [5042/7078] 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-04-25T04:23:32.6996397Z [5043/7078] 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-04-25T04:23:32.7698182Z [5044/7078] 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-04-25T04:23:32.7915493Z [5045/7078] 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-04-25T04:23:32.7997350Z [5046/7078] 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-04-25T04:23:32.8008420Z [5047/7078] 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-04-25T04:23:32.8218254Z [5048/7078] 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-04-25T04:23:32.8313934Z [5049/7078] 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-04-25T04:23:32.8500941Z [5050/7078] 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-04-25T04:23:32.9061657Z [5051/7078] 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-04-25T04:23:32.9120612Z [5052/7078] 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-04-25T04:23:32.9132419Z [5053/7078] 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-04-25T04:23:32.9257789Z [5054/7078] 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-04-25T04:23:32.9385938Z [5055/7078] 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-04-25T04:23:32.9586252Z [5056/7078] 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-04-25T04:23:33.0194829Z [5057/7078] 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-04-25T04:23:33.0314972Z [5058/7078] 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-04-25T04:23:33.0362671Z [5059/7078] 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-04-25T04:23:33.0376665Z [5060/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.0431614Z [5061/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.0583118Z [5062/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.0854894Z [5063/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.1432172Z [5064/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.1583954Z [5065/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.1596365Z [5066/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.1645610Z [5067/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:33.1739565Z [5068/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:33.1809119Z [5069/7078] 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-04-25T04:23:33.1955967Z [5070/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.2611195Z [5071/7078] 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-04-25T04:23:33.2787622Z [5072/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:33.2834284Z [5073/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.2910275Z [5074/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:33.2968856Z [5075/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-04-25T04:23:33.3076884Z [5076/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-04-25T04:23:33.3221976Z [5077/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:33.3647309Z [5078/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-04-25T04:23:33.4026971Z [5079/7078] 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-04-25T04:23:33.4127499Z [5080/7078] 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-04-25T04:23:33.4180970Z [5081/7078] 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-04-25T04:23:33.4193545Z [5082/7078] 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-04-25T04:23:33.4270065Z [5083/7078] 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-04-25T04:23:33.4356424Z [5084/7078] 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-04-25T04:23:33.4776187Z [5085/7078] 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-04-25T04:23:33.5243296Z [5086/7078] 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-04-25T04:23:33.5444099Z [5087/7078] 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-04-25T04:23:33.5456500Z [5088/7078] 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-04-25T04:23:33.5469197Z [5089/7078] 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-04-25T04:23:33.5481565Z [5090/7078] 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-04-25T04:23:33.5541145Z [5091/7078] 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-04-25T04:23:33.5944049Z [5092/7078] 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-04-25T04:23:33.6540975Z [5093/7078] 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-04-25T04:23:33.6752355Z [5094/7078] 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-04-25T04:23:33.6801999Z [5095/7078] 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-04-25T04:23:33.6813849Z [5096/7078] 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-04-25T04:23:33.6922150Z [5097/7078] 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-04-25T04:23:33.6979860Z [5098/7078] 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-04-25T04:23:33.7291401Z [5099/7078] 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-04-25T04:23:33.7896623Z [5100/7078] 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-04-25T04:23:33.8069977Z [5101/7078] 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-04-25T04:23:33.8449515Z [5102/7078] 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-04-25T04:23:33.8500395Z [5103/7078] 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-04-25T04:23:33.8688646Z [5104/7078] 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-04-25T04:23:33.8701319Z [5105/7078] 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-04-25T04:23:33.8763588Z [5106/7078] 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-04-25T04:23:33.9197434Z [5107/7078] 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-04-25T04:23:33.9900839Z [5108/7078] 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-04-25T04:23:33.9913483Z [5109/7078] 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-04-25T04:23:33.9925488Z [5110/7078] 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-04-25T04:23:34.0005292Z [5111/7078] 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-04-25T04:23:34.0017026Z [5112/7078] 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-04-25T04:23:34.0067035Z [5113/7078] 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-04-25T04:23:34.0739170Z [5114/7078] 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-04-25T04:23:34.1071601Z [5115/7078] 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-04-25T04:23:34.1120602Z [5116/7078] 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-04-25T04:23:34.1144262Z [5117/7078] 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-04-25T04:23:34.1271162Z [5118/7078] 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-04-25T04:23:34.1367153Z [5119/7078] 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-04-25T04:23:34.2105764Z [5120/7078] 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-04-25T04:23:34.2187628Z [5121/7078] 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-04-25T04:23:34.2258008Z [5122/7078] 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-04-25T04:23:34.2336509Z [5123/7078] 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-04-25T04:23:34.2383151Z [5124/7078] 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-04-25T04:23:34.2447317Z [5125/7078] 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-04-25T04:23:34.2829329Z [5126/7078] 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-04-25T04:23:34.3335812Z [5127/7078] 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-04-25T04:23:34.3402871Z [5128/7078] 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-04-25T04:23:34.3654385Z [5129/7078] 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-04-25T04:23:34.3670734Z [5130/7078] 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-04-25T04:23:34.3978080Z [5131/7078] 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-04-25T04:23:34.3989849Z [5132/7078] 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-04-25T04:23:34.4458313Z [5133/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-04-25T04:23:34.4772765Z [5134/7078] 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-04-25T04:23:34.4784316Z [5135/7078] 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-04-25T04:23:34.4799142Z [5136/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-04-25T04:23:34.4811649Z [5137/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-04-25T04:23:34.5080979Z [5138/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-04-25T04:23:34.5212595Z [5139/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-04-25T04:23:34.5498040Z [5140/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-04-25T04:23:34.5823514Z [5141/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-04-25T04:23:34.5894146Z [5142/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-04-25T04:23:34.5959765Z [5143/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-04-25T04:23:34.5976638Z [5144/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-04-25T04:23:34.6212887Z [5145/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-04-25T04:23:34.6382779Z [5146/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-04-25T04:23:34.6807684Z [5147/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-04-25T04:23:34.6945323Z [5148/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-04-25T04:23:34.7069784Z [5149/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-04-25T04:23:34.7158064Z [5150/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-04-25T04:23:34.7343897Z [5151/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-04-25T04:23:34.7411170Z [5152/7078] 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-04-25T04:23:34.7424956Z [5153/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-04-25T04:23:34.7941255Z [5154/7078] 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-04-25T04:23:34.8099076Z [5155/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.8307885Z [5156/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.8597328Z [5157/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.8659566Z [5158/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.8672033Z [5159/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.9084559Z [5160/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:34.9205844Z [5161/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.9222675Z [5162/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.9443764Z [5163/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.9919948Z [5164/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:34.9931772Z [5165/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-04-25T04:23:35.0018108Z [5166/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-04-25T04:23:35.0099196Z [5167/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-04-25T04:23:35.0327559Z [5168/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-04-25T04:23:35.0564990Z [5169/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-04-25T04:23:35.0781001Z [5170/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.1232178Z [5171/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.1294253Z [5172/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.1505357Z [5173/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.1562514Z [5174/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.1842619Z [5175/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.1901059Z [5176/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.2197289Z [5177/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.2497180Z [5178/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.2654109Z [5179/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.2909994Z [5180/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.3069729Z [5181/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.3321470Z [5182/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.3391655Z [5183/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.3406905Z [5184/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.3893787Z [5185/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.4122480Z [5186/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.4471219Z [5187/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.4527242Z [5188/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.4778914Z [5189/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.4884141Z [5190/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.4973828Z [5191/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.5111103Z [5192/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.5179053Z [5193/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.5652261Z [5194/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.5825414Z [5195/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.6082136Z [5196/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.6206000Z [5197/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.6258304Z [5198/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.6467208Z [5199/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.6707380Z [5200/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.6754591Z [5201/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.7251984Z [5202/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.7264469Z [5203/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.7497654Z [5204/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.7691888Z [5205/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.7786338Z [5206/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.7855721Z [5207/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.7872500Z [5208/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-04-25T04:23:35.8366782Z [5209/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-04-25T04:23:35.8681696Z [5210/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-04-25T04:23:35.8860716Z [5211/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-04-25T04:23:35.8873448Z [5212/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-04-25T04:23:35.8954441Z [5213/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-04-25T04:23:35.9108247Z [5214/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-04-25T04:23:35.9213658Z [5215/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-04-25T04:23:35.9642414Z [5216/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-04-25T04:23:35.9658903Z [5217/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-04-25T04:23:36.0030812Z [5218/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-04-25T04:23:36.0167751Z [5219/7078] 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-04-25T04:23:36.0219816Z [5220/7078] 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-04-25T04:23:36.0492073Z [5221/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-04-25T04:23:36.0733966Z [5222/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-04-25T04:23:36.0840210Z [5223/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-04-25T04:23:36.1090924Z [5224/7078] 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-04-25T04:23:36.1277641Z [5225/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-04-25T04:23:36.1328095Z [5226/7078] 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-04-25T04:23:36.1401156Z [5227/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-04-25T04:23:36.1665374Z [5228/7078] 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-04-25T04:23:36.2174333Z [5229/7078] 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-04-25T04:23:36.2328160Z [5230/7078] 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-04-25T04:23:36.2375473Z [5231/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-04-25T04:23:36.2418455Z [5232/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-04-25T04:23:36.2467213Z [5233/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-04-25T04:23:36.2515828Z [5234/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-04-25T04:23:36.2844139Z [5235/7078] 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-04-25T04:23:36.3213024Z [5236/7078] 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-04-25T04:23:36.3435176Z [5237/7078] 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-04-25T04:23:36.3530700Z [5238/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-04-25T04:23:36.3581266Z [5239/7078] 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-04-25T04:23:36.3627979Z [5240/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-04-25T04:23:36.3782417Z [5241/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-04-25T04:23:36.3836848Z [5242/7078] 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-04-25T04:23:36.4229294Z [5243/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-04-25T04:23:36.4601143Z [5244/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-04-25T04:23:36.4613289Z [5245/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-04-25T04:23:36.4910369Z [5246/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-04-25T04:23:36.4922292Z [5247/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-04-25T04:23:36.5005961Z [5248/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-04-25T04:23:36.5057486Z [5249/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-04-25T04:23:36.5072530Z [5250/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-04-25T04:23:36.5643273Z [5251/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-04-25T04:23:36.5659516Z [5252/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-04-25T04:23:36.6056520Z [5253/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-04-25T04:23:36.6068782Z [5254/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-04-25T04:23:36.6124955Z [5255/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-04-25T04:23:36.6139280Z [5256/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-04-25T04:23:36.6446114Z [5257/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-04-25T04:23:36.6683171Z [5258/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-04-25T04:23:36.6734216Z [5259/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-04-25T04:23:36.7178611Z [5260/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-04-25T04:23:36.7192045Z [5261/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-04-25T04:23:36.7298836Z [5262/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-04-25T04:23:36.7363177Z [5263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-04-25T04:23:36.7539367Z [5264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-04-25T04:23:36.7892873Z [5265/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-04-25T04:23:36.7956026Z [5266/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-04-25T04:23:36.8550363Z [5267/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-04-25T04:23:36.8617046Z [5268/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-04-25T04:23:36.8631384Z [5269/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-04-25T04:23:36.8735616Z [5270/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-04-25T04:23:36.8782095Z [5271/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-04-25T04:23:36.9135703Z [5272/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-04-25T04:23:36.9238608Z [5273/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-04-25T04:23:36.9693045Z [5274/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-04-25T04:23:36.9754410Z [5275/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-04-25T04:23:36.9899734Z [5276/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-04-25T04:23:36.9965270Z [5277/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-04-25T04:23:37.0075408Z [5278/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-04-25T04:23:37.0310103Z [5279/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-04-25T04:23:37.0672428Z [5280/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-04-25T04:23:37.0805538Z [5281/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-04-25T04:23:37.0984839Z [5282/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-04-25T04:23:37.1031622Z [5283/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-04-25T04:23:37.1215482Z [5284/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-04-25T04:23:37.1273599Z [5285/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-04-25T04:23:37.1334084Z [5286/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-04-25T04:23:37.1993323Z [5287/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-04-25T04:23:37.2115871Z [5288/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-04-25T04:23:37.2265333Z [5289/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-04-25T04:23:37.2353205Z [5290/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-04-25T04:23:37.2429318Z [5291/7078] 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-04-25T04:23:37.2485176Z [5292/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-04-25T04:23:37.3034068Z [5293/7078] 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-04-25T04:23:37.3121736Z [5294/7078] 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-04-25T04:23:37.3206432Z [5295/7078] 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-04-25T04:23:37.3428193Z [5296/7078] 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-04-25T04:23:37.3479353Z [5297/7078] 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-04-25T04:23:37.3567640Z [5298/7078] 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-04-25T04:23:37.3623934Z [5299/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-04-25T04:23:37.4302458Z [5300/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-04-25T04:23:37.4509425Z [5301/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-04-25T04:23:37.4563755Z [5302/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-04-25T04:23:37.4576260Z [5303/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-04-25T04:23:37.4752390Z [5304/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-04-25T04:23:37.5208944Z [5305/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.5264857Z [5306/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-04-25T04:23:37.5426614Z [5307/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.5617710Z [5308/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.5740378Z [5309/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.5800052Z [5310/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-04-25T04:23:37.5861727Z [5311/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-04-25T04:23:37.6361014Z [5312/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.6546350Z [5313/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-04-25T04:23:37.6654262Z [5314/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.6796439Z [5315/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.6896144Z [5316/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.6971788Z [5317/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.7126622Z [5318/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.7641355Z [5319/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.7834083Z [5320/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.7883986Z [5321/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.7971459Z [5322/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.8178406Z [5323/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.8238768Z [5324/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.8355324Z [5325/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.8763016Z [5326/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.9197030Z [5327/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.9341001Z [5328/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.9390843Z [5329/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.9405804Z [5330/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.9614237Z [5331/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:37.9757292Z [5332/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:37.9814134Z [5333/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.0570186Z [5334/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-04-25T04:23:38.0583938Z [5335/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.0595626Z [5336/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.0648852Z [5337/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-04-25T04:23:38.0874644Z [5338/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.0947794Z [5339/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-04-25T04:23:38.1089820Z [5340/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-04-25T04:23:38.1659344Z [5341/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-04-25T04:23:38.1707074Z [5342/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-04-25T04:23:38.1777772Z [5343/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-04-25T04:23:38.1870347Z [5344/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.1924391Z [5345/7078] 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-04-25T04:23:38.2125423Z [5346/7078] 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-04-25T04:23:38.2186689Z [5347/7078] 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-04-25T04:23:38.2734769Z [5348/7078] 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-04-25T04:23:38.2856857Z [5349/7078] 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-04-25T04:23:38.3071534Z [5350/7078] 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-04-25T04:23:38.3148950Z [5351/7078] 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-04-25T04:23:38.3220052Z [5352/7078] 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-04-25T04:23:38.3598509Z [5353/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-04-25T04:23:38.4056930Z [5354/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-04-25T04:23:38.4106144Z [5355/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.4244333Z [5356/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.4337664Z [5357/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-04-25T04:23:38.4447908Z [5358/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-04-25T04:23:38.4683276Z [5359/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-04-25T04:23:38.4738999Z [5360/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.5268344Z [5361/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.5536076Z [5362/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.5587285Z [5363/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:38.5642518Z [5364/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.5833270Z [5365/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:38.6115733Z [5366/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.6286682Z [5367/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.6348531Z [5368/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:38.6587609Z [5369/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.6788387Z [5370/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.6839262Z [5371/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:38.7131943Z [5372/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:23:38.7350977Z [5373/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-04-25T04:23:38.7740535Z [5374/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.7753245Z [5375/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.7892789Z [5376/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.8088080Z [5377/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-04-25T04:23:38.8302441Z [5378/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-04-25T04:23:38.8571655Z [5379/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.8674982Z [5380/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9036023Z [5381/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9156652Z [5382/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9207889Z [5383/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9695025Z [5384/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9759560Z [5385/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:38.9938816Z [5386/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.0015495Z [5387/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.0281313Z [5388/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.0494244Z [5389/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.0509083Z [5390/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1067591Z [5391/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1125559Z [5392/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1349874Z [5393/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1402657Z [5394/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1592125Z [5395/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.1937869Z [5396/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.2139737Z [5397/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.2425814Z [5398/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.2580225Z [5399/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.2850733Z [5400/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.2897340Z [5401/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.3046422Z [5402/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.3101542Z [5403/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.3538617Z [5404/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.3608164Z [5405/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4121895Z [5406/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4133824Z [5407/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4145265Z [5408/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4387214Z [5409/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4666395Z [5410/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4711228Z [5411/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.4758389Z [5412/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.5323282Z [5413/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.5375972Z [5414/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.5388738Z [5415/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.5740624Z [5416/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-04-25T04:23:39.6092049Z [5417/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.6150941Z [5418/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.6401089Z [5419/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.6515597Z [5420/7078] 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-04-25T04:23:39.6701283Z [5421/7078] 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-04-25T04:23:39.6969774Z [5422/7078] 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-04-25T04:23:39.7373804Z [5423/7078] 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-04-25T04:23:39.7385747Z [5424/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-04-25T04:23:39.7538749Z [5425/7078] 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-04-25T04:23:39.7779651Z [5426/7078] 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-04-25T04:23:39.8191782Z [5427/7078] 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-04-25T04:23:39.8205404Z [5428/7078] 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-04-25T04:23:39.8285999Z [5429/7078] 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-04-25T04:23:39.8654288Z [5430/7078] 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-04-25T04:23:39.8847361Z [5431/7078] 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-04-25T04:23:39.9088609Z [5432/7078] 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-04-25T04:23:39.9256553Z [5433/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-04-25T04:23:39.9269671Z [5434/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-04-25T04:23:39.9317459Z [5435/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-04-25T04:23:39.9375447Z [5436/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-04-25T04:23:39.9957272Z [5437/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-04-25T04:23:40.0014618Z [5438/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-04-25T04:23:40.0330992Z [5439/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-04-25T04:23:40.0384192Z [5440/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-04-25T04:23:40.0914472Z [5441/7078] 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-04-25T04:23:40.0972150Z [5442/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-04-25T04:23:40.1134678Z [5443/7078] 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-04-25T04:23:40.1193128Z [5444/7078] 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-04-25T04:23:40.1312688Z [5445/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-04-25T04:23:40.1502391Z [5446/7078] 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-04-25T04:23:40.1564491Z [5447/7078] 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-04-25T04:23:40.2550060Z [5448/7078] 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-04-25T04:23:40.2596018Z [5449/7078] 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-04-25T04:23:40.2776402Z [5450/7078] 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-04-25T04:23:40.2788341Z [5451/7078] 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-04-25T04:23:40.2836979Z [5452/7078] 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-04-25T04:23:40.2955884Z [5453/7078] 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-04-25T04:23:40.3029958Z [5454/7078] 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-04-25T04:23:40.3743654Z [5455/7078] 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-04-25T04:23:40.4071672Z [5456/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.4084343Z [5457/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.4146780Z [5458/7078] 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-04-25T04:23:40.4191785Z [5459/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.4523666Z [5460/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.4912280Z [5461/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5159972Z [5462/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5247413Z [5463/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5399986Z [5464/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5457719Z [5465/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5731826Z [5466/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.5780736Z [5467/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6241220Z [5468/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6523969Z [5469/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6579397Z [5470/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6592767Z [5471/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6807466Z [5472/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.6921619Z [5473/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.7142395Z [5474/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-04-25T04:23:40.7211501Z [5475/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-04-25T04:23:40.7601931Z [5476/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-04-25T04:23:40.7734625Z [5477/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-04-25T04:23:40.7866507Z [5478/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-04-25T04:23:40.7921301Z [5479/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-04-25T04:23:40.7985448Z [5480/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-04-25T04:23:40.8558069Z [5481/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-04-25T04:23:40.8629440Z [5482/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-04-25T04:23:40.8742864Z [5483/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-04-25T04:23:40.8794151Z [5484/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-04-25T04:23:40.8906721Z [5485/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-04-25T04:23:40.8959339Z [5486/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-04-25T04:23:40.9551473Z [5487/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-04-25T04:23:40.9595039Z [5488/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-04-25T04:23:40.9640971Z [5489/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-04-25T04:23:40.9734195Z [5490/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-04-25T04:23:40.9838603Z [5491/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-04-25T04:23:40.9900581Z [5492/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-04-25T04:23:40.9949943Z [5493/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-04-25T04:23:41.0589966Z [5494/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-04-25T04:23:41.0641044Z [5495/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-04-25T04:23:41.0653009Z [5496/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-04-25T04:23:41.0841598Z [5497/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-04-25T04:23:41.1136554Z [5498/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-04-25T04:23:41.1229273Z [5499/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-04-25T04:23:41.1371137Z [5500/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-04-25T04:23:41.1802236Z [5501/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-04-25T04:23:41.2011440Z [5502/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-04-25T04:23:41.2178941Z [5503/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-04-25T04:23:41.2266172Z [5504/7078] 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-04-25T04:23:41.2317531Z [5505/7078] 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-04-25T04:23:41.2479585Z [5506/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-04-25T04:23:41.2566358Z [5507/7078] 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-04-25T04:23:41.2890770Z [5508/7078] 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-04-25T04:23:41.3384291Z [5509/7078] 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-04-25T04:23:41.3535506Z [5510/7078] 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-04-25T04:23:41.3548900Z [5511/7078] 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-04-25T04:23:41.3624426Z [5512/7078] 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-04-25T04:23:41.3695768Z [5513/7078] 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-04-25T04:23:41.3845727Z [5514/7078] 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-04-25T04:23:41.4092155Z [5515/7078] 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-04-25T04:23:41.4653641Z [5516/7078] 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-04-25T04:23:41.4901044Z [5517/7078] 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-04-25T04:23:41.5017634Z [5518/7078] 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-04-25T04:23:41.5140832Z [5519/7078] 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-04-25T04:23:41.5189266Z [5520/7078] 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-04-25T04:23:41.5328684Z [5521/7078] 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-04-25T04:23:41.5822099Z [5522/7078] 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-04-25T04:23:41.6064195Z [5523/7078] 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-04-25T04:23:41.6182655Z [5524/7078] 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-04-25T04:23:41.6507701Z [5525/7078] 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-04-25T04:23:41.6714057Z [5526/7078] 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-04-25T04:23:41.6785298Z [5527/7078] 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-04-25T04:23:41.6858294Z [5528/7078] 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-04-25T04:23:41.7258539Z [5529/7078] 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-04-25T04:23:41.7311688Z [5530/7078] 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-04-25T04:23:41.7718159Z [5531/7078] 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-04-25T04:23:41.7770401Z [5532/7078] 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-04-25T04:23:41.7951885Z [5533/7078] 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-04-25T04:23:41.8351182Z [5534/7078] 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-04-25T04:23:41.8363848Z [5535/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-04-25T04:23:41.8485536Z [5536/7078] 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-04-25T04:23:41.8745909Z [5537/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-04-25T04:23:41.8890195Z [5538/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-04-25T04:23:41.9175460Z [5539/7078] 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-04-25T04:23:41.9265785Z [5540/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-04-25T04:23:41.9460345Z [5541/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-04-25T04:23:41.9472991Z [5542/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-04-25T04:23:41.9485286Z [5543/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-04-25T04:23:41.9496123Z [5544/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-04-25T04:23:41.9672729Z [5545/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-04-25T04:23:41.9967049Z [5546/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-04-25T04:23:42.0105706Z [5547/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-04-25T04:23:42.0302585Z [5548/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-04-25T04:23:42.0376330Z [5549/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-04-25T04:23:42.0433224Z [5550/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-04-25T04:23:42.0494904Z [5551/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-04-25T04:23:42.0578632Z [5552/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-04-25T04:23:42.1040785Z [5553/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-04-25T04:23:42.1203672Z [5554/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-04-25T04:23:42.1245971Z [5555/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-04-25T04:23:42.1512292Z [5556/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-04-25T04:23:42.2257858Z [5557/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-04-25T04:23:42.2467926Z [5558/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-04-25T04:23:42.2510573Z [5559/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-04-25T04:23:42.2558151Z [5560/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-04-25T04:23:42.2571723Z [5561/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-04-25T04:23:42.2634167Z [5562/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-04-25T04:23:42.2814230Z [5563/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-04-25T04:23:42.3308798Z [5564/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-04-25T04:23:42.3448196Z [5565/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-04-25T04:23:42.3494174Z [5566/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-04-25T04:23:42.3690281Z [5567/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-04-25T04:23:42.3876814Z [5568/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-04-25T04:23:42.3944929Z [5569/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-04-25T04:23:42.4033179Z [5570/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-04-25T04:23:42.4080843Z [5571/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-04-25T04:23:42.4437927Z [5572/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-04-25T04:23:42.4831240Z [5573/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-04-25T04:23:42.4931070Z [5574/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-04-25T04:23:42.9489080Z [5575/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-04-25T04:23:43.1008267Z [5576/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-04-25T04:23:43.1021216Z [5577/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-04-25T04:23:43.1032363Z [5578/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-04-25T04:23:43.1044149Z [5579/7078] 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-04-25T04:23:43.1056701Z [5580/7078] 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-04-25T04:23:43.1068061Z [5581/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-04-25T04:23:43.2101905Z [5582/7078] 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-04-25T04:23:43.2114835Z [5583/7078] 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-04-25T04:23:43.2185462Z [5584/7078] 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-04-25T04:23:43.2517679Z [5585/7078] 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-04-25T04:23:43.2636982Z [5586/7078] 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-04-25T04:23:43.2763445Z [5587/7078] 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-04-25T04:23:43.2881073Z [5588/7078] 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-04-25T04:23:43.3590609Z [5589/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-04-25T04:23:43.3648177Z [5590/7078] 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-04-25T04:23:43.3692536Z [5591/7078] 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-04-25T04:23:43.3841069Z [5592/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-04-25T04:23:43.4270654Z [5593/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-04-25T04:23:43.4284086Z [5594/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-04-25T04:23:43.4505248Z [5595/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-04-25T04:23:43.4680003Z [5596/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-04-25T04:23:43.4895933Z [5597/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-04-25T04:23:43.4909085Z [5598/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-04-25T04:23:43.5148111Z [5599/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-04-25T04:23:43.5158402Z [5600/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-04-25T04:23:43.5446462Z [5601/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-04-25T04:23:43.5674069Z [5602/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-04-25T04:23:43.6043447Z [5603/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-04-25T04:23:43.6099291Z [5604/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-04-25T04:23:43.6113311Z [5605/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-04-25T04:23:43.6510197Z [5606/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-04-25T04:23:43.6687568Z [5607/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-04-25T04:23:43.6741110Z [5608/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-04-25T04:23:43.6754073Z [5609/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-04-25T04:23:43.7140066Z [5610/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-04-25T04:23:43.7412707Z [5611/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-04-25T04:23:43.7526996Z [5612/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-04-25T04:23:43.8066665Z [5613/7078] 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-04-25T04:23:43.8303699Z [5614/7078] 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-04-25T04:23:43.8355492Z [5615/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-04-25T04:23:43.8443712Z [5616/7078] 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-04-25T04:23:43.8495911Z [5617/7078] 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-04-25T04:23:43.8553236Z [5618/7078] 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-04-25T04:23:43.8646234Z [5619/7078] 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-04-25T04:23:43.9473802Z [5620/7078] 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-04-25T04:23:43.9737562Z [5621/7078] 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-04-25T04:23:43.9780521Z [5622/7078] 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-04-25T04:23:43.9829640Z [5623/7078] 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-04-25T04:23:43.9979781Z [5624/7078] 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-04-25T04:23:44.0467927Z [5625/7078] 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-04-25T04:23:44.0793969Z [5626/7078] 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-04-25T04:23:44.0876185Z [5627/7078] 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-04-25T04:23:44.1157348Z [5628/7078] 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-04-25T04:23:44.1350643Z [5629/7078] 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-04-25T04:23:44.1362651Z [5630/7078] 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-04-25T04:23:44.1374432Z [5631/7078] 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-04-25T04:23:44.1805813Z [5632/7078] 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-04-25T04:23:44.2167759Z [5633/7078] 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-04-25T04:23:44.2224205Z [5634/7078] 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-04-25T04:23:44.2568514Z [5635/7078] 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-04-25T04:23:44.2699245Z [5636/7078] 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-04-25T04:23:44.2845886Z [5637/7078] 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-04-25T04:23:44.2861575Z [5638/7078] 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-04-25T04:23:44.3371450Z [5639/7078] 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-04-25T04:23:44.3630414Z [5640/7078] 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-04-25T04:23:44.3729560Z [5641/7078] 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-04-25T04:23:44.3882961Z [5642/7078] 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-04-25T04:23:44.4123773Z [5643/7078] 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-04-25T04:23:44.4424980Z [5644/7078] 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-04-25T04:23:44.4440043Z [5645/7078] 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-04-25T04:23:44.4561159Z [5646/7078] 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-04-25T04:23:44.5096751Z [5647/7078] 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-04-25T04:23:44.5202839Z [5648/7078] 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-04-25T04:23:44.5351467Z [5649/7078] 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-04-25T04:23:44.5659788Z [5650/7078] 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-04-25T04:23:44.5724430Z [5651/7078] 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-04-25T04:23:44.5778855Z [5652/7078] 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-04-25T04:23:44.6022293Z [5653/7078] 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-04-25T04:23:44.6347471Z [5654/7078] 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-04-25T04:23:44.7053871Z [5655/7078] 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-04-25T04:23:44.7066216Z [5656/7078] 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-04-25T04:23:44.7143286Z [5657/7078] 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-04-25T04:23:44.7193255Z [5658/7078] 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-04-25T04:23:44.7513712Z [5659/7078] 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-04-25T04:23:44.7624733Z [5660/7078] 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-04-25T04:23:44.8054684Z [5661/7078] 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-04-25T04:23:44.8285115Z [5662/7078] 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-04-25T04:23:44.8340458Z [5663/7078] 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-04-25T04:23:44.8352439Z [5664/7078] 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-04-25T04:23:44.8481136Z [5665/7078] 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-04-25T04:23:44.9333837Z [5666/7078] 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-04-25T04:23:44.9533290Z [5667/7078] 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-04-25T04:23:44.9546710Z [5668/7078] 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-04-25T04:23:44.9965613Z [5669/7078] 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-04-25T04:23:45.0014808Z [5670/7078] 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-04-25T04:23:45.0142868Z [5671/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.0270893Z [5672/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.0362632Z [5673/7078] 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-04-25T04:23:45.0614578Z [5674/7078] 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-04-25T04:23:45.0996894Z [5675/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.1175035Z [5676/7078] 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-04-25T04:23:45.1332964Z [5677/7078] 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-04-25T04:23:45.1466742Z [5678/7078] 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-04-25T04:23:45.1709302Z [5679/7078] 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-04-25T04:23:45.1992744Z [5680/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.2041212Z [5681/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.2102146Z [5682/7078] 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-04-25T04:23:45.2254129Z [5683/7078] 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-04-25T04:23:45.2639285Z [5684/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.2769566Z [5685/7078] 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-04-25T04:23:45.2782586Z [5686/7078] 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-04-25T04:23:45.3129001Z [5687/7078] 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-04-25T04:23:45.3306655Z [5688/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.3529435Z [5689/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.3920356Z [5690/7078] 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-04-25T04:23:45.3974870Z [5691/7078] 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-04-25T04:23:45.4090824Z [5692/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.4146111Z [5693/7078] 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-04-25T04:23:45.4572250Z [5694/7078] 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-04-25T04:23:45.4625830Z [5695/7078] 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-04-25T04:23:45.5016548Z [5696/7078] 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-04-25T04:23:45.5188117Z [5697/7078] 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-04-25T04:23:45.5200644Z [5698/7078] 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-04-25T04:23:45.5384444Z [5699/7078] 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-04-25T04:23:45.5442852Z [5700/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.5967302Z [5701/7078] 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-04-25T04:23:45.5980319Z [5702/7078] 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-04-25T04:23:45.6158414Z [5703/7078] 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-04-25T04:23:45.6489284Z [5704/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.6543760Z [5705/7078] 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-04-25T04:23:45.6639152Z [5706/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.6782813Z [5707/7078] 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-04-25T04:23:45.7226628Z [5708/7078] 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-04-25T04:23:45.7297489Z [5709/7078] 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-04-25T04:23:45.7659852Z [5710/7078] 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-04-25T04:23:45.7852114Z [5711/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-04-25T04:23:45.7863699Z [5712/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:45.8051668Z [5713/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-04-25T04:23:45.8386450Z [5714/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-04-25T04:23:45.8556533Z [5715/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-04-25T04:23:45.8627180Z [5716/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-04-25T04:23:45.8772631Z [5717/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-04-25T04:23:45.8887084Z [5718/7078] 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-04-25T04:23:45.9144101Z [5719/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-04-25T04:23:45.9156813Z [5720/7078] 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-04-25T04:23:45.9715611Z [5721/7078] 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-04-25T04:23:45.9762687Z [5722/7078] 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-04-25T04:23:46.0007436Z [5723/7078] 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-04-25T04:23:46.0067770Z [5724/7078] 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-04-25T04:23:46.0197514Z [5725/7078] 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-04-25T04:23:46.0331166Z [5726/7078] 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-04-25T04:23:46.0395458Z [5727/7078] 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-04-25T04:23:46.0848467Z [5728/7078] 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-04-25T04:23:46.1953057Z [5729/7078] 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-04-25T04:23:46.2014678Z [5730/7078] 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-04-25T04:23:46.2026553Z [5731/7078] 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-04-25T04:23:46.2038028Z [5732/7078] 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-04-25T04:23:46.2049562Z [5733/7078] 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-04-25T04:23:46.2061146Z [5734/7078] 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-04-25T04:23:46.2113731Z [5735/7078] 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-04-25T04:23:46.3163300Z [5736/7078] 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-04-25T04:23:46.3205918Z [5737/7078] 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-04-25T04:23:46.3288695Z [5738/7078] 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-04-25T04:23:46.3367003Z [5739/7078] 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-04-25T04:23:46.3480156Z [5740/7078] 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-04-25T04:23:46.3557330Z [5741/7078] 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-04-25T04:23:46.4241636Z [5742/7078] 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-04-25T04:23:46.4324548Z [5743/7078] 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-04-25T04:23:46.4413317Z [5744/7078] 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-04-25T04:23:46.4515936Z [5745/7078] 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-04-25T04:23:46.4677866Z [5746/7078] 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-04-25T04:23:46.4735251Z [5747/7078] 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-04-25T04:23:46.4791435Z [5748/7078] 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-04-25T04:23:46.5392104Z [5749/7078] 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-04-25T04:23:46.5629007Z [5750/7078] 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-04-25T04:23:46.5775224Z [5751/7078] 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-04-25T04:23:46.5824391Z [5752/7078] 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-04-25T04:23:46.5990486Z [5753/7078] 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-04-25T04:23:46.6076153Z [5754/7078] 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-04-25T04:23:46.6326674Z [5755/7078] 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-04-25T04:23:46.6562699Z [5756/7078] 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-04-25T04:23:46.6737831Z [5757/7078] 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-04-25T04:23:46.6827004Z [5758/7078] 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-04-25T04:23:46.7053542Z [5759/7078] 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-04-25T04:23:46.7104711Z [5760/7078] 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-04-25T04:23:46.7255866Z [5761/7078] 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-04-25T04:23:46.7484663Z [5762/7078] 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-04-25T04:23:46.7736862Z [5763/7078] 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-04-25T04:23:46.7895055Z [5764/7078] 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-04-25T04:23:46.8036588Z [5765/7078] 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-04-25T04:23:46.8392931Z [5766/7078] 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-04-25T04:23:46.8559649Z [5767/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-04-25T04:23:46.8642044Z [5768/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-04-25T04:23:46.8695929Z [5769/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-04-25T04:23:46.8743601Z [5770/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-04-25T04:23:46.8878384Z [5771/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-04-25T04:23:46.9345437Z [5772/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-04-25T04:23:46.9764708Z [5773/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-04-25T04:23:46.9945559Z [5774/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-04-25T04:23:47.0120750Z [5775/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-04-25T04:23:47.0314344Z [5776/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-04-25T04:23:47.0524482Z [5777/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-04-25T04:23:47.3241983Z [5778/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-04-25T04:23:47.3456017Z [5779/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-04-25T04:23:47.3653721Z [5780/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.3845759Z [5781/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.3858276Z [5782/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-04-25T04:23:47.3973280Z [5783/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.4025787Z [5784/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.4255051Z [5785/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.4714116Z [5786/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.4821101Z [5787/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.4935547Z [5788/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5289575Z [5789/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5361889Z [5790/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5497098Z [5791/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5718666Z [5792/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-04-25T04:23:47.5767997Z [5793/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5811026Z [5794/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-04-25T04:23:47.5971466Z [5795/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-04-25T04:23:47.6223303Z [5796/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-04-25T04:23:47.6694605Z [5797/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:23:47.6794600Z [5798/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:23:47.6899987Z [5799/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:23:47.6972695Z [5800/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-04-25T04:23:47.7147129Z [5801/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-04-25T04:23:47.7158621Z [5802/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-04-25T04:23:47.7249982Z [5803/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-04-25T04:23:47.7724985Z [5804/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-04-25T04:23:47.7947122Z [5805/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-04-25T04:23:47.7999748Z [5806/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-04-25T04:23:47.8068146Z [5807/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-04-25T04:23:47.8154862Z [5808/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-04-25T04:23:47.8351234Z [5809/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-04-25T04:23:47.8474147Z [5810/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-04-25T04:23:47.8781966Z [5811/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-04-25T04:23:47.8989685Z [5812/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-04-25T04:23:47.9003335Z [5813/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-04-25T04:23:47.9324820Z [5814/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-04-25T04:23:47.9376923Z [5815/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-04-25T04:23:47.9424938Z [5816/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-04-25T04:23:47.9520569Z [5817/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-04-25T04:23:47.9718541Z [5818/7078] 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-04-25T04:23:48.0013256Z [5819/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-04-25T04:23:48.0126720Z [5820/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-04-25T04:23:48.0230738Z [5821/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-04-25T04:23:48.0372850Z [5822/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-04-25T04:23:48.0420597Z [5823/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-04-25T04:23:48.0535926Z [5824/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-04-25T04:23:48.1399641Z [5825/7078] 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-04-25T04:23:48.1445271Z [5826/7078] 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-04-25T04:23:48.1612781Z [5827/7078] 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-04-25T04:23:48.1663914Z [5828/7078] 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-04-25T04:23:48.1674971Z [5829/7078] 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-04-25T04:23:48.1724684Z [5830/7078] 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-04-25T04:23:48.1736171Z [5831/7078] 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-04-25T04:23:48.2876102Z [5832/7078] 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-04-25T04:23:48.2950280Z [5833/7078] 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-04-25T04:23:48.2999397Z [5834/7078] 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-04-25T04:23:48.3013491Z [5835/7078] 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-04-25T04:23:48.3069113Z [5836/7078] 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-04-25T04:23:48.3079467Z [5837/7078] 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-04-25T04:23:48.3197229Z [5838/7078] 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-04-25T04:23:48.4370501Z [5839/7078] 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-04-25T04:23:48.4421336Z [5840/7078] 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-04-25T04:23:48.4433663Z [5841/7078] 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-04-25T04:23:48.4481037Z [5842/7078] 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-04-25T04:23:48.4712982Z [5843/7078] 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-04-25T04:23:48.4906696Z [5844/7078] 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-04-25T04:23:48.5191579Z [5845/7078] 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-04-25T04:23:48.5667984Z [5846/7078] 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-04-25T04:23:48.5719398Z [5847/7078] 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-04-25T04:23:48.5908844Z [5848/7078] 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-04-25T04:23:48.5979081Z [5849/7078] 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-04-25T04:23:48.6098139Z [5850/7078] 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-04-25T04:23:48.6400989Z [5851/7078] 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-04-25T04:23:48.6591792Z [5852/7078] 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-04-25T04:23:48.6936292Z [5853/7078] 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-04-25T04:23:48.7016127Z [5854/7078] 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-04-25T04:23:48.7420103Z [5855/7078] 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-04-25T04:23:48.7697831Z [5856/7078] 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-04-25T04:23:48.7787186Z [5857/7078] 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-04-25T04:23:48.7893927Z [5858/7078] 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-04-25T04:23:48.8033126Z [5859/7078] 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-04-25T04:23:48.8126323Z [5860/7078] 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-04-25T04:23:48.8311217Z [5861/7078] 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-04-25T04:23:48.9141761Z [5862/7078] 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-04-25T04:23:48.9155642Z [5863/7078] 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-04-25T04:23:48.9258095Z [5864/7078] 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-04-25T04:23:48.9307626Z [5865/7078] 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-04-25T04:23:48.9504776Z [5866/7078] 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-04-25T04:23:48.9711605Z [5867/7078] 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-04-25T04:23:48.9858894Z [5868/7078] 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-04-25T04:23:49.1021841Z [5869/7078] 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-04-25T04:23:49.1188342Z [5870/7078] 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-04-25T04:23:49.1448495Z [5871/7078] 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-04-25T04:23:49.2211251Z [5872/7078] 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-04-25T04:23:49.3177326Z [5873/7078] 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-04-25T04:23:49.3912111Z [5874/7078] 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-04-25T04:23:49.4861497Z [5875/7078] 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-04-25T04:23:49.5703432Z [5876/7078] 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-04-25T04:23:49.7645338Z [5877/7078] 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-04-25T04:23:49.7993077Z [5878/7078] 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-04-25T04:23:50.0525498Z [5879/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-04-25T04:23:50.0627750Z [5880/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-04-25T04:23:50.0767280Z [5881/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-04-25T04:23:50.1264318Z [5882/7078] 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-04-25T04:23:50.1277164Z [5883/7078] 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-04-25T04:23:50.1324183Z [5884/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-04-25T04:23:50.2147316Z [5885/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-04-25T04:23:50.6066370Z [5886/7078] 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-04-25T04:23:50.6370184Z [5887/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-04-25T04:23:50.6663360Z [5888/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-04-25T04:23:50.6971502Z [5889/7078] 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-04-25T04:23:50.7272824Z [5890/7078] 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-04-25T04:23:50.7669554Z [5891/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-04-25T04:23:50.9951252Z [5892/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-04-25T04:23:51.0028716Z [5893/7078] 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-04-25T04:23:51.0042768Z [5894/7078] 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-04-25T04:23:51.0053109Z [5895/7078] 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-04-25T04:23:51.0065367Z [5896/7078] 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-04-25T04:23:51.0078598Z [5897/7078] 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-04-25T04:23:51.2380230Z [5898/7078] 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-04-25T04:23:51.2462413Z [5899/7078] 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-04-25T04:23:51.2473741Z [5900/7078] 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-04-25T04:23:51.2484603Z [5901/7078] 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-04-25T04:23:51.2494880Z [5902/7078] 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-04-25T04:23:51.2505877Z [5903/7078] 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-04-25T04:23:51.2519814Z [5904/7078] 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-04-25T04:23:51.5179293Z [5905/7078] 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-04-25T04:23:51.5454556Z [5906/7078] 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-04-25T04:23:51.6418772Z [5907/7078] 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-04-25T04:23:51.6637385Z [5908/7078] 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-04-25T04:23:51.6788664Z [5909/7078] 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-04-25T04:23:51.6958866Z [5910/7078] 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-04-25T04:23:51.7414945Z [5911/7078] 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-04-25T04:23:51.7656524Z [5912/7078] 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-04-25T04:23:51.7940904Z [5913/7078] 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-04-25T04:23:51.8132557Z [5914/7078] 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-04-25T04:23:51.8144704Z [5915/7078] 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-04-25T04:23:51.8323467Z [5916/7078] 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-04-25T04:23:51.8390765Z [5917/7078] 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-04-25T04:23:51.9006704Z [5918/7078] 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-04-25T04:23:52.0769574Z [5919/7078] 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-04-25T04:23:52.1144812Z [5920/7078] 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-04-25T04:23:52.1475893Z [5921/7078] 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-04-25T04:23:52.1664423Z [5922/7078] 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-04-25T04:23:52.2002091Z [5923/7078] 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-04-25T04:23:52.2047416Z [5924/7078] 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-04-25T04:23:52.2096671Z [5925/7078] 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-04-25T04:23:52.2437473Z [5926/7078] 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-04-25T04:23:52.3555605Z [5927/7078] 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-04-25T04:23:52.3604483Z [5928/7078] 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-04-25T04:23:52.3616928Z [5929/7078] 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-04-25T04:23:52.3802035Z [5930/7078] 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-04-25T04:23:52.3864354Z [5931/7078] 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-04-25T04:23:52.4480642Z [5932/7078] 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-04-25T04:23:52.4523027Z [5933/7078] 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-04-25T04:23:52.5966445Z [5934/7078] 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-04-25T04:23:52.6036190Z [5935/7078] 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-04-25T04:23:52.6926577Z [5936/7078] 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-04-25T04:23:52.6984616Z [5937/7078] 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-04-25T04:23:52.7940201Z [5938/7078] 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-04-25T04:23:52.9821260Z [5939/7078] 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-04-25T04:23:52.9835545Z [5940/7078] 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-04-25T04:23:52.9847769Z [5941/7078] 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-04-25T04:23:53.0811877Z [5942/7078] 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-04-25T04:23:53.0853668Z [5943/7078] 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-04-25T04:23:53.1952331Z [5944/7078] 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-04-25T04:23:53.1965257Z [5945/7078] 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-04-25T04:23:53.1975688Z [5946/7078] 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-04-25T04:23:53.1986435Z [5947/7078] 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-04-25T04:23:53.2089324Z [5948/7078] 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-04-25T04:23:53.2248323Z [5949/7078] 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-04-25T04:23:53.2879501Z [5950/7078] 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-04-25T04:23:53.4881341Z [5951/7078] 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-04-25T04:23:53.4990466Z [5952/7078] 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-04-25T04:23:53.5001821Z [5953/7078] 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-04-25T04:23:53.5450160Z [5954/7078] 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-04-25T04:23:53.5462962Z [5955/7078] 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-04-25T04:23:53.5508781Z [5956/7078] 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-04-25T04:23:53.6235750Z [5957/7078] 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-04-25T04:23:53.6492394Z [5958/7078] 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-04-25T04:23:53.6556878Z [5959/7078] 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-04-25T04:23:53.7219660Z [5960/7078] 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-04-25T04:23:53.8123448Z [5961/7078] 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-04-25T04:23:53.8207529Z [5962/7078] 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-04-25T04:23:53.8348809Z [5963/7078] 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-04-25T04:23:53.8730297Z [5964/7078] 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-04-25T04:23:53.8790462Z [5965/7078] 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-04-25T04:23:53.9402787Z [5966/7078] 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-04-25T04:23:53.9416773Z [5967/7078] 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-04-25T04:23:53.9594551Z [5968/7078] 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-04-25T04:23:53.9843803Z [5969/7078] 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-04-25T04:23:54.0302221Z [5970/7078] 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-04-25T04:23:54.0421146Z [5971/7078] 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-04-25T04:23:54.0517277Z [5972/7078] 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-04-25T04:23:54.1322887Z [5973/7078] 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-04-25T04:23:54.1406859Z [5974/7078] 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-04-25T04:23:54.1577305Z [5975/7078] 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-04-25T04:23:54.2735323Z [5976/7078] 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-04-25T04:23:54.2819417Z [5977/7078] 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-04-25T04:23:54.3416674Z [5978/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-04-25T04:23:54.3625301Z [5979/7078] 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-04-25T04:23:54.3900119Z [5980/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-04-25T04:23:54.4280471Z [5981/7078] 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-04-25T04:23:54.4566265Z [5982/7078] 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-04-25T04:23:54.5340171Z [5983/7078] 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-04-25T04:23:54.5434595Z [5984/7078] 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-04-25T04:23:54.6464632Z [5985/7078] 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-04-25T04:23:54.6476715Z [5986/7078] 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-04-25T04:23:54.9004466Z [5987/7078] 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-04-25T04:23:54.9017260Z [5988/7078] 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-04-25T04:23:54.9028589Z [5989/7078] 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-04-25T04:23:54.9041247Z [5990/7078] 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-04-25T04:23:54.9100975Z [5991/7078] 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-04-25T04:23:54.9115536Z [5992/7078] 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-04-25T04:23:54.9962327Z [5993/7078] 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-04-25T04:23:55.0219217Z [5994/7078] 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-04-25T04:23:55.0323619Z [5995/7078] 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-04-25T04:23:55.0416315Z [5996/7078] 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-04-25T04:23:55.2207977Z [5997/7078] 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-04-25T04:23:55.3533710Z [5998/7078] 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-04-25T04:23:55.3546631Z [5999/7078] 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-04-25T04:23:55.3559071Z [6000/7078] 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-04-25T04:23:55.3743393Z [6001/7078] 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-04-25T04:23:55.3799760Z [6002/7078] 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-04-25T04:23:55.4522142Z [6003/7078] 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-04-25T04:23:55.4638221Z [6004/7078] 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-04-25T04:23:55.4879902Z [6005/7078] 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-04-25T04:23:55.4963577Z [6006/7078] 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-04-25T04:23:55.5855256Z [6007/7078] 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-04-25T04:23:55.5867686Z [6008/7078] 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-04-25T04:23:55.6033099Z [6009/7078] 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-04-25T04:23:55.6724719Z [6010/7078] 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-04-25T04:23:55.6737727Z [6011/7078] 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-04-25T04:23:55.6783276Z [6012/7078] 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-04-25T04:23:55.6836862Z [6013/7078] 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-04-25T04:23:55.6946394Z [6014/7078] 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-04-25T04:23:55.7432456Z [6015/7078] 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-04-25T04:23:55.7688776Z [6016/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-04-25T04:23:55.7705898Z [6017/7078] 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-04-25T04:23:55.7807123Z [6018/7078] 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-04-25T04:23:55.7827580Z [6019/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-04-25T04:23:55.7877946Z [6020/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-04-25T04:23:55.8303840Z [6021/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-04-25T04:23:55.8602560Z [6022/7078] 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-04-25T04:23:55.9095446Z [6023/7078] 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-04-25T04:23:55.9260664Z [6024/7078] 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-04-25T04:23:55.9377877Z [6025/7078] 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-04-25T04:23:55.9425907Z [6026/7078] 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-04-25T04:23:55.9665473Z [6027/7078] 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-04-25T04:23:55.9709993Z [6028/7078] 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-04-25T04:23:55.9761842Z [6029/7078] 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-04-25T04:23:56.0713047Z [6030/7078] 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-04-25T04:23:56.0819440Z [6031/7078] 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-04-25T04:23:56.0864890Z [6032/7078] 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-04-25T04:23:56.1007764Z [6033/7078] 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-04-25T04:23:56.1055760Z [6034/7078] 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-04-25T04:23:56.1294973Z [6035/7078] 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-04-25T04:23:56.1470228Z [6036/7078] 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-04-25T04:23:56.2059685Z [6037/7078] 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-04-25T04:23:56.2140254Z [6038/7078] 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-04-25T04:23:56.2277022Z [6039/7078] 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-04-25T04:23:56.2345918Z [6040/7078] 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-04-25T04:23:56.2410354Z [6041/7078] 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-04-25T04:23:56.2656086Z [6042/7078] 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-04-25T04:23:56.2742034Z [6043/7078] 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-04-25T04:23:56.3774610Z [6044/7078] 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-04-25T04:23:56.3966642Z [6045/7078] 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-04-25T04:23:56.3980084Z [6046/7078] 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-04-25T04:23:56.4032549Z [6047/7078] 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-04-25T04:23:56.4114104Z [6048/7078] 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-04-25T04:23:56.4418358Z [6049/7078] 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-04-25T04:23:56.5826855Z [6050/7078] 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-04-25T04:23:56.5916603Z [6051/7078] 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-04-25T04:23:56.6073740Z [6052/7078] 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-04-25T04:23:56.6142827Z [6053/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.6274193Z [6054/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-04-25T04:23:56.6326086Z [6055/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.6818746Z [6056/7078] 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-04-25T04:23:56.6909293Z [6057/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.7842851Z [6058/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-04-25T04:23:56.8820587Z [6059/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-04-25T04:23:56.8833005Z [6060/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.8845016Z [6061/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.8896199Z [6062/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.9518387Z [6063/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:56.9571766Z [6064/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:57.0167575Z [6065/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-04-25T04:23:57.0971159Z [6066/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:57.1856349Z [6067/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.2197377Z [6068/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-04-25T04:23:57.2244927Z [6069/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-04-25T04:23:57.2655660Z [6070/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.2796694Z [6071/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.3058460Z [6072/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.3904596Z [6073/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.4545310Z [6074/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.4589030Z [6075/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.4639431Z [6076/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.5743755Z [6077/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.5756142Z [6078/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.5913787Z [6079/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.6709810Z [6080/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.6722074Z [6081/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.6884014Z [6082/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.6959025Z [6083/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.8062084Z [6084/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.8077799Z [6085/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.8093670Z [6086/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.8107691Z [6087/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9099020Z [6088/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9112614Z [6089/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9316839Z [6090/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9401934Z [6091/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9452473Z [6092/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9466018Z [6093/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:57.9662235Z [6094/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.0563869Z [6095/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.0752045Z [6096/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.0765571Z [6097/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.0823764Z [6098/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.0835137Z [6099/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.1107572Z [6100/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.1333290Z [6101/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.2052721Z [6102/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.2123623Z [6103/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.2136996Z [6104/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.2300666Z [6105/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.2785200Z [6106/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.6074322Z [6107/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.6085925Z [6108/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.6097253Z [6109/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.6108122Z [6110/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.6836419Z [6111/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.7151462Z [6112/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.9585456Z [6113/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:58.9983416Z [6114/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.0082030Z [6115/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.0311412Z [6116/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.0323430Z [6117/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.1130328Z [6118/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.1176538Z [6119/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.1942471Z [6120/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.1985562Z [6121/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.2720605Z [6122/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-04-25T04:23:59.2733040Z [6123/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-04-25T04:23:59.2810002Z [6124/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-04-25T04:23:59.3567943Z [6125/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-04-25T04:23:59.3611718Z [6126/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.3659686Z [6127/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-04-25T04:23:59.3674696Z [6128/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.3760415Z [6129/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-04-25T04:23:59.3838249Z [6130/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-04-25T04:23:59.4227976Z [6131/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-04-25T04:23:59.4378171Z [6132/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-04-25T04:23:59.4451339Z [6133/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-04-25T04:23:59.4462206Z [6134/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-04-25T04:23:59.4631990Z [6135/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-04-25T04:23:59.4829495Z [6136/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-04-25T04:23:59.4965562Z [6137/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-04-25T04:23:59.5059925Z [6138/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-04-25T04:23:59.5140915Z [6139/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-04-25T04:23:59.6114985Z [6140/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-04-25T04:23:59.6126491Z [6141/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-04-25T04:23:59.6137668Z [6142/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-04-25T04:23:59.6206448Z [6143/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-04-25T04:23:59.6364341Z [6144/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-04-25T04:23:59.6412285Z [6145/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-04-25T04:23:59.6534971Z [6146/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-04-25T04:23:59.7002409Z [6147/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-04-25T04:23:59.7090235Z [6148/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-04-25T04:23:59.7100059Z [6149/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-04-25T04:23:59.7233922Z [6150/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-04-25T04:23:59.7281330Z [6151/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-04-25T04:23:59.7293610Z [6152/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-04-25T04:23:59.7857037Z [6153/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-04-25T04:23:59.8045072Z [6154/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-04-25T04:23:59.8273491Z [6155/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-04-25T04:23:59.8329409Z [6156/7078] 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-04-25T04:23:59.8341541Z [6157/7078] 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-04-25T04:23:59.8420789Z [6158/7078] 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-04-25T04:23:59.9052604Z [6159/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-04-25T04:23:59.9217178Z [6160/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-04-25T04:23:59.9284214Z [6161/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-04-25T04:23:59.9879833Z [6162/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-04-25T04:24:00.1094027Z [6163/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-04-25T04:24:00.1106542Z [6164/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-04-25T04:24:00.1118757Z [6165/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-04-25T04:24:00.1162230Z [6166/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-04-25T04:24:00.1174226Z [6167/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-04-25T04:24:00.1232698Z [6168/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-04-25T04:24:00.1472704Z [6169/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-04-25T04:24:00.2054175Z [6170/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-04-25T04:24:00.2188423Z [6171/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-04-25T04:24:00.2231984Z [6172/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-04-25T04:24:00.2351128Z [6173/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-04-25T04:24:00.3503305Z [6174/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-04-25T04:24:00.3551499Z [6175/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-04-25T04:24:00.3566721Z [6176/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-04-25T04:24:00.3621484Z [6177/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-04-25T04:24:00.3636349Z [6178/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-04-25T04:24:00.3647779Z [6179/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-04-25T04:24:00.4609755Z [6180/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-04-25T04:24:00.5842616Z [6181/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-04-25T04:24:00.6668146Z [6182/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-04-25T04:24:00.7391446Z [6183/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-04-25T04:24:00.7455562Z [6184/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-04-25T04:24:00.7617910Z [6185/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-04-25T04:24:00.7671313Z [6186/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-04-25T04:24:00.7862942Z [6187/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-04-25T04:24:00.8721762Z [6188/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-04-25T04:24:00.8819229Z [6189/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-04-25T04:24:00.8836340Z [6190/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-04-25T04:24:00.9308386Z [6191/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-04-25T04:24:00.9517018Z [6192/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-04-25T04:24:00.9578534Z [6193/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-04-25T04:24:00.9793980Z [6194/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-04-25T04:24:00.9883602Z [6195/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-04-25T04:24:00.9948175Z [6196/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-04-25T04:24:01.0333752Z [6197/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-04-25T04:24:01.0388042Z [6198/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-04-25T04:24:01.0754078Z [6199/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-04-25T04:24:01.0769052Z [6200/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-04-25T04:24:01.1493627Z [6201/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-04-25T04:24:01.1546072Z [6202/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-04-25T04:24:01.1601250Z [6203/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-04-25T04:24:01.1659477Z [6204/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-04-25T04:24:01.2357118Z [6205/7078] 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-04-25T04:24:01.2435010Z [6206/7078] 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-04-25T04:24:01.2550279Z [6207/7078] 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-04-25T04:24:01.2693087Z [6208/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-04-25T04:24:01.2939451Z [6209/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-04-25T04:24:01.3030081Z [6210/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-04-25T04:24:01.4254116Z [6211/7078] 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-04-25T04:24:01.4385194Z [6212/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-04-25T04:24:01.5909562Z [6213/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-04-25T04:24:01.6998840Z [6214/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-04-25T04:24:01.7050043Z [6215/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-04-25T04:24:01.7100332Z [6216/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-04-25T04:24:01.7284276Z [6217/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-04-25T04:24:01.7325925Z [6218/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-04-25T04:24:01.7388621Z [6219/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-04-25T04:24:01.7545248Z [6220/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-04-25T04:24:01.8091927Z [6221/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-04-25T04:24:01.8104433Z [6222/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-04-25T04:24:01.8238416Z [6223/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-04-25T04:24:01.8286130Z [6224/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-04-25T04:24:01.8298081Z [6225/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-04-25T04:24:01.8311182Z [6226/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-04-25T04:24:01.8365077Z [6227/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-04-25T04:24:02.0382089Z [6228/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-04-25T04:24:02.0438987Z [6229/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-04-25T04:24:02.0453634Z [6230/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-04-25T04:24:02.0498119Z [6231/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-04-25T04:24:02.0797622Z [6232/7078] 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-04-25T04:24:02.1024974Z [6233/7078] 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-04-25T04:24:02.1219666Z [6234/7078] 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-04-25T04:24:02.1526714Z [6235/7078] 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-04-25T04:24:02.2503909Z [6236/7078] 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-04-25T04:24:02.2518536Z [6237/7078] 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-04-25T04:24:02.2533041Z [6238/7078] 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-04-25T04:24:02.2546310Z [6239/7078] 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-04-25T04:24:02.3174287Z [6240/7078] 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-04-25T04:24:02.3243795Z [6241/7078] 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-04-25T04:24:02.3301551Z [6242/7078] 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-04-25T04:24:02.3613461Z [6243/7078] 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-04-25T04:24:02.3668744Z [6244/7078] 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-04-25T04:24:02.3723995Z [6245/7078] 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-04-25T04:24:02.3960704Z [6246/7078] 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-04-25T04:24:02.4271122Z [6247/7078] 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-04-25T04:24:02.4393440Z [6248/7078] 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-04-25T04:24:02.4668961Z [6249/7078] 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-04-25T04:24:02.4841938Z [6250/7078] 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-04-25T04:24:02.4856174Z [6251/7078] 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-04-25T04:24:02.4908883Z [6252/7078] 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-04-25T04:24:02.5119111Z [6253/7078] 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-04-25T04:24:02.5352495Z [6254/7078] 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-04-25T04:24:02.7867030Z [6255/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-04-25T04:24:02.7882781Z [6256/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-04-25T04:24:02.7997112Z [6257/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-04-25T04:24:02.8543298Z [6258/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-04-25T04:24:02.8715509Z [6259/7078] 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-04-25T04:24:02.8867075Z [6260/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-04-25T04:24:02.8912383Z [6261/7078] 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-04-25T04:24:03.0502955Z [6262/7078] 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-04-25T04:24:03.0675092Z [6263/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-04-25T04:24:03.2888705Z [6264/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-04-25T04:24:03.3264787Z [6265/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-04-25T04:24:03.3278842Z [6266/7078] 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-04-25T04:24:03.3291383Z [6267/7078] 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-04-25T04:24:03.3446317Z [6268/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-04-25T04:24:03.3896127Z [6269/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-04-25T04:24:03.4025384Z [6270/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-04-25T04:24:03.4071555Z [6271/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-04-25T04:24:03.5008163Z [6272/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-04-25T04:24:03.5076148Z [6273/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-04-25T04:24:03.5121315Z [6274/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-04-25T04:24:03.5288737Z [6275/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-04-25T04:24:03.5420141Z [6276/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-04-25T04:24:03.6371570Z [6277/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-04-25T04:24:03.6443821Z [6278/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-04-25T04:24:03.6509215Z [6279/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-04-25T04:24:03.6613198Z [6280/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-04-25T04:24:03.7069496Z [6281/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-04-25T04:24:03.7081351Z [6282/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-04-25T04:24:03.7319324Z [6283/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-04-25T04:24:03.7413560Z [6284/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-04-25T04:24:03.7539209Z [6285/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-04-25T04:24:03.7743406Z [6286/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-04-25T04:24:03.7903479Z [6287/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-04-25T04:24:03.8146590Z [6288/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-04-25T04:24:03.9367706Z [6289/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-04-25T04:24:03.9427933Z [6290/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-04-25T04:24:03.9442751Z [6291/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-04-25T04:24:04.0443243Z [6292/7078] 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-04-25T04:24:04.0753914Z [6293/7078] 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-04-25T04:24:04.1541636Z [6294/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-04-25T04:24:04.2476479Z [6295/7078] 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-04-25T04:24:04.2596971Z [6296/7078] 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-04-25T04:24:04.2608803Z [6297/7078] 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-04-25T04:24:04.2744010Z [6298/7078] 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-04-25T04:24:04.2755852Z [6299/7078] 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-04-25T04:24:04.2840036Z [6300/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-04-25T04:24:04.3673977Z [6301/7078] 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-04-25T04:24:04.3733673Z [6302/7078] 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-04-25T04:24:04.5813786Z [6303/7078] 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-04-25T04:24:04.5826425Z [6304/7078] 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-04-25T04:24:04.5837500Z [6305/7078] 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-04-25T04:24:04.5888417Z [6306/7078] 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-04-25T04:24:04.6856531Z [6307/7078] 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-04-25T04:24:04.7140894Z [6308/7078] 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-04-25T04:24:04.7677847Z [6309/7078] 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-04-25T04:24:04.7720470Z [6310/7078] 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-04-25T04:24:04.8852301Z [6311/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-04-25T04:24:04.8924613Z [6312/7078] 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-04-25T04:24:04.8936424Z [6313/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-04-25T04:24:04.9106935Z [6314/7078] 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-04-25T04:24:04.9152071Z [6315/7078] 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-04-25T04:24:05.0273562Z [6316/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-04-25T04:24:05.0286999Z [6317/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-04-25T04:24:05.0331741Z [6318/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-04-25T04:24:05.0503997Z [6319/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-04-25T04:24:05.2041104Z [6320/7078] 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-04-25T04:24:05.2287929Z [6321/7078] 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-04-25T04:24:05.2829517Z [6322/7078] 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-04-25T04:24:05.2848091Z [6323/7078] 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-04-25T04:24:05.3134918Z [6324/7078] 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-04-25T04:24:05.3871743Z [6325/7078] 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-04-25T04:24:05.3925827Z [6326/7078] 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-04-25T04:24:05.3988875Z [6327/7078] 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-04-25T04:24:05.4127562Z [6328/7078] 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-04-25T04:24:05.4201498Z [6329/7078] 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-04-25T04:24:05.4318602Z [6330/7078] 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-04-25T04:24:05.4960917Z [6331/7078] 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-04-25T04:24:05.4972279Z [6332/7078] 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-04-25T04:24:05.6718767Z [6333/7078] 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-04-25T04:24:05.6765105Z [6334/7078] 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-04-25T04:24:05.6776229Z [6335/7078] 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-04-25T04:24:05.6822733Z [6336/7078] 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-04-25T04:24:05.6837995Z [6337/7078] 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-04-25T04:24:05.6888863Z [6338/7078] 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-04-25T04:24:05.6968848Z [6339/7078] 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-04-25T04:24:05.7912372Z [6340/7078] 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-04-25T04:24:05.9242290Z [6341/7078] 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-04-25T04:24:05.9290320Z [6342/7078] 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-04-25T04:24:05.9301350Z [6343/7078] 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-04-25T04:24:05.9360567Z [6344/7078] 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-04-25T04:24:05.9371730Z [6345/7078] 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-04-25T04:24:05.9383708Z [6346/7078] 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-04-25T04:24:05.9802818Z [6347/7078] 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-04-25T04:24:06.1639404Z [6348/7078] 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-04-25T04:24:06.1687335Z [6349/7078] 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-04-25T04:24:06.1701102Z [6350/7078] 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-04-25T04:24:06.1711075Z [6351/7078] 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-04-25T04:24:06.1906126Z [6352/7078] 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-04-25T04:24:06.2205038Z [6353/7078] 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-04-25T04:24:06.2716539Z [6354/7078] 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-04-25T04:24:06.2913735Z [6355/7078] 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-04-25T04:24:06.2965907Z [6356/7078] 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-04-25T04:24:06.3024373Z [6357/7078] 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-04-25T04:24:06.3067741Z [6358/7078] 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-04-25T04:24:06.3368755Z [6359/7078] 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-04-25T04:24:06.3412324Z [6360/7078] 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-04-25T04:24:06.4750646Z [6361/7078] 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-04-25T04:24:06.4845373Z [6362/7078] 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-04-25T04:24:06.5728516Z [6363/7078] 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-04-25T04:24:06.5781472Z [6364/7078] 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-04-25T04:24:06.5866395Z [6365/7078] 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-04-25T04:24:06.6808425Z [6366/7078] 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-04-25T04:24:06.6978626Z [6367/7078] 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-04-25T04:24:06.7859082Z [6368/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:06.8693567Z [6369/7078] 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-04-25T04:24:06.8706240Z [6370/7078] 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-04-25T04:24:06.8717405Z [6371/7078] 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-04-25T04:24:06.8728651Z [6372/7078] 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-04-25T04:24:06.9656731Z [6373/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.0268554Z [6374/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.3262126Z [6375/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.3374340Z [6376/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.3466651Z [6377/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.3778503Z [6378/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.3980541Z [6379/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:07.4534079Z [6380/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-04-25T04:24:07.5920816Z [6381/7078] 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-04-25T04:24:07.7593699Z [6382/7078] 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-04-25T04:24:07.9420982Z [6383/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-04-25T04:24:07.9433483Z [6384/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-04-25T04:24:07.9702105Z [6385/7078] 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-04-25T04:24:08.0213814Z [6386/7078] 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-04-25T04:24:08.0347416Z [6387/7078] 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-04-25T04:24:08.0692726Z [6388/7078] 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-04-25T04:24:08.2548958Z [6389/7078] 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-04-25T04:24:08.2603177Z [6390/7078] 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-04-25T04:24:08.2779178Z [6391/7078] 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-04-25T04:24:08.2793944Z [6392/7078] 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-04-25T04:24:08.2804957Z [6393/7078] 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-04-25T04:24:08.2850918Z [6394/7078] 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-04-25T04:24:08.3349453Z [6395/7078] 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-04-25T04:24:08.3821796Z [6396/7078] 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-04-25T04:24:08.4545445Z [6397/7078] 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-04-25T04:24:08.4604133Z [6398/7078] 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-04-25T04:24:08.4616024Z [6399/7078] 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-04-25T04:24:08.4781908Z [6400/7078] 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-04-25T04:24:08.4858804Z [6401/7078] 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-04-25T04:24:08.5001855Z [6402/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-04-25T04:24:08.5216733Z [6403/7078] 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-04-25T04:24:08.7408841Z [6404/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-04-25T04:24:08.7751064Z [6405/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-04-25T04:24:08.8802280Z [6406/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.1970321Z [6407/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-04-25T04:24:09.1983076Z [6408/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-04-25T04:24:09.1995666Z [6409/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.2008061Z [6410/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-04-25T04:24:09.2380058Z [6411/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.2531873Z [6412/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.6136162Z [6413/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-04-25T04:24:09.7206764Z [6414/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.7220289Z [6415/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.7675581Z [6416/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.7688152Z [6417/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-04-25T04:24:09.7993905Z [6418/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:09.8741393Z [6419/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-04-25T04:24:09.8754991Z [6420/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-04-25T04:24:09.9702746Z [6421/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:09.9898233Z [6422/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.0011705Z [6423/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.0024421Z [6424/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:24:10.0036821Z [6425/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.0212598Z [6426/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:24:10.0832276Z [6427/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:24:10.1455663Z [6428/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.1467641Z [6429/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.1478513Z [6430/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-04-25T04:24:10.1489948Z [6431/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-04-25T04:24:10.2077543Z [6432/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-04-25T04:24:10.2128160Z [6433/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-04-25T04:24:10.3241071Z [6434/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-04-25T04:24:10.3397678Z [6435/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-04-25T04:24:10.3441161Z [6436/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-04-25T04:24:10.3483617Z [6437/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-04-25T04:24:10.4256029Z [6438/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-04-25T04:24:10.4301205Z [6439/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-04-25T04:24:10.5463750Z [6440/7078] 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-04-25T04:24:10.5516565Z [6441/7078] 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-04-25T04:24:10.5942367Z [6442/7078] 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-04-25T04:24:10.6161822Z [6443/7078] 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-04-25T04:24:10.6269929Z [6444/7078] 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-04-25T04:24:10.6451721Z [6445/7078] 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-04-25T04:24:10.6603984Z [6446/7078] 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-04-25T04:24:10.6781994Z [6447/7078] 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-04-25T04:24:10.6794264Z [6448/7078] 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-04-25T04:24:10.7114303Z [6449/7078] 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-04-25T04:24:10.7453259Z [6450/7078] 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-04-25T04:24:10.7771600Z [6451/7078] 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-04-25T04:24:10.7789416Z [6452/7078] 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-04-25T04:24:10.7965994Z [6453/7078] 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-04-25T04:24:10.8180834Z [6454/7078] 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-04-25T04:24:10.8384012Z [6455/7078] 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-04-25T04:24:10.8652543Z [6456/7078] 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-04-25T04:24:10.8978211Z [6457/7078] 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-04-25T04:24:10.9134761Z [6458/7078] 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-04-25T04:24:10.9202717Z [6459/7078] 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-04-25T04:24:10.9344980Z [6460/7078] 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-04-25T04:24:10.9453161Z [6461/7078] 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-04-25T04:24:10.9771104Z [6462/7078] 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-04-25T04:24:10.9923411Z [6463/7078] 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-04-25T04:24:11.0231132Z [6464/7078] 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-04-25T04:24:11.0594754Z [6465/7078] 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-04-25T04:24:11.0671968Z [6466/7078] 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-04-25T04:24:11.0856997Z [6467/7078] 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-04-25T04:24:11.0956777Z [6468/7078] 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-04-25T04:24:11.1070312Z [6469/7078] 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-04-25T04:24:11.1458401Z [6470/7078] 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-04-25T04:24:11.1594304Z [6471/7078] 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-04-25T04:24:11.1928594Z [6472/7078] 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-04-25T04:24:11.1976292Z [6473/7078] 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-04-25T04:24:11.2489485Z [6474/7078] 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-04-25T04:24:11.2547983Z [6475/7078] 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-04-25T04:24:11.2607589Z [6476/7078] 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-04-25T04:24:11.2923701Z [6477/7078] 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-04-25T04:24:11.3007455Z [6478/7078] 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-04-25T04:24:11.3148253Z [6479/7078] 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-04-25T04:24:11.3204454Z [6480/7078] 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-04-25T04:24:11.3904867Z [6481/7078] 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-04-25T04:24:11.3997844Z [6482/7078] 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-04-25T04:24:11.4050621Z [6483/7078] 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-04-25T04:24:11.4303285Z [6484/7078] 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-04-25T04:24:11.4560551Z [6485/7078] 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-04-25T04:24:11.4579141Z [6486/7078] 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-04-25T04:24:11.4870049Z [6487/7078] 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-04-25T04:24:11.5204771Z [6488/7078] 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-04-25T04:24:11.6205165Z [6489/7078] 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-04-25T04:24:11.6393308Z [6490/7078] 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-04-25T04:24:11.6438313Z [6491/7078] 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-04-25T04:24:11.6496457Z [6492/7078] 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-04-25T04:24:11.6541471Z [6493/7078] 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-04-25T04:24:11.6671259Z [6494/7078] 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-04-25T04:24:11.6872659Z [6495/7078] 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-04-25T04:24:11.7542286Z [6496/7078] 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-04-25T04:24:11.7771659Z [6497/7078] 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-04-25T04:24:11.7820232Z [6498/7078] 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-04-25T04:24:11.7894100Z [6499/7078] 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-04-25T04:24:11.8053960Z [6500/7078] 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-04-25T04:24:11.8190851Z [6501/7078] 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-04-25T04:24:11.8771626Z [6502/7078] 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-04-25T04:24:11.8887577Z [6503/7078] 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-04-25T04:24:11.9099709Z [6504/7078] 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-04-25T04:24:11.9114796Z [6505/7078] 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-04-25T04:24:11.9346425Z [6506/7078] 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-04-25T04:24:11.9512623Z [6507/7078] 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-04-25T04:24:11.9680106Z [6508/7078] 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-04-25T04:24:12.0128533Z [6509/7078] 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-04-25T04:24:12.0319704Z [6510/7078] 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-04-25T04:24:12.0332583Z [6511/7078] 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-04-25T04:24:12.0382974Z [6512/7078] 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-04-25T04:24:12.0592234Z [6513/7078] 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-04-25T04:24:12.0717631Z [6514/7078] 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-04-25T04:24:12.0916320Z [6515/7078] 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-04-25T04:24:12.1744665Z [6516/7078] 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-04-25T04:24:12.1817013Z [6517/7078] 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-04-25T04:24:12.2028451Z [6518/7078] 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-04-25T04:24:12.2044680Z [6519/7078] 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-04-25T04:24:12.2243955Z [6520/7078] 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-04-25T04:24:12.2742628Z [6521/7078] 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-04-25T04:24:12.2875662Z [6522/7078] 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-04-25T04:24:12.2999118Z [6523/7078] 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-04-25T04:24:12.3730555Z [6524/7078] 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-04-25T04:24:12.3919484Z [6525/7078] 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-04-25T04:24:12.4141955Z [6526/7078] 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-04-25T04:24:12.4978062Z [6527/7078] 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-04-25T04:24:12.5048017Z [6528/7078] 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-04-25T04:24:12.5101694Z [6529/7078] 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-04-25T04:24:12.5239732Z [6530/7078] 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-04-25T04:24:12.5441817Z [6531/7078] 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-04-25T04:24:12.5455246Z [6532/7078] 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-04-25T04:24:12.5703823Z [6533/7078] 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-04-25T04:24:12.6418595Z [6534/7078] 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-04-25T04:24:12.6430690Z [6535/7078] 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-04-25T04:24:12.6497280Z [6536/7078] 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-04-25T04:24:12.6553764Z [6537/7078] 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-04-25T04:24:12.6713682Z [6538/7078] 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-04-25T04:24:12.6795922Z [6539/7078] 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-04-25T04:24:12.7288576Z [6540/7078] 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-04-25T04:24:12.8061938Z [6541/7078] 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-04-25T04:24:12.8108592Z [6542/7078] 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-04-25T04:24:12.8160562Z [6543/7078] 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-04-25T04:24:12.8285173Z [6544/7078] 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-04-25T04:24:12.8296946Z [6545/7078] 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-04-25T04:24:12.8420038Z [6546/7078] 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-04-25T04:24:12.8499362Z [6547/7078] 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-04-25T04:24:12.9645165Z [6548/7078] 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-04-25T04:24:12.9746674Z [6549/7078] 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-04-25T04:24:13.0346962Z [6550/7078] 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-04-25T04:24:13.0548541Z [6551/7078] 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-04-25T04:24:13.0605317Z [6552/7078] 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-04-25T04:24:13.1318145Z [6553/7078] 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-04-25T04:24:13.1390480Z [6554/7078] 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-04-25T04:24:13.1436884Z [6555/7078] 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-04-25T04:24:13.1631991Z [6556/7078] 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-04-25T04:24:13.1776332Z [6557/7078] 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-04-25T04:24:13.1972721Z [6558/7078] 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-04-25T04:24:13.2753736Z [6559/7078] 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-04-25T04:24:13.2808038Z [6560/7078] 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-04-25T04:24:13.3030668Z [6561/7078] 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-04-25T04:24:13.3044917Z [6562/7078] 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-04-25T04:24:13.3106659Z [6563/7078] 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-04-25T04:24:13.3153162Z [6564/7078] 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-04-25T04:24:13.3271667Z [6565/7078] 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-04-25T04:24:13.4019503Z [6566/7078] 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-04-25T04:24:13.4136922Z [6567/7078] 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-04-25T04:24:13.4512144Z [6568/7078] 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-04-25T04:24:13.4575591Z [6569/7078] 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-04-25T04:24:13.4656634Z [6570/7078] 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-04-25T04:24:13.4868578Z [6571/7078] 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-04-25T04:24:13.4999444Z [6572/7078] 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-04-25T04:24:13.5287085Z [6573/7078] 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-04-25T04:24:13.5586264Z [6574/7078] 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-04-25T04:24:13.5995992Z [6575/7078] 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-04-25T04:24:13.6008471Z [6576/7078] 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-04-25T04:24:13.6132935Z [6577/7078] 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-04-25T04:24:13.6202157Z [6578/7078] 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-04-25T04:24:13.6582479Z [6579/7078] 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-04-25T04:24:13.6867009Z [6580/7078] 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-04-25T04:24:13.7172857Z [6581/7078] 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-04-25T04:24:13.7271349Z [6582/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:13.7319622Z [6583/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:13.7883889Z [6584/7078] 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-04-25T04:24:13.8697971Z [6585/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:13.8748328Z [6586/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:13.8760327Z [6587/7078] 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-04-25T04:24:13.8970742Z [6588/7078] 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-04-25T04:24:13.9114538Z [6589/7078] 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-04-25T04:24:13.9211982Z [6590/7078] 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-04-25T04:24:13.9628257Z [6591/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.0041135Z [6592/7078] 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-04-25T04:24:14.0094031Z [6593/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.0307100Z [6594/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.0374864Z [6595/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.0437485Z [6596/7078] 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-04-25T04:24:14.1068330Z [6597/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.1117776Z [6598/7078] 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-04-25T04:24:14.1333597Z [6599/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.1381829Z [6600/7078] 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-04-25T04:24:14.1630341Z [6601/7078] 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-04-25T04:24:14.1735888Z [6602/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.2047850Z [6603/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.2468656Z [6604/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.2528680Z [6605/7078] 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-04-25T04:24:14.2603101Z [6606/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.2657104Z [6607/7078] 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-04-25T04:24:14.3070677Z [6608/7078] 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-04-25T04:24:14.3259819Z [6609/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.3404695Z [6610/7078] 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-04-25T04:24:14.3703326Z [6611/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-04-25T04:24:14.3757180Z [6612/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.3965790Z [6613/7078] 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-04-25T04:24:14.4010428Z [6614/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-04-25T04:24:14.4358453Z [6615/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-04-25T04:24:14.4567359Z [6616/7078] 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-04-25T04:24:14.4580401Z [6617/7078] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-04-25T04:24:14.4961717Z [6618/7078] 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-04-25T04:24:14.5052003Z [6619/7078] 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-04-25T04:24:14.5180131Z [6620/7078] 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-04-25T04:24:14.5493541Z [6621/7078] 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-04-25T04:24:14.5671809Z [6622/7078] 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-04-25T04:24:14.5837612Z [6623/7078] 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-04-25T04:24:14.6283939Z [6624/7078] 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-04-25T04:24:14.6457748Z [6625/7078] 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-04-25T04:24:14.6690983Z [6626/7078] 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-04-25T04:24:14.6860447Z [6627/7078] 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-04-25T04:24:14.6901349Z [6628/7078] 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-04-25T04:24:14.7396308Z [6629/7078] 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-04-25T04:24:14.7510859Z [6630/7078] 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-04-25T04:24:14.8134969Z [6631/7078] 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-04-25T04:24:14.8147099Z [6632/7078] 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-04-25T04:24:14.8206170Z [6633/7078] 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-04-25T04:24:14.8313728Z [6634/7078] 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-04-25T04:24:14.8867126Z [6635/7078] 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-04-25T04:24:14.8930988Z [6636/7078] 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-04-25T04:24:14.8942800Z [6637/7078] 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-04-25T04:24:14.9524531Z [6638/7078] 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-04-25T04:24:14.9629706Z [6639/7078] 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-04-25T04:24:14.9642009Z [6640/7078] 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-04-25T04:24:14.9774025Z [6641/7078] 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-04-25T04:24:15.0223833Z [6642/7078] 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-04-25T04:24:15.0530647Z [6643/7078] 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-04-25T04:24:15.0600136Z [6644/7078] 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-04-25T04:24:15.0995037Z [6645/7078] 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-04-25T04:24:15.1044473Z [6646/7078] 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-04-25T04:24:15.1096767Z [6647/7078] 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-04-25T04:24:15.1201584Z [6648/7078] 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-04-25T04:24:15.1899280Z [6649/7078] 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-04-25T04:24:15.2344001Z [6650/7078] 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-04-25T04:24:15.2359546Z [6651/7078] 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-04-25T04:24:15.2480818Z [6652/7078] 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-04-25T04:24:15.2620564Z [6653/7078] 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-04-25T04:24:15.2633248Z [6654/7078] 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-04-25T04:24:15.2856734Z [6655/7078] 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-04-25T04:24:15.3648391Z [6656/7078] 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-04-25T04:24:15.3757558Z [6657/7078] 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-04-25T04:24:15.3804638Z [6658/7078] 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-04-25T04:24:15.4036538Z [6659/7078] 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-04-25T04:24:15.4086977Z [6660/7078] 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-04-25T04:24:15.4242796Z [6661/7078] Linking CXX static library lib\gmock.lib 2025-04-25T04:24:15.4291970Z [6662/7078] 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-04-25T04:24:15.4402341Z [6663/7078] 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-04-25T04:24:15.5257820Z [6664/7078] Linking CXX static library lib\gtest_main.lib 2025-04-25T04:24:15.6729357Z [6665/7078] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-04-25T04:24:15.7384553Z [6666/7078] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-04-25T04:24:15.7703727Z [6667/7078] Linking CXX static library lib\benchmark.lib 2025-04-25T04:24:15.8179570Z [6668/7078] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-04-25T04:24:15.8192655Z [6669/7078] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-04-25T04:24:16.0256852Z [6670/7078] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-04-25T04:24:16.0826527Z [6671/7078] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-04-25T04:24:16.1244644Z [6672/7078] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-04-25T04:24:16.1374450Z [6673/7078] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-04-25T04:24:16.1685044Z [6674/7078] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-04-25T04:24:16.2193166Z [6675/7078] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-04-25T04:24:16.2259398Z [6676/7078] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-04-25T04:24:16.3060690Z [6677/7078] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-04-25T04:24:16.4328542Z [6678/7078] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-04-25T04:24:16.4861748Z [6679/7078] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-04-25T04:24:16.5039738Z [6680/7078] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-04-25T04:24:16.5344359Z [6681/7078] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-04-25T04:24:16.6238156Z [6682/7078] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-04-25T04:24:16.6353238Z [6683/7078] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-04-25T04:24:16.6802789Z [6684/7078] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-04-25T04:24:16.7027445Z [6685/7078] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-04-25T04:24:16.8423959Z [6686/7078] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-04-25T04:24:16.8746608Z [6687/7078] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-04-25T04:24:16.9091940Z [6688/7078] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-04-25T04:24:16.9829446Z [6689/7078] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-04-25T04:24:17.0196243Z [6690/7078] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-04-25T04:24:17.0489721Z [6691/7078] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-04-25T04:24:17.0543501Z [6692/7078] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-04-25T04:24:17.1804011Z [6693/7078] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-04-25T04:24:17.1878713Z [6694/7078] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-04-25T04:24:17.2159716Z [6695/7078] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-04-25T04:24:17.3275617Z [6696/7078] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-04-25T04:24:17.4192013Z [6697/7078] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-04-25T04:24:17.4601687Z [6698/7078] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-04-25T04:24:17.5019729Z [6699/7078] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-04-25T04:24:17.5301224Z [6700/7078] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-04-25T04:24:17.5417832Z [6701/7078] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-04-25T04:24:17.6165132Z [6702/7078] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-04-25T04:24:17.6532068Z [6703/7078] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-04-25T04:24:17.7321382Z [6704/7078] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-04-25T04:24:17.9213396Z [6705/7078] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-04-25T04:24:17.9324395Z [6706/7078] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-04-25T04:24:17.9568913Z [6707/7078] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-04-25T04:24:18.0391389Z [6708/7078] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-04-25T04:24:18.0392380Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with 'nodiscard' attribute 2025-04-25T04:24:18.0393682Z 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-04-25T04:24:18.0394522Z with 2025-04-25T04:24:18.0394700Z [ 2025-04-25T04:24:18.0394862Z T=Type 2025-04-25T04:24:18.0395068Z ] 2025-04-25T04:24:18.0396083Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(499): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-04-25T04:24:18.0397176Z with 2025-04-25T04:24:18.0397360Z [ 2025-04-25T04:24:18.0397526Z T=Type 2025-04-25T04:24:18.0397719Z ] 2025-04-25T04:24:18.0398667Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(713): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-04-25T04:24:18.0401624Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): 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-04-25T04:24:18.0406003Z 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-04-25T04:24:18.0452096Z 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-04-25T04:24:18.0455620Z [6709/7078] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-04-25T04:24:18.0666846Z [6710/7078] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-04-25T04:24:18.1482005Z [6711/7078] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-04-25T04:24:18.2425582Z [6712/7078] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-04-25T04:24:18.3011405Z [6713/7078] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-04-25T04:24:18.3031934Z [6714/7078] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-04-25T04:24:18.3941224Z [6715/7078] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-04-25T04:24:18.3957153Z [6716/7078] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-04-25T04:24:18.4729656Z [6717/7078] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-04-25T04:24:18.4912922Z [6718/7078] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-04-25T04:24:18.5029857Z [6719/7078] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-04-25T04:24:18.8388933Z [6720/7078] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-04-25T04:24:19.0015529Z [6721/7078] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:24:19.0017559Z 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-04-25T04:24:19.0019825Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(120): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:24:19.0887857Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(125): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:24:19.0889279Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(127): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-04-25T04:24:19.0890357Z [6722/7078] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:24:19.1137468Z [6723/7078] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:24:21.1921889Z [6724/7078] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-04-25T04:24:21.2502840Z [6725/7078] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-04-25T04:24:21.3399387Z [6726/7078] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-04-25T04:24:21.6144241Z [6727/7078] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-04-25T04:24:21.7810029Z [6728/7078] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-04-25T04:24:21.8656838Z [6729/7078] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-04-25T04:24:21.9406347Z [6730/7078] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-04-25T04:24:23.9565109Z [6731/7078] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-04-25T04:24:24.0244157Z [6732/7078] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-04-25T04:24:24.1061970Z [6733/7078] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-04-25T04:24:24.6323091Z [6734/7078] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-04-25T04:24:24.6781421Z [6735/7078] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-04-25T04:24:24.7213156Z [6736/7078] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-04-25T04:24:24.7638012Z [6737/7078] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-04-25T04:24:26.8353533Z [6738/7078] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-04-25T04:24:27.0010255Z [6739/7078] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-04-25T04:24:27.0557469Z [6740/7078] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-04-25T04:24:27.1709066Z [6741/7078] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-04-25T04:24:27.3671322Z [6742/7078] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-04-25T04:24:27.4580881Z [6743/7078] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-04-25T04:24:27.5361128Z [6744/7078] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-04-25T04:24:27.7918181Z [6745/7078] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-04-25T04:24:29.8503370Z [6746/7078] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-04-25T04:24:29.9208877Z [6747/7078] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-04-25T04:24:30.1079182Z [6748/7078] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-04-25T04:24:30.2015910Z [6749/7078] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-04-25T04:24:30.2620288Z [6750/7078] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-04-25T04:24:30.3462618Z [6751/7078] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-04-25T04:24:30.5735874Z [6752/7078] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-04-25T04:24:31.3817577Z [6753/7078] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-04-25T04:24:31.8166331Z [6754/7078] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-04-25T04:24:32.7475264Z [6755/7078] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-04-25T04:24:32.8144898Z [6756/7078] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-04-25T04:24:33.0207175Z [6757/7078] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-04-25T04:24:33.0914016Z [6758/7078] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-04-25T04:24:33.2250950Z [6759/7078] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-04-25T04:24:34.4147218Z [6760/7078] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-04-25T04:24:34.4980482Z [6761/7078] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-04-25T04:24:35.3259534Z [6762/7078] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-04-25T04:24:35.5844461Z [6763/7078] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-04-25T04:24:35.6119018Z [6764/7078] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-04-25T04:24:35.7879295Z [6765/7078] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-04-25T04:24:35.8364098Z [6766/7078] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-04-25T04:24:36.0699597Z [6767/7078] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-04-25T04:24:36.3037784Z [6768/7078] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-04-25T04:24:36.4659185Z [6769/7078] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-04-25T04:24:36.5125913Z [6770/7078] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-04-25T04:24:36.6559424Z [6771/7078] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-04-25T04:24:36.8299200Z [6772/7078] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-04-25T04:24:36.8885098Z [6773/7078] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-04-25T04:24:37.0140797Z [6774/7078] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-04-25T04:24:37.0171930Z [6775/7078] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-04-25T04:24:37.1433049Z [6776/7078] 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-04-25T04:24:37.1519646Z [6777/7078] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-04-25T04:24:37.1714413Z [6778/7078] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-04-25T04:24:37.3408714Z [6779/7078] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-04-25T04:24:37.3947243Z [6780/7078] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-04-25T04:24:37.4655734Z [6781/7078] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_main.cpp.obj 2025-04-25T04:24:37.7452643Z [6782/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-04-25T04:24:38.0231691Z [6783/7078] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-04-25T04:24:38.0873724Z [6784/7078] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-04-25T04:24:38.3735817Z [6785/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-04-25T04:24:39.2527373Z [6786/7078] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-04-25T04:24:39.3699698Z [6787/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-04-25T04:24:39.8035738Z [6788/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-04-25T04:24:39.8722856Z [6789/7078] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_operator_registration.cpp.obj 2025-04-25T04:24:39.9839881Z [6790/7078] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-04-25T04:24:40.1797926Z [6791/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-04-25T04:24:40.2840372Z [6792/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-04-25T04:24:40.8721775Z [6793/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-04-25T04:24:40.9672892Z [6794/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-04-25T04:24:41.2001413Z [6795/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-04-25T04:24:41.3197965Z [6796/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-04-25T04:24:41.8782542Z [6797/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-04-25T04:24:42.1021734Z [6798/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-04-25T04:24:42.2838188Z [6799/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-04-25T04:24:42.8295573Z [6800/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-04-25T04:24:42.8896886Z [6801/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-04-25T04:24:43.0335799Z [6802/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-04-25T04:24:43.3434781Z [6803/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-04-25T04:24:43.7284175Z [6804/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-04-25T04:24:44.9716588Z [6805/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-04-25T04:24:45.0030712Z [6806/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-04-25T04:24:45.2972440Z [6807/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-04-25T04:24:45.8825329Z [6808/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-04-25T04:24:46.0174348Z [6809/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-04-25T04:24:46.1399925Z [6810/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-04-25T04:24:46.3923796Z [6811/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-04-25T04:24:46.7616935Z [6812/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-04-25T04:24:46.8271980Z [6813/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-04-25T04:24:46.9835082Z [6814/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-04-25T04:24:47.0765871Z [6815/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-04-25T04:24:47.8656328Z [6816/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-04-25T04:24:48.1099547Z [6817/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-04-25T04:24:48.3287716Z [6818/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-04-25T04:24:48.7795624Z [6819/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-04-25T04:24:49.1772306Z [6820/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-04-25T04:24:49.2705733Z [6821/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-04-25T04:24:49.7023395Z [6822/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-04-25T04:24:49.9098974Z [6823/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-04-25T04:24:50.0053595Z [6824/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-04-25T04:24:50.2053771Z [6825/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-04-25T04:24:50.5912163Z [6826/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-04-25T04:24:50.9671235Z [6827/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-04-25T04:24:51.0620824Z [6828/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-04-25T04:24:51.3194538Z [6829/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-04-25T04:24:51.3403233Z [6830/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-04-25T04:24:51.5705620Z [6831/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-04-25T04:24:51.9194185Z [6832/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-04-25T04:24:51.9283285Z [6833/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-04-25T04:24:52.2303189Z [6834/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-04-25T04:24:52.2395263Z [6835/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-04-25T04:24:52.3528835Z [6836/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-04-25T04:24:52.4552184Z [6837/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-04-25T04:24:52.5240311Z [6838/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-04-25T04:24:52.6059835Z [6839/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-04-25T04:24:53.9550475Z [6840/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-04-25T04:24:54.2555722Z [6841/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-04-25T04:24:54.8305536Z [6842/7078] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-04-25T04:24:55.0239065Z [6843/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-04-25T04:24:55.0617419Z [6844/7078] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-04-25T04:24:55.2692715Z [6845/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-04-25T04:24:55.3345780Z [6846/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-04-25T04:24:56.1632438Z [6847/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-04-25T04:24:56.9590520Z [6848/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-04-25T04:24:56.9919129Z [6849/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-04-25T04:24:57.0345719Z [6850/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-04-25T04:24:57.8403133Z [6851/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-04-25T04:24:57.8887095Z [6852/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-04-25T04:24:57.9449266Z [6853/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-04-25T04:24:58.3099281Z [6854/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-04-25T04:24:59.8095034Z [6855/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-04-25T04:24:59.9509515Z [6856/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-04-25T04:25:00.0296201Z [6857/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-04-25T04:25:00.6898088Z [6858/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-04-25T04:25:00.8912238Z [6859/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-04-25T04:25:00.9296210Z [6860/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-04-25T04:25:01.1190438Z [6861/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-04-25T04:25:01.9825458Z [6862/7078] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-04-25T04:25:02.4667116Z [6863/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-04-25T04:25:02.8160524Z [6864/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-04-25T04:25:02.8652388Z [6865/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-04-25T04:25:02.9049173Z [6866/7078] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-04-25T04:25:03.1533056Z [6867/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-04-25T04:25:03.2134970Z [6868/7078] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-04-25T04:25:03.2805112Z [6869/7078] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-04-25T04:25:03.3668373Z [6870/7078] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-04-25T04:25:03.6805466Z [6871/7078] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-04-25T04:25:05.7890657Z [6872/7078] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-04-25T04:25:06.0253513Z [6873/7078] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-04-25T04:25:06.1705959Z [6874/7078] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-04-25T04:25:06.3235089Z [6875/7078] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-04-25T04:25:06.3553683Z [6876/7078] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-04-25T04:25:06.6001016Z [6877/7078] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-04-25T04:25:06.7193045Z [6878/7078] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-04-25T04:25:06.8971658Z [6879/7078] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-04-25T04:25:09.0113793Z [6880/7078] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-04-25T04:25:09.1403744Z [6881/7078] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-04-25T04:25:09.2138103Z [6882/7078] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-04-25T04:25:09.2676101Z [6883/7078] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-04-25T04:25:09.3284537Z [6884/7078] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-04-25T04:25:09.8659041Z [6885/7078] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-04-25T04:25:09.9389775Z [6886/7078] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-04-25T04:25:11.9979951Z [6887/7078] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-04-25T04:25:12.0791599Z [6888/7078] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-04-25T04:25:12.1538659Z [6889/7078] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-04-25T04:25:12.2509007Z [6890/7078] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-04-25T04:25:12.4989197Z [6891/7078] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-04-25T04:25:12.7800692Z [6892/7078] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-04-25T04:25:13.0237899Z [6893/7078] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-04-25T04:25:14.9697032Z [6894/7078] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-04-25T04:25:15.0382727Z [6895/7078] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-04-25T04:25:15.1732463Z [6896/7078] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-04-25T04:25:15.2215607Z [6897/7078] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-04-25T04:25:15.6009093Z [6898/7078] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-04-25T04:25:15.7769872Z [6899/7078] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-04-25T04:25:16.0428239Z [6900/7078] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-04-25T04:25:17.8943391Z [6901/7078] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-04-25T04:25:17.9551282Z [6902/7078] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-04-25T04:25:18.0683605Z [6903/7078] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-04-25T04:25:18.1694928Z [6904/7078] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-04-25T04:25:18.2642498Z [6905/7078] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-04-25T04:25:18.8794768Z [6906/7078] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-04-25T04:25:19.0411014Z [6907/7078] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-04-25T04:25:20.8162905Z [6908/7078] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-04-25T04:25:20.8292076Z [6909/7078] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-04-25T04:25:20.9553488Z [6910/7078] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-04-25T04:25:21.0696157Z [6911/7078] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-04-25T04:25:21.1313771Z [6912/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-04-25T04:25:21.1566600Z [6913/7078] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-04-25T04:25:21.7757971Z [6914/7078] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-04-25T04:25:21.9882658Z [6915/7078] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-04-25T04:25:22.0050756Z [6916/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-04-25T04:25:22.0401570Z [6917/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-04-25T04:25:22.1996406Z [6918/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-04-25T04:25:22.4047878Z [6919/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-04-25T04:25:22.5387021Z [6920/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-04-25T04:25:22.6351365Z [6921/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-04-25T04:25:22.8577356Z [6922/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-04-25T04:25:22.9277618Z [6923/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-04-25T04:25:23.6438678Z [6924/7078] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-04-25T04:25:23.9684403Z [6925/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-04-25T04:25:24.1869919Z [6926/7078] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-04-25T04:25:25.3899103Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:25:25.3900074Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:25:25.3900819Z [6927/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-04-25T04:25:25.6328483Z [6928/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-04-25T04:25:25.7214102Z [6929/7078] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-04-25T04:25:25.8058588Z [6930/7078] Linking C static library lib\cpuinfo_internals.lib 2025-04-25T04:25:25.9216558Z [6931/7078] Linking CXX static library lib\gmock_main.lib 2025-04-25T04:25:26.0237923Z [6932/7078] Linking CXX static library lib\benchmark_main.lib 2025-04-25T04:25:26.0637262Z [6933/7078] Linking CXX static library lib\fmt.lib 2025-04-25T04:25:26.1978168Z [6934/7078] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-04-25T04:25:26.2811453Z [6935/7078] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-04-25T04:25:26.4548632Z [6936/7078] Linking CXX static library lib\libprotobuf-lite.lib 2025-04-25T04:25:26.7000540Z [6937/7078] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-04-25T04:25:26.7014216Z [6938/7078] Linking CXX executable bin\c10_Device_test.exe 2025-04-25T04:25:26.7026548Z [6939/7078] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-04-25T04:25:26.7091231Z [6940/7078] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-04-25T04:25:26.8697894Z [6941/7078] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-04-25T04:25:26.9266565Z [6942/7078] Linking CXX executable bin\c10_Scalar_test.exe 2025-04-25T04:25:26.9874485Z [6943/7078] Linking CXX executable bin\c10_SymInt_test.exe 2025-04-25T04:25:27.0013848Z [6944/7078] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-04-25T04:25:27.0338226Z [6945/7078] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-04-25T04:25:27.0472439Z [6946/7078] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-04-25T04:25:27.2270082Z [6947/7078] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-04-25T04:25:27.3203372Z [6948/7078] Linking CXX executable bin\c10_cow_test.exe 2025-04-25T04:25:27.3214919Z [6949/7078] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-04-25T04:25:27.3358373Z [6950/7078] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-04-25T04:25:27.3370481Z [6951/7078] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-04-25T04:25:27.3379319Z [6952/7078] Linking CXX executable bin\c10_Bitset_test.exe 2025-04-25T04:25:27.4367146Z [6953/7078] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-04-25T04:25:27.5642369Z [6954/7078] Linking CXX executable bin\c10_Synchronized_test.exe 2025-04-25T04:25:27.5716564Z [6955/7078] Linking CXX executable bin\c10_Half_test.exe 2025-04-25T04:25:27.5740252Z [6956/7078] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-04-25T04:25:27.5749449Z [6957/7078] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-04-25T04:25:27.5869108Z [6958/7078] Linking CXX executable bin\c10_LeftRight_test.exe 2025-04-25T04:25:27.6291014Z [6959/7078] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-04-25T04:25:27.8021420Z [6960/7078] Linking CXX executable bin\c10_TypeList_test.exe 2025-04-25T04:25:27.8037198Z [6961/7078] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-04-25T04:25:27.8133123Z [6962/7078] Linking CXX executable bin\c10_accumulate_test.exe 2025-04-25T04:25:27.8200299Z [6963/7078] Linking CXX executable bin\c10_bfloat16_test.exe 2025-04-25T04:25:27.8285644Z [6964/7078] Linking CXX executable bin\c10_bit_cast_test.exe 2025-04-25T04:25:27.8456802Z [6965/7078] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-04-25T04:25:28.0111543Z [6966/7078] Linking CXX executable bin\c10_complex_test.exe 2025-04-25T04:25:28.0190442Z [6967/7078] Linking CXX executable bin\c10_complex_math_test.exe 2025-04-25T04:25:28.0248638Z [6968/7078] Linking CXX executable bin\c10_error_test.exe 2025-04-25T04:25:28.0265396Z [6969/7078] Linking CXX executable bin\c10_exception_test.exe 2025-04-25T04:25:28.0391173Z [6970/7078] Linking CXX executable bin\c10_generic_math_test.exe 2025-04-25T04:25:28.2668251Z [6971/7078] Linking CXX executable bin\c10_flags_test.exe 2025-04-25T04:25:28.2780711Z [6972/7078] Linking CXX executable bin\c10_lazy_test.exe 2025-04-25T04:25:28.2793926Z [6973/7078] Linking CXX executable bin\c10_irange_test.exe 2025-04-25T04:25:28.2995219Z [6974/7078] Linking CXX executable bin\c10_logging_test.exe 2025-04-25T04:25:28.3072251Z [6975/7078] Linking CXX executable bin\c10_optional_test.exe 2025-04-25T04:25:28.3303043Z [6976/7078] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-04-25T04:25:28.4625019Z [6977/7078] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-04-25T04:25:28.4773705Z [6978/7078] Linking CXX executable bin\c10_ssize_test.exe 2025-04-25T04:25:28.4868728Z [6979/7078] Linking CXX executable bin\c10_string_util_test.exe 2025-04-25T04:25:28.5136525Z [6980/7078] Linking CXX executable bin\c10_string_view_test.exe 2025-04-25T04:25:28.5293344Z [6981/7078] Linking CXX executable bin\c10_small_vector_test.exe 2025-04-25T04:25:28.7571204Z [6982/7078] Linking CXX executable bin\c10_registry_test.exe 2025-04-25T04:25:28.8230110Z [6983/7078] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-04-25T04:25:28.8511020Z [6984/7078] Linking CXX executable bin\c10_tempfile_test.exe 2025-04-25T04:25:28.8672073Z [6985/7078] Linking CXX executable bin\c10_typeid_test.exe 2025-04-25T04:25:28.8855357Z [6986/7078] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-04-25T04:25:28.9129597Z [6987/7078] Linking C shared library bin\torch_global_deps.dll 2025-04-25T04:25:28.9204536Z [6988/7078] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-04-25T04:25:28.9596755Z [6989/7078] Linking C executable sleef\bin\addSuffix.exe 2025-04-25T04:25:29.0504358Z [6990/7078] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-04-25T04:25:31.3834511Z [6991/7078] Linking C static library lib\microkernels-all.lib 2025-04-25T04:32:59.7168124Z [6992/7078] Linking CXX shared library bin\torch_cpu.dll 2025-04-25T04:32:59.9882387Z [6993/7078] Linking CXX shared library bin\torch.dll 2025-04-25T04:33:00.0306671Z [6994/7078] Linking CXX static library lib\unbox_lib.lib 2025-04-25T04:33:00.2133256Z [6995/7078] Linking CXX shared library bin\shm.dll 2025-04-25T04:33:00.4238987Z [6996/7078] Linking CXX shared library bin\jitbackend_test.dll 2025-04-25T04:33:00.7217526Z [6997/7078] Linking CXX executable bin\FileStoreTest.exe 2025-04-25T04:33:00.7319055Z [6998/7078] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-04-25T04:33:00.7330620Z [6999/7078] Linking CXX shared library bin\backend_with_compiler.dll 2025-04-25T04:33:00.7405883Z [7000/7078] Linking CXX executable bin\BackoffTest.exe 2025-04-25T04:33:00.7544088Z [7001/7078] Linking CXX executable bin\TCPStoreTest.exe 2025-04-25T04:33:00.9992456Z [7002/7078] Linking CXX executable bin\Dimname_test.exe 2025-04-25T04:33:01.2274825Z [7003/7078] Linking CXX executable bin\NamedTensor_test.exe 2025-04-25T04:33:01.4251025Z [7004/7078] Linking CXX executable bin\Dict_test.exe 2025-04-25T04:33:01.4445380Z [7005/7078] Linking CXX executable bin\MaybeOwned_test.exe 2025-04-25T04:33:01.4763198Z [7006/7078] Linking CXX executable bin\apply_utils_test.exe 2025-04-25T04:33:01.7636074Z [7007/7078] Linking CXX executable bin\atest.exe 2025-04-25T04:33:01.7838818Z [7008/7078] Linking CXX executable bin\broadcast_test.exe 2025-04-25T04:33:01.8526832Z [7009/7078] Linking CXX executable bin\basic.exe 2025-04-25T04:33:01.9158609Z [7010/7078] Linking CXX executable bin\cpu_allocator_test.exe 2025-04-25T04:33:02.3052315Z [7011/7078] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-04-25T04:33:02.4034498Z [7012/7078] Linking CXX executable bin\cpu_generator_test.exe 2025-04-25T04:33:02.5586690Z [7013/7078] Linking CXX executable bin\dlconvertor_test.exe 2025-04-25T04:33:02.7902034Z [7014/7078] Linking CXX executable bin\half_test.exe 2025-04-25T04:33:02.7940290Z [7015/7078] Linking CXX executable bin\extension_backend_test.exe 2025-04-25T04:33:03.0155975Z [7016/7078] Linking CXX executable bin\cpu_rng_test.exe 2025-04-25T04:33:03.1380755Z [7017/7078] Linking CXX executable bin\ivalue_test.exe 2025-04-25T04:33:03.1943312Z [7018/7078] Linking CXX executable bin\math_kernel_test.exe 2025-04-25T04:33:03.1995177Z [7019/7078] Linking CXX executable bin\lazy_tensor_test.exe 2025-04-25T04:33:03.4690152Z [7020/7078] Linking CXX executable bin\memory_format_test.exe 2025-04-25T04:33:03.5621353Z [7021/7078] Linking CXX executable bin\memory_overlapping_test.exe 2025-04-25T04:33:03.7646004Z [7022/7078] Linking CXX executable bin\operator_name_test.exe 2025-04-25T04:33:03.7708067Z [7023/7078] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-04-25T04:33:03.7932243Z [7024/7078] Linking CXX executable bin\native_test.exe 2025-04-25T04:33:04.0356178Z [7025/7078] Linking CXX executable bin\operators_test.exe 2025-04-25T04:33:04.1474089Z [7026/7078] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-04-25T04:33:04.2601987Z [7027/7078] Linking CXX executable bin\quantized_test.exe 2025-04-25T04:33:04.3578722Z [7028/7078] Linking CXX executable bin\pow_test.exe 2025-04-25T04:33:04.4864794Z [7029/7078] Linking CXX executable bin\reduce_ops_test.exe 2025-04-25T04:33:04.5031749Z [7030/7078] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-04-25T04:33:04.7125586Z [7031/7078] Linking CXX executable bin\scalar_tensor_test.exe 2025-04-25T04:33:04.7911846Z [7032/7078] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-04-25T04:33:04.8601813Z [7033/7078] Linking CXX executable bin\scalar_test.exe 2025-04-25T04:33:04.8611971Z [7034/7078] Linking CXX executable bin\StorageUtils_test.exe 2025-04-25T04:33:04.9584636Z [7035/7078] Linking CXX executable bin\stride_properties_test.exe 2025-04-25T04:33:05.3216895Z [7036/7078] Linking CXX executable bin\type_ptr_test.exe 2025-04-25T04:33:05.3230110Z [7037/7078] Linking CXX executable bin\thread_init_test.exe 2025-04-25T04:33:05.3521264Z [7038/7078] Linking CXX executable bin\test_parallel.exe 2025-04-25T04:33:05.4530328Z [7039/7078] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-04-25T04:33:05.5486233Z [7040/7078] Linking CXX executable bin\type_test.exe 2025-04-25T04:33:05.6222284Z [7041/7078] Linking CXX executable bin\tensor_iterator_test.exe 2025-04-25T04:33:05.6865038Z [7042/7078] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-04-25T04:33:05.7398140Z [7043/7078] Linking CXX executable bin\verify_api_visibility.exe 2025-04-25T04:33:05.7453993Z [7044/7078] Linking CXX executable bin\undefined_tensor_test.exe 2025-04-25T04:33:06.0163250Z [7045/7078] Linking CXX executable bin\weakref_test.exe 2025-04-25T04:33:06.0770050Z [7046/7078] Linking CXX executable bin\wrapdim_test.exe 2025-04-25T04:33:06.0801324Z [7047/7078] Linking CXX executable bin\xla_tensor_test.exe 2025-04-25T04:33:06.1638481Z [7048/7078] Linking CXX executable bin\legacy_vmap_test.exe 2025-04-25T04:33:06.1690733Z [7049/7078] Linking CXX executable bin\IListRef_test.exe 2025-04-25T04:33:06.2893887Z [7050/7078] Linking CXX executable bin\KernelFunction_test.exe 2025-04-25T04:33:06.5163452Z [7051/7078] Linking CXX executable bin\List_test.exe 2025-04-25T04:33:06.7534051Z [7052/7078] Linking CXX executable bin\kernel_stackbased_test.exe 2025-04-25T04:33:06.7820351Z [7053/7078] Linking CXX executable bin\CppSignature_test.exe 2025-04-25T04:33:06.9818067Z [7054/7078] Linking CXX executable bin\op_allowlist_test.exe 2025-04-25T04:33:07.0434105Z [7055/7078] Linking CXX executable bin\kernel_function_test.exe 2025-04-25T04:33:07.1371871Z [7056/7078] Linking CXX executable bin\backend_fallback_test.exe 2025-04-25T04:33:07.3740889Z [7057/7078] Linking CXX executable bin\kernel_lambda_test.exe 2025-04-25T04:33:07.3829498Z [7058/7078] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-04-25T04:33:07.4215582Z [7059/7078] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-04-25T04:33:07.5009829Z [7060/7078] Linking CXX executable bin\test_edge_op_registration.exe 2025-04-25T04:33:07.5584072Z [7061/7078] Linking CXX executable bin\inline_container_test.exe 2025-04-25T04:33:07.7684008Z [7062/7078] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-04-25T04:33:07.9418245Z [7063/7078] Linking CXX shared library bin\aoti_custom_ops.dll 2025-04-25T04:33:08.0030386Z [7064/7078] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-04-25T04:33:08.2910015Z [7065/7078] Linking CXX executable bin\parallel_benchmark.exe 2025-04-25T04:33:08.7886648Z [7066/7078] Linking CXX shared library bin\torchbind_test.dll 2025-04-25T04:33:10.9892268Z [7067/7078] Linking CXX executable bin\test_lazy.exe 2025-04-25T04:33:11.0464451Z [7068/7078] Linking CXX executable bin\op_registration_test.exe 2025-04-25T04:33:13.1267708Z [7069/7078] Linking CXX executable bin\test_tensorexpr.exe 2025-04-25T04:33:15.4495813Z [7070/7078] Linking CXX executable bin\test_jit.exe 2025-04-25T04:33:16.8696491Z [7071/7078] Linking CXX executable bin\test_api.exe 2025-04-25T04:33:24.6065645Z [7072/7078] Linking CXX shared library bin\torch_python.dll 2025-04-25T04:33:24.9012280Z [7073/7078] Linking CXX shared module functorch\functorch.pyd 2025-04-25T04:33:24.9074599Z [7074/7078] Linking CXX shared library bin\nnapi_backend.dll 2025-04-25T04:33:24.9080658Z [7074/7078] Install the project... 2025-04-25T04:33:25.0925544Z -- Install configuration: "Release" 2025-04-25T04:34:43.3819406Z -- Building version 2.8.0a0+gitb68c0ef 2025-04-25T04:34:43.3819854Z -- Checkout nccl release tag: v2.26.2-1 2025-04-25T04:34:43.3822154Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cpu-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -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 -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DTORCH_BUILD_VERSION=2.8.0a0+gitb68c0ef -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=0 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:34:43.3825573Z cmake --build . --target install --config Release -j 8 2025-04-25T04:34:43.3825953Z running bdist_wheel 2025-04-25T04:34:52.1097613Z running build 2025-04-25T04:34:52.1097872Z running build_py 2025-04-25T04:34:52.1201089Z creating build\lib.win-amd64-cpython-39\functorch 2025-04-25T04:34:52.1205569Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-04-25T04:34:52.2499243Z creating build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.2502164Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.3222643Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.4092468Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.4912048Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.7215913Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.7251344Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.7261742Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.7272285Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.7955088Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:52.9541910Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.0572841Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.0592971Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.0598992Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.1443371Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.1453251Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.1462977Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.1474397Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.2305766Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.2311397Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.3029961Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4025459Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4036725Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4058016Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4068328Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4732293Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4742950Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.4772128Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6042669Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6071922Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6889048Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6899235Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6904988Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.6937017Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7732058Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7749484Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7754458Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7910607Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7929538Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7935157Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7940666Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7951717Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7967726Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7973392Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.7983266Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:34:53.8029158Z creating build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.8032354Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.8533021Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.8543333Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9786475Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9801694Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9821902Z copying torchgen\gen_executorch.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9843020Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9863352Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9878437Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9887914Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9897752Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9906946Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:53.9951932Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:54.0782271Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:54.0798792Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:54.0809791Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:34:54.0816394Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-04-25T04:34:54.0819337Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-04-25T04:34:54.0831869Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0834845Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0844828Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0854618Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0866666Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0880128Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0890211Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0922360Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0927921Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0937078Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:34:54.0948176Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:34:54.0951263Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:34:54.0962761Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:34:54.0972823Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:34:54.0980329Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:34:54.0987485Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:34:54.0992981Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:34:54.0998304Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:34:54.1004811Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-04-25T04:34:54.1007962Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-04-25T04:34:54.1013868Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-04-25T04:34:54.1017004Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-04-25T04:34:54.1024320Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-04-25T04:34:54.1027597Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-04-25T04:34:54.1034112Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-04-25T04:34:54.1042488Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-04-25T04:34:54.1049302Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-04-25T04:34:54.1052155Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-04-25T04:34:54.1059151Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:34:54.1062155Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:34:54.1071545Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:34:54.1082804Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:34:54.1086143Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:34:54.1101546Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:34:54.1116897Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:34:54.1123205Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-04-25T04:34:54.1125997Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-04-25T04:34:54.1134308Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1137286Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1876342Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1888072Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1920186Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1949650Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1986858Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.1998362Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2014066Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2036765Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2050793Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2069978Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2076818Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:34:54.2628648Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-04-25T04:34:54.2631323Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-04-25T04:34:54.2643312Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:34:54.2646111Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:34:54.2656028Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:34:54.2665924Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:34:54.2681584Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:34:54.2684638Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:34:54.2695811Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:34:54.2701725Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-04-25T04:34:54.2704487Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-04-25T04:34:54.2717809Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2720644Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2726473Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2730592Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2742249Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2766311Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2775903Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2800695Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2810208Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2819241Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2828447Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2838732Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2844083Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2854096Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2869631Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2883437Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2902157Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2917125Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2926256Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:34:54.2958353Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.2961349Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.3761187Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.3771297Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.3786989Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.3800180Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.4420342Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.4494582Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.5246603Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.5252302Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.5895139Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.5906258Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.5923180Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6692716Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6703725Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6713428Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6733399Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6744742Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.6754844Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.7523244Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:34:54.7541871Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7544978Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7555682Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7566340Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7576532Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7592481Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7601565Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7611597Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7626428Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7636791Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7647249Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7657346Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7668096Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7678256Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7688150Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7698094Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7707748Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7717583Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7729355Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7740634Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7752068Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7761579Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7772267Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7786179Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7802104Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7811589Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7866813Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7878435Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7888285Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7898330Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7909229Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7919634Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7930228Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7944622Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7955404Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7965916Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7976351Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7986106Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.7996400Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8006428Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8016422Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8026453Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8036689Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8723256Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8733034Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8743159Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8757026Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8766761Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8777527Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:34:54.8791449Z creating build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8795219Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8800918Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8810561Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8820934Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8849463Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8873710Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8889329Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8923201Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8937913Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.8955314Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9022050Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9022673Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9023243Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9039865Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9051859Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9066266Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9071614Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:34:54.9088496Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-04-25T04:34:54.9091358Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-04-25T04:34:54.9115574Z creating build\lib.win-amd64-cpython-39\torch\func 2025-04-25T04:34:54.9118413Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-04-25T04:34:54.9124808Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-04-25T04:34:54.9127892Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-04-25T04:34:54.9142118Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:54.9145015Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:54.9155043Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:54.9160284Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0008577Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0028194Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0041510Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0067473Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0087301Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0102235Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0117490Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0127308Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0137928Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0148134Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0157697Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0175673Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0186387Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0197704Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0223094Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0232127Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:34:55.0247350Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0250420Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0266448Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0288974Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0298077Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0312682Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0322774Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0332900Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0342148Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0351628Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0362101Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0372782Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0382808Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0394032Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0399709Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0410104Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0420617Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0432763Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0438402Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0448740Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0458990Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0480676Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0508594Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0518861Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0544708Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0554470Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0580031Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:34:55.0591253Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-04-25T04:34:55.0594071Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-04-25T04:34:55.0644742Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:34:55.0652266Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:34:55.0674868Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:34:55.0710576Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:34:55.0721152Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-04-25T04:34:55.0724024Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-04-25T04:34:55.0734668Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:34:55.0737504Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:34:55.0746795Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:34:55.0756409Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:34:55.0766925Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:34:55.0769839Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:34:55.0778665Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:34:55.0788330Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:34:55.0800283Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0803286Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0813634Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0823719Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0839013Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0848992Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0863365Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:34:55.0874103Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-04-25T04:34:55.0877015Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-04-25T04:34:55.0894150Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.0897128Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.1813361Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.1824033Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.1919103Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.2547830Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.2575489Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.3543145Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.3553939Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:34:55.3571568Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.3574879Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4746214Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4772591Z copying torch\onnx\symbolic_caffe2.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4783017Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4822555Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4846103Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4874699Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4885634Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4924301Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.4935256Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5447339Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5457753Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5468380Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5479226Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5485294Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5494899Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5505098Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5515930Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5592336Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5624356Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5657412Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5669041Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5678498Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5688322Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5698118Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5707595Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5719029Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:34:55.5742353Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5745386Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5759818Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5777334Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5796317Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5809846Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5820154Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5833982Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5852031Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5888498Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5903527Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5928428Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5943093Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5957962Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5972602Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.5986774Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.6007297Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.6022171Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.6038494Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.6048581Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:34:55.6061572Z creating build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6064685Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6074352Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6084043Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6097826Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6108506Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6131902Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6148590Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6158113Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6167638Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6176492Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6185769Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6195028Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6204738Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6213801Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6223551Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:34:55.6230856Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6234192Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6243454Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6262960Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6268464Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6291790Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6310457Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6320532Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:34:55.6333460Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6336556Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6346496Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6352108Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6366302Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6375854Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6385718Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6395177Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6404551Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6414125Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6423482Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6428882Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6434198Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6454817Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6464427Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6474258Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6484336Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:34:55.6497666Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-04-25T04:34:55.6500501Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-04-25T04:34:55.6507769Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6510752Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6527575Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6538722Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6552244Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6586940Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6741326Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:34:55.6758824Z creating build\lib.win-amd64-cpython-39\torch\special 2025-04-25T04:34:55.6761707Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-04-25T04:34:55.6782928Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:34:55.6785914Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:34:55.6814222Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:34:55.6825297Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:34:55.6834674Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:34:55.6848134Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.6851807Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.7412679Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.7427408Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.7459894Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.7481269Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.7490605Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.8714135Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.9403689Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.9414658Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.9424763Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:55.9441201Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0238984Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0250456Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0260675Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0266443Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0279815Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0290327Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0300604Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0311605Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0321847Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0331550Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0353924Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0364902Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0375806Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0385781Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0397047Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0417177Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0426725Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0436569Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0446114Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0456027Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0470513Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0480146Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0490303Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0500370Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0505999Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0515759Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0531594Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0560796Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0569985Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0575281Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0585696Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0599081Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0605485Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0617148Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:34:56.0630226Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0633101Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0643435Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0652899Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0662185Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0671239Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0680522Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:34:56.0699764Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-04-25T04:34:56.0702616Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-04-25T04:34:56.0713896Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:34:56.0717072Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:34:56.0727787Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:34:56.0744867Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:34:56.0751570Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:34:56.0754680Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:34:56.0823986Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:34:56.0835053Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:34:56.0850145Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:34:56.0866621Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:34:56.0869627Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:34:56.0879564Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:34:56.0892103Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0895115Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0905675Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0929390Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0943536Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0953795Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0969544Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.0980691Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1007375Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1018561Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1925705Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1950424Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1960426Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.1974965Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2439225Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2463187Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2477560Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2487325Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2514916Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2532616Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2542557Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2553468Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2567401Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2578027Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2589442Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2603918Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2654141Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2663218Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2673205Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2683466Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.2694387Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3342933Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3359234Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3368998Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3386831Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3402378Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3422179Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.3438758Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4291486Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4301155Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4318870Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4329654Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4339917Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4405358Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4415662Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4478711Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4490861Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:34:56.4503837Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.4506832Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.5958474Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.6841361Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.6860858Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.6880111Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.6890293Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.7860910Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.7875230Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.7884930Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:34:56.7899475Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.7902637Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9044814Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9059997Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9075896Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9095317Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9105435Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9120044Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9130577Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9140683Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9150704Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9179270Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9189554Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9208798Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9224654Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9273026Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9287463Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9293149Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9303137Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9318956Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9328498Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9342776Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:34:56.9361785Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9365460Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9375912Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9391800Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9411429Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9421813Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9442354Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9453110Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9463431Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9478098Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9498222Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9507921Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9518429Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9533680Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9564328Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9577362Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9586586Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9617275Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9634527Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9644803Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9654733Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9683618Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:56.9703169Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:57.0584911Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:57.0597000Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:57.0606665Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:34:57.0628017Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0631255Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0645782Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0655877Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0675234Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0690731Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0700833Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0715172Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.0761665Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1726622Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1737795Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1758384Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1773282Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1818900Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1830226Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1844680Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1854324Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1878755Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.1890687Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2520074Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2531150Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2579631Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2594430Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2604498Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2625794Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2644559Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2659984Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2670700Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2683299Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2692483Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2702925Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2712695Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.2731377Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.3921109Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5269981Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5276082Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5287605Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5298100Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5393025Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.5403526Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.6509578Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.6607796Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.6627738Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.6639285Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7486744Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7513908Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7527742Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7547886Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7558373Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7573652Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7606520Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7617083Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7627422Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7690807Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7724681Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7743546Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7762003Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7772261Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7790424Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7800067Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7809207Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7820293Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7854078Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7864382Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7875446Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7889996Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:34:57.7902847Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7905808Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7916090Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7925519Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7930823Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7940798Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7953848Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7968043Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7973950Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7979580Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7989464Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.7994878Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:34:57.8006967Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8009873Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8020504Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8040892Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8051216Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8066561Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8076189Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8086512Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8095960Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8106885Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8121857Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:34:57.8128840Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8131852Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8141483Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8150767Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8171166Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8184381Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:34:57.8197079Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8200028Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8209465Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8219078Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8229502Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8239178Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8268279Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8278526Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8291962Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8301144Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8325211Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8334691Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8348085Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8358502Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8371770Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8382036Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8391420Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8404604Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:34:57.8442571Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8445273Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8455629Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8468418Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8477364Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8487562Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:34:57.8526958Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:34:57.8531072Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:34:57.8544422Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:34:57.8573317Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:34:57.8576130Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:34:57.8592596Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:34:57.8601678Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:34:57.8684758Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:34:57.8692702Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:34:57.8703115Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:34:57.8713205Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:34:57.8723925Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8726846Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8746472Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8787446Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8801300Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8819996Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8856290Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8868023Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8878240Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:34:57.8889503Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-04-25T04:34:57.8892291Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-04-25T04:34:57.8898290Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-04-25T04:34:57.8901199Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-04-25T04:34:57.8913131Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:34:57.8916354Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:34:57.9735160Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:34:57.9767987Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:34:57.9774334Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:34:57.9777460Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:34:58.0976708Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:34:58.0987168Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.0990662Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.2105611Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.2116654Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.2134917Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3008605Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3036115Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3051458Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3061041Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3075948Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3097883Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3109018Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3120054Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3129578Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3138813Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3154720Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3164746Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3174722Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3184290Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:34:58.3195914Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-04-25T04:34:58.3198724Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-04-25T04:34:58.3209776Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-04-25T04:34:58.3213239Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-04-25T04:34:58.3220170Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-04-25T04:34:58.3223223Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-04-25T04:34:58.3230605Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:34:58.3239521Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:34:58.3254740Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:34:58.3261308Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-04-25T04:34:58.3264400Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-04-25T04:34:58.3271353Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:34:58.3274431Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:34:58.3284734Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:34:58.3294806Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-04-25T04:34:58.3297812Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-04-25T04:34:58.3304431Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-04-25T04:34:58.3307320Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-04-25T04:34:58.3314198Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:34:58.3317273Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:34:58.3335995Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:34:58.3346910Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:34:58.3356856Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:34:58.3367491Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:34:58.3370423Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:34:58.3377560Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3380915Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3390482Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3400934Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3410970Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3420967Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:34:58.3431727Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:34:58.3435003Z 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-04-25T04:34:58.3449517Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:34:58.3455816Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-04-25T04:34:58.3458732Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-04-25T04:34:58.3466217Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:34:58.3469175Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:34:58.3484435Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:34:58.3495648Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:34:58.3505809Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:34:58.3516190Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:34:58.3519257Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:34:58.3529009Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:34:58.3535815Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:34:58.3538998Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:34:58.3553530Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:34:58.3567437Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:34:58.3573982Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-04-25T04:34:58.3577115Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-04-25T04:34:58.3590756Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3593954Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3608215Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3618651Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3638606Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3648838Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3662449Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3674359Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3684736Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3695074Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3704832Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3715552Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:34:58.3730039Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-04-25T04:34:58.3738247Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-04-25T04:34:58.3745630Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:34:58.3748713Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:34:58.3887911Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:34:58.3898235Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:34:58.3924475Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:34:58.3935661Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.3938725Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.3949668Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.3959008Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.3974659Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.4004505Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.4033919Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:34:58.4044651Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:34:58.4047722Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:34:58.4058310Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:34:58.4067835Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:34:58.4074621Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:34:58.4077882Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:34:58.4087696Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:34:58.4095778Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4098703Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4117927Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4137080Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4150549Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4160382Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4188652Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4199258Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4918436Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4933541Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4947311Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:34:58.4953834Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:34:58.4957034Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:34:58.4967688Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:34:58.4978056Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:34:58.4995270Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:34:58.5001724Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5008683Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5023274Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5032704Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5047934Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5059683Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:34:58.5065320Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-04-25T04:34:58.5068162Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-04-25T04:34:58.5074479Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:34:58.5077845Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:34:58.5093333Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:34:58.5099144Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:34:58.5103322Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:34:58.5113606Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:34:58.5120875Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:34:58.5129282Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:34:58.5144376Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:34:58.5154914Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:34:58.6042797Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:34:58.6050483Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6054101Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6065772Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6075897Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6091620Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6105868Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6116064Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6131227Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6140911Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:34:58.6147507Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-04-25T04:34:58.6150684Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-04-25T04:34:58.6156893Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-04-25T04:34:58.6160231Z 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-04-25T04:34:58.6170701Z 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-04-25T04:34:58.6184261Z 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-04-25T04:34:58.6196941Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6200064Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6215213Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6230715Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6241824Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6261175Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6266025Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6281847Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6291444Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6305040Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6315580Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6325581Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6344807Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6354280Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:34:58.6367821Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6370782Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6400370Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6415290Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6424828Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6440986Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6456044Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6469564Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6475356Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6486105Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6496438Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6506308Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6552678Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6564120Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6574497Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6584072Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6607610Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6627934Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6647561Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6677167Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:34:58.6685535Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6688734Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6698570Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6713873Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6723858Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6739187Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6749884Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6766452Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6786529Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6802704Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6861929Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6872408Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:34:58.6880027Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6883258Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6894277Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6903643Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6921348Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6930600Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6963096Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6977117Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.6996984Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.7010568Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:34:58.7017751Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7020881Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7053059Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7068889Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7084159Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7108641Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:34:58.7114610Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:34:58.7117824Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:34:58.7132999Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:34:58.7140026Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:34:58.7142944Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:34:58.7152500Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:34:58.7161803Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:34:58.7168072Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-04-25T04:34:58.7171000Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-04-25T04:34:58.7177616Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-04-25T04:34:58.7180590Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-04-25T04:34:58.7196561Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:34:58.7199608Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:34:58.7208917Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:34:58.7219236Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-04-25T04:34:58.7222190Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-04-25T04:34:58.7234013Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-04-25T04:34:58.7241149Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-04-25T04:34:58.7247910Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-04-25T04:34:58.7250751Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-04-25T04:34:58.7267400Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-04-25T04:34:58.7270415Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-04-25T04:34:58.7282150Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-04-25T04:34:58.7285455Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-04-25T04:34:58.7299756Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-04-25T04:34:58.7302569Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-04-25T04:34:58.7312989Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-04-25T04:34:58.7316051Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-04-25T04:34:58.7326617Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-04-25T04:34:58.7329460Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-04-25T04:34:58.7339716Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-04-25T04:34:58.7342591Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-04-25T04:34:58.7355544Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-04-25T04:34:58.7358473Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-04-25T04:34:58.7369480Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:34:58.7372529Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:34:58.7393718Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:34:58.7399442Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-04-25T04:34:58.7402558Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-04-25T04:34:58.7413332Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:34:58.7416455Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:34:58.7426118Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:34:58.7431886Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:34:58.7435172Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:34:58.7445634Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:34:58.7480109Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:34:58.7486044Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:34:58.7489193Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:34:58.7499983Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:34:58.7509415Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:34:58.7516721Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:34:58.7520286Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:34:58.7530034Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:34:58.7535384Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:34:58.7544542Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:34:58.7551171Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:34:58.7554329Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:34:58.7564791Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:34:58.7571470Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-04-25T04:34:58.7579623Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-04-25T04:34:58.7596534Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7599559Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7609466Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7625976Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7645141Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7666772Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7676506Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7682082Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7692554Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7704147Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7719649Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7736719Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7746630Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7756623Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7766580Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7791220Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7807134Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7819963Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7829813Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7847728Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7857592Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7867816Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7877610Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7887268Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7901286Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7914013Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7924539Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7934456Z copying torch\distributed\checkpoint\_hf_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7947353Z copying torch\distributed\checkpoint\_hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7957854Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7968514Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7983975Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.7992928Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.8007461Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.8018315Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:34:58.8028783Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:34:58.8031775Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:34:58.8040801Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:34:58.8057799Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:58.8060903Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:58.8957175Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:58.9116613Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:58.9132350Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:58.9147348Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0375302Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0385180Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0395555Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0411089Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0455013Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0465330Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0488706Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0499013Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0539196Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0580239Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0590177Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0612781Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0623171Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0633497Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0644826Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0660013Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:34:59.0671610Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:34:59.0679906Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:34:59.0687432Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:34:59.0698765Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:34:59.0701835Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:34:59.0712143Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:34:59.0721055Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0724164Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0737345Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0747867Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0766979Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0777032Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0788389Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0801329Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0811354Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0821473Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0846961Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0858177Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0868489Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0887685Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0900193Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0935886Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0941550Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:34:59.0953689Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.0957061Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.0971986Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1016689Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1043653Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1063366Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1068631Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1092416Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1105703Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1115031Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1124665Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:34:59.1136391Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1139345Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1159562Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1174333Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1187279Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1201263Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1214376Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1224303Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1234466Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1248192Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1257365Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:34:59.1271197Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1274221Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1295253Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1310642Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1336480Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1355978Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1381732Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1401077Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.1416306Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2317858Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2337739Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2353679Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2365407Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2379049Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2389347Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:34:59.2400893Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:34:59.2404374Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:34:59.2419152Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:34:59.2429114Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:34:59.2439700Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:34:59.2455896Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2458825Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2471250Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2485363Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2495644Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2504858Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2523220Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2532370Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:34:59.2547526Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-04-25T04:34:59.2550382Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-04-25T04:34:59.2557120Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-04-25T04:34:59.2560104Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-04-25T04:34:59.2566968Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-04-25T04:34:59.2569970Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-04-25T04:34:59.2601566Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:34:59.2604480Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:34:59.2610598Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:34:59.2615928Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:34:59.2633139Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2636160Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2646731Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2658733Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2678240Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2697466Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2712817Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2738854Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2749986Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2771250Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2793162Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2806409Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:34:59.2818522Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2821818Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2837447Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2847104Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2866915Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2876705Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2892055Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2905953Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2925636Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2939777Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:34:59.2950481Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:34:59.2958260Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:34:59.2971809Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:34:59.2982247Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:34:59.2999052Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:34:59.3004787Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:34:59.3008001Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:34:59.3019360Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:34:59.3025279Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:34:59.3028494Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:34:59.3038992Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:34:59.3049524Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:34:59.3052729Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:34:59.3062903Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:34:59.3069107Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:34:59.3072327Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:34:59.3086424Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:34:59.3091917Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-04-25T04:34:59.3094907Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-04-25T04:34:59.3100948Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:34:59.3103981Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:34:59.3114228Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:34:59.3119660Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:34:59.3132118Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:34:59.3135360Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:34:59.3145304Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:34:59.3157821Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:34:59.3169364Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:34:59.3196154Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:34:59.3201406Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:34:59.3211726Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:34:59.3224291Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3227457Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3238836Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3255392Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3283763Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3308180Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3319214Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3330199Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3341065Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3351588Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3361635Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3372100Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3382743Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:34:59.3395213Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3397980Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3409072Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3424784Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3439864Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3454738Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:34:59.3465632Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3469077Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3479562Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3489750Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3498973Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3508873Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3522850Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:34:59.3530353Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:34:59.3533752Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:34:59.3555305Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:34:59.3565367Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:34:59.3584022Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:34:59.3597357Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:34:59.3606511Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:34:59.3620512Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:34:59.3625838Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:34:59.3638104Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:34:59.3641409Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:34:59.3651619Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:34:59.3662434Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:34:59.3669127Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:34:59.3672306Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:34:59.3686532Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:34:59.3696339Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:34:59.3704178Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3707393Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3717353Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3735180Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3749564Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3760365Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3781159Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3803623Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3818275Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3833208Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:34:59.3839815Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:34:59.3843097Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:34:59.3858557Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:34:59.3963784Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:34:59.3967073Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:34:59.3978032Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:34:59.3983903Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:34:59.3987185Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:34:59.3997086Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:34:59.4002849Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:34:59.4006093Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:34:59.4016049Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:34:59.4023061Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:34:59.4026041Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:34:59.4042615Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:34:59.4052108Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:34:59.4062249Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:34:59.4082334Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4085398Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4110168Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4125676Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4139492Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4157841Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:34:59.4169453Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4172392Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4183483Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4196497Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4207531Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4217051Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4232501Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4262224Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4271720Z copying torch\distributed\tensor\parallel\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4281982Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:34:59.4290721Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4293621Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4304933Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4315895Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4326037Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4344133Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4354910Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4374883Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4396130Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4411395Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4424659Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4443538Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4458375Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:34:59.4469077Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:34:59.4472422Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:34:59.4478036Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:34:59.4484411Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-04-25T04:34:59.4487524Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-04-25T04:34:59.4498708Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:34:59.4501790Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:34:59.4512793Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:34:59.4524491Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4527519Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4557497Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4567728Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4573362Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4583367Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4599737Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4611479Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4622536Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:34:59.4638840Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:34:59.4642110Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:34:59.4652552Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:34:59.4659608Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:34:59.4662793Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:34:59.4673882Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:34:59.4688340Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:34:59.4698068Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:34:59.4725134Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4728251Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4738509Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4748920Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4758711Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4768971Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4798417Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:34:59.4806185Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-04-25T04:34:59.4809726Z 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-04-25T04:34:59.4821138Z 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-04-25T04:34:59.4838461Z 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-04-25T04:34:59.4852893Z 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-04-25T04:34:59.4878029Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-04-25T04:34:59.4880970Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-04-25T04:34:59.4896198Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-04-25T04:34:59.4899077Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-04-25T04:34:59.4913077Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.4916287Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.4936852Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.4950490Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.4965382Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5000844Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5011797Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5022461Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5678612Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5702832Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.5714539Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6298423Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6314466Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6320586Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6334733Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6344948Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6447370Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6480341Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6490704Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6510038Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6523154Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6533079Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6547370Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6562902Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:34:59.6571643Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6574774Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6586140Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6596030Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6614636Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6629202Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6643034Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6662465Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6672322Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6686378Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6696301Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6715518Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6731914Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6742502Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6762759Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6782491Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6793289Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6803948Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6819018Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:34:59.6827359Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6830504Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6846212Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6870969Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6895996Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6906797Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6921352Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6930397Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6944774Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:34:59.6951471Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.6954580Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.6964594Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.6971631Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.6984654Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.6994197Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.7011739Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.7021390Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.7030737Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:34:59.7038296Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7041370Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7051544Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7061474Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7076201Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7085478Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7101876Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:34:59.7108490Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:34:59.7111586Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:34:59.7121063Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:34:59.7127095Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-04-25T04:34:59.7134326Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-04-25T04:34:59.7140367Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:34:59.7144119Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:34:59.7162382Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:34:59.7172177Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:34:59.7183709Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:34:59.7198514Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:34:59.7201543Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:34:59.7211145Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:34:59.7217546Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7220519Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7230655Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7241554Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7257286Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7275254Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7285614Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:34:59.7297440Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:34:59.7300683Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:34:59.7311855Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:34:59.7317615Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-04-25T04:34:59.7320476Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-04-25T04:34:59.7343220Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:34:59.7346693Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:34:59.7357227Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:34:59.7364657Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7367647Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7377908Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7388526Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7394523Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7404727Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7420893Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7430773Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7446781Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:34:59.7453670Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7456619Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7467326Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7491517Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7655407Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7678992Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:34:59.7685029Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:34:59.7688085Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:34:59.7702246Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:34:59.7729241Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:34:59.7738817Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:34:59.7754316Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:34:59.7757299Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:34:59.7762672Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:34:59.7768493Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-04-25T04:34:59.7771449Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-04-25T04:34:59.7786252Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7789653Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7818979Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7830423Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7852460Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7865562Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7885134Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7924621Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7934964Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7945021Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7958947Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7969622Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7985260Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.7996004Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8007779Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8048555Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8753087Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8764162Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8779700Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8793195Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8817996Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8846944Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8866929Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8891223Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8902146Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8916391Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8929199Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:34:59.8944082Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.8947650Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.8962994Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.8974499Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9020711Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9040748Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9052223Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9062051Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9071960Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:34:59.9083359Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-04-25T04:34:59.9086161Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-04-25T04:34:59.9092631Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-04-25T04:34:59.9095572Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-04-25T04:34:59.9103221Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:34:59.9106252Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:34:59.9111662Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:34:59.9125058Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9127924Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9138614Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9147896Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9157487Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9166809Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9181768Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9198606Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9218717Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9248304Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9263406Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9274395Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9289475Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9300294Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9310251Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9321336Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9332547Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:34:59.9345483Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:34:59.9353913Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:34:59.9365066Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:34:59.9371830Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:34:59.9374769Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:34:59.9380178Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:34:59.9386713Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-04-25T04:34:59.9389493Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-04-25T04:34:59.9426997Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-04-25T04:34:59.9430052Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-04-25T04:34:59.9438100Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:34:59.9440841Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:34:59.9450748Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:34:59.9456232Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:34:59.9461732Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:34:59.9474219Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:34:59.9477353Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:34:59.9484353Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:34:59.9487345Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:34:59.9492934Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:34:59.9498473Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:34:59.9503740Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:34:59.9510299Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:34:59.9513542Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:34:59.9519011Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:34:59.9531055Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-04-25T04:34:59.9533783Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-04-25T04:34:59.9540727Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:34:59.9544127Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:34:59.9549748Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:34:59.9560057Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:34:59.9566229Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:34:59.9573417Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:34:59.9576401Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:34:59.9585793Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:34:59.9592618Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:34:59.9596241Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:34:59.9601943Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:34:59.9607460Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:34:59.9614387Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-04-25T04:34:59.9616949Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-04-25T04:34:59.9626032Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9628668Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9634439Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9640399Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9645975Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9655683Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9665883Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9671501Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9677089Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9688925Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9694319Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9699608Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:34:59.9710927Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-04-25T04:34:59.9718661Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-04-25T04:34:59.9725711Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:34:59.9728837Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:34:59.9734504Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:34:59.9740570Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:34:59.9750227Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:34:59.9765616Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9768710Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9778340Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9783622Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9789305Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9794957Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9800435Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:34:59.9814395Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9817609Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9828019Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9839792Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9875008Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9885558Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9896294Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9906153Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9916296Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9926171Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9936151Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:34:59.9942566Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:34:59.9945555Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:34:59.9956447Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:34:59.9972847Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:34:59.9975896Z copying torch\onnx\_internal\io_adapter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0040412Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0052050Z copying torch\onnx\_internal\onnxruntime.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0084216Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0095602Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0106707Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0125624Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0135877Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:35:00.0145234Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.0148557Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.0967138Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.0983161Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.0993984Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1011535Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1017244Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1054635Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1064317Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1075643Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1090205Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1095706Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1107673Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1124191Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1134213Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1145675Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1176210Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1186881Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1197157Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1212507Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1221852Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1231689Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1247002Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:35:00.1254493Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1257530Z copying torch\onnx\_internal\fx\decomposition_table.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1269258Z copying torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1280657Z copying torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1303705Z copying torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1320292Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1334173Z copying torch\onnx\_internal\fx\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1345101Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1358447Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1374438Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1385841Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:35:00.1393606Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:35:00.1397112Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:35:00.1412062Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:35:00.1421160Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:35:00.1427652Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1435477Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1449069Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1458312Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1472525Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1486337Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:00.1493825Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1497028Z copying torch\onnx\_internal\fx\passes\decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1507361Z copying torch\onnx\_internal\fx\passes\functionalization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1521506Z copying torch\onnx\_internal\fx\passes\modularization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1542122Z copying torch\onnx\_internal\fx\passes\readability.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1562972Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1591420Z copying torch\onnx\_internal\fx\passes\virtualization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1600740Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1612278Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:35:00.1618839Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:35:00.1621814Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:35:00.1633850Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:35:00.1637039Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:35:00.1647366Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:35:00.1653041Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:35:00.1669810Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:35:00.1678366Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1681319Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1686708Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1697162Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1702632Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1708364Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1718757Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1728346Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1734426Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1744960Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1750586Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1760860Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1770286Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:35:00.1777481Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:35:00.1780512Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:35:00.1796497Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:35:00.1810664Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.1818242Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.1833984Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.1850359Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.1866655Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.1878827Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3613914Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3642371Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3652852Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3662743Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3689881Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.3701056Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.6243236Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.6253638Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.7879347Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.7955182Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.7997617Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.8010279Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.8059615Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.8078692Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.8089710Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9015599Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9031622Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9053296Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9063103Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9073596Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9780396Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9923800Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9929566Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9935147Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9952065Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9964847Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:00.9980340Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0002888Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0025972Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0037455Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0048155Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0594363Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0604386Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0617515Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0627939Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0645783Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0655773Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:35:01.0662021Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-04-25T04:35:01.0665161Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-04-25T04:35:01.0672051Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:35:01.0675176Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:35:01.0680620Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:35:01.0689976Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:35:01.0697761Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.0700914Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.0711504Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.0721852Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.0742344Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1793964Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1804520Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1814305Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1830115Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1840892Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:35:01.1847187Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:35:01.1850484Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:35:01.2045381Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:35:01.2051276Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:35:01.2054479Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:35:01.2116980Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:35:01.2127544Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:35:01.2138428Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:35:01.2145715Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2148776Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2162901Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2176682Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2182792Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2205090Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2215080Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:35:01.2221935Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:35:01.2225203Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:35:01.2230696Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:35:01.2236131Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:35:01.2241937Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-04-25T04:35:01.2244928Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-04-25T04:35:01.2251806Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2255144Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2297257Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2307611Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2325006Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2335535Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2345562Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2448935Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2458893Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:01.2465249Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:35:01.2468427Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:35:01.2490782Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:35:01.2497342Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:35:01.2500521Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:35:01.2521386Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:35:01.2527573Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-04-25T04:35:01.2530958Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-04-25T04:35:01.2547798Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-04-25T04:35:01.2554352Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:35:01.2557595Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:35:01.2567739Z 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-04-25T04:35:01.2579029Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:35:01.2585147Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:01.2588310Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:01.2598763Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:01.2619215Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:01.2629937Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:01.2636086Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-04-25T04:35:01.2639316Z 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-04-25T04:35:01.2652384Z 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-04-25T04:35:01.2664678Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-04-25T04:35:01.2679881Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2682995Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2708193Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2745441Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2770484Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2782345Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2801963Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2822776Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2844248Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:01.2850757Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-04-25T04:35:01.2853953Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-04-25T04:35:01.2860709Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-04-25T04:35:01.2863551Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-04-25T04:35:01.2870568Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:35:01.2873641Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:35:01.2878402Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:35:01.2892215Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2895305Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2901225Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2938542Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2955994Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2970158Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2980236Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.2990439Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.3001938Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:35:01.3012859Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3015804Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3026813Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3267029Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3286514Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3297426Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:35:01.3305284Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:35:01.3308479Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:35:01.3319679Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:35:01.3325889Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:01.3329092Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:01.3344656Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:01.3352223Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:35:01.3355790Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:35:01.3361374Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:35:01.3369076Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3372486Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3396123Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3417023Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3427313Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3442078Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3452230Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3462850Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3473975Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3484119Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:35:01.3522289Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:35:01.3522898Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:35:01.3532241Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:35:01.3537945Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:35:01.3541507Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:35:01.3552735Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:35:01.3559689Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3562682Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3587990Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3597910Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3610139Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3638018Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3654029Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3663859Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3676566Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3687551Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3709462Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:35:01.3716401Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3719541Z copying torch\utils\benchmark\examples\blas_compare_setup.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3729343Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3741022Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3751157Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3760792Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3771199Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3781529Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:35:01.3788415Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3791385Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3805407Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3816420Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3825944Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3840451Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3849915Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:01.3856759Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3859929Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3871400Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3884003Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3893800Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3904368Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3921146Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3936661Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3964782Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3974172Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:01.3980194Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:01.3983382Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:01.4005353Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:01.4011987Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4015013Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4031222Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4042105Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4052679Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4067813Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4082364Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:01.4089937Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4092853Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4106582Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4116232Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4127569Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4137335Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4153230Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:35:01.4165519Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4168663Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4186466Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4191745Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4209314Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4218984Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:01.4227103Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4230386Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4244887Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4256255Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4272199Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4285509Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4295211Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4307517Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4320572Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4331708Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4343234Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4352647Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4361782Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:35:01.4373263Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4376326Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4385910Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4413729Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4423325Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4433606Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4446911Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:35:01.4455065Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:35:01.4458151Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:35:01.4470406Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:35:01.4481051Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:35:01.4490616Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:35:01.4497640Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4500624Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4510696Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4520976Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4532677Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4553015Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4562807Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4573030Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4583925Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4590165Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4600043Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4610620Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:35:01.4617863Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4621008Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4638104Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4648059Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4657719Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4672566Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4682418Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4691443Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4701946Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4711945Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4721433Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4730885Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:35:01.4741789Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:35:01.4745926Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:35:01.4765942Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:35:01.4786169Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:35:01.4803429Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:35:01.4812811Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.4815427Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.4830322Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.5902920Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.5943632Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.5954918Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.5985335Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6008398Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6022885Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6053803Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6098814Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6112735Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6122516Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6142336Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6173839Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6203563Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6228853Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6240161Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6250880Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6279661Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6310583Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6327135Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6356035Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:35:01.6367569Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:35:01.6370571Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:35:01.6381597Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:35:01.6387127Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:35:01.6396664Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:35:01.6405951Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6409304Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6421076Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6431787Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6451455Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6460798Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6470440Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6481612Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6495889Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6506796Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6523171Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6534894Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6548363Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6560240Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6570386Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:35:01.6577464Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:35:01.6580686Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:35:01.6590903Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:35:01.6600723Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:35:01.6607844Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6610855Z copying torch\_export\serde\aoti_schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6616888Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6627296Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6641615Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6662136Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6834740Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6844077Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:01.6856260Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6859414Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6865190Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6875698Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6887050Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6897389Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6907834Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6917872Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6924218Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6933520Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6943195Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6952049Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6961937Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6967732Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6973657Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6979260Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6985590Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6991510Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.6997326Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7007972Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7014560Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7020922Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7031662Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7038092Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7044275Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7055168Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7061608Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7072310Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7078126Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7084201Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7090096Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7095706Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7106135Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7111850Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7117678Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7123460Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7139922Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7145546Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:35:01.7159254Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7162419Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7172877Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7188750Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7205672Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7215609Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:01.7224272Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7227304Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7248520Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7269745Z copying torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7288374Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7305478Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7333992Z copying torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7361108Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7372670Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7419454Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7440753Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7450833Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7465957Z copying torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7487126Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7501935Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:35:01.7508965Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7512017Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7523976Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7534978Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7552497Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7562868Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:35:01.7573766Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.7576825Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.7588334Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.7600185Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8278730Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8359533Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8377438Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8398584Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8446743Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8474528Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8512484Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.8522405Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9159975Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9176683Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9221884Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9246279Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9266471Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9302326Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9314115Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9324679Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:01.9350202Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0416906Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0438900Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0444772Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0459556Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0495268Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0512948Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0524762Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0592311Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0615192Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0625537Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0637175Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0685406Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:02.0699972Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:35:02.0703178Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:35:02.0716790Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:35:02.0726322Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:35:02.0730805Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:35:02.0744477Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0747502Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0771340Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0785576Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0801665Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0825412Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0836987Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0849628Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.0860246Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1661876Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1690486Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1705671Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1726564Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1743542Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1768267Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1779339Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1796380Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1830277Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1848088Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1900541Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1916678Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.1930339Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.2003795Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:35:02.2011123Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2014255Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2024412Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2050403Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2096090Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2111509Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2139159Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2152957Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2163011Z copying torch\_inductor\kernel\mm_scaled_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2174460Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:35:02.2181607Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:35:02.2185162Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:35:02.2195311Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:35:02.2209491Z copying torch\_inductor\package\pt2_archive_constants.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:35:02.2214640Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:35:02.2223948Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2226925Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2243018Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2254243Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2263615Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2282177Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2292964Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2302344Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2312554Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2324271Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2334579Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2345038Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2361264Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2406840Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:35:02.2413533Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2416630Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2428068Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2438267Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2466126Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2485476Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2501286Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:02.2508509Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2511590Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2559602Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2573938Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2589375Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2608192Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2628893Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2640185Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2650588Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2680131Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:35:02.2687344Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2690374Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2713125Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2725350Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2751621Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2765288Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2776646Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2787213Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2799229Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2812293Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2821971Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:35:02.2828038Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:35:02.2831078Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:35:02.2842000Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:35:02.2848093Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:02.2851413Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:02.2862131Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:02.2884313Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:02.2901080Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2904233Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2916048Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2928471Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2943263Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2955204Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2966223Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2981464Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.2993106Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3004399Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3015769Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3032916Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3059752Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3075096Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3094535Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3106317Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3117935Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3130673Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3141839Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3160404Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3176621Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3188306Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3199192Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3216150Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:02.3221940Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:35:02.3224919Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:35:02.3255893Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:35:02.3262442Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-04-25T04:35:02.3265336Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-04-25T04:35:02.3276467Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-04-25T04:35:02.3280095Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-04-25T04:35:02.3462229Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-04-25T04:35:02.3792640Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-04-25T04:35:02.3805217Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-04-25T04:35:02.3807992Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-04-25T04:35:02.3833585Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:35:02.3837044Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:35:02.3857025Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:35:02.3867088Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:35:02.3874341Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:35:02.3877564Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:35:02.3890015Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:35:02.3897961Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3901794Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3927136Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3945996Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3956942Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3967455Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3993019Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.3998815Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4010802Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4044583Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4062837Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4079248Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4091042Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4105933Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:35:02.4112233Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4115219Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4132129Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4141487Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4150888Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4188197Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4202816Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:35:02.4216396Z creating build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:35:02.4219320Z copying torchgen\executorch\model.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:35:02.4233924Z copying torchgen\executorch\parse.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:35:02.4244674Z copying torchgen\executorch\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:35:02.4250497Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:35:02.4253614Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:35:02.4264433Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:35:02.4269816Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:35:02.4286776Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:35:02.4289689Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:35:02.4300290Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:35:02.4311314Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:35:02.4317237Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:35:02.4327753Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:35:02.4338798Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:35:02.4360004Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:35:02.4374256Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:35:02.4380023Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:35:02.4382936Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:35:02.4394519Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:35:02.4412432Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:35:02.4422672Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:35:02.4429416Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:35:02.4432386Z copying torchgen\executorch\api\custom_ops.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:35:02.4442546Z copying torchgen\executorch\api\et_cpp.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:35:02.4456761Z copying torchgen\executorch\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:35:02.4466387Z copying torchgen\executorch\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:35:02.4472181Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:35:02.4475398Z copying torchgen\executorch\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:35:02.4486647Z copying torchgen\executorch\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:35:02.4497232Z copying torchgen\executorch\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:35:03.3089529Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:35:03.3112901Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:35:03.5070927Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:35:03.5076611Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5080018Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5090168Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5137730Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5147508Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5177297Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5199012Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5281116Z copying torch\bin\test_edge_op_registration.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5290467Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5345168Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5371506Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5428483Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:35:03.5436070Z creating build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5439003Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5454849Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5465658Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5475643Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5498020Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5508650Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5518544Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5528277Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5538234Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5548120Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5559717Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5568997Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5584770Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5594896Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5603847Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5613871Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5627210Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5636734Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5653916Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5663590Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5672854Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5682624Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5691905Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5701278Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5710948Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5720823Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5737222Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5745899Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5766397Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5775733Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5785561Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5795322Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5810235Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5820121Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5829895Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5845779Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5855889Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5865288Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5899288Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5909274Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5932594Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5942260Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5952083Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5962025Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5986379Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.5996199Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6005901Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6015739Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6034461Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6044709Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6055830Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6066294Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6083536Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6093367Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6103623Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6114601Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6128749Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6141736Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6152755Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6162480Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6177564Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6193521Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6204168Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6215000Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6230967Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6243317Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6254362Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6267606Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6284214Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6302450Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6315015Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6325337Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6342181Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6353076Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6365882Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6378024Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6391919Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6403247Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6413303Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6423301Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6437558Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6447938Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6458213Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6468561Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6482729Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6492205Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6526897Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6537050Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6548870Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6560388Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6570693Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6580748Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6590843Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6601438Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6611722Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6621554Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6645855Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6655635Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6663073Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6672249Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6682685Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6692769Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6700359Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6710031Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6732493Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:35:03.6743492Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:35:03.6754247Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:35:03.6767934Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:35:03.6789116Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:35:03.6801711Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:35:03.6808092Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:35:03.6819716Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:03.6843557Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6846783Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6856918Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6869324Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6875571Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6890064Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6900665Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6912597Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6934706Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6945622Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6957498Z copying torch\_C\_export.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6963756Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6974650Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6985480Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6991808Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.6998251Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7012261Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7018655Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7029141Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7040106Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7051138Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7061681Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:03.7074415Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:04.0287324Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:04.0295689Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:35:04.0456139Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:35:04.0459767Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:35:04.0467350Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:35:04.0484062Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:35:04.0495030Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:35:04.0500679Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-04-25T04:35:04.0510954Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-04-25T04:35:04.0516596Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:04.0519422Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:04.0530622Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:04.0536094Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:35:04.0566000Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:35:04.0572573Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:35:04.0583941Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:35:04.0594766Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:35:04.0604379Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-04-25T04:35:04.0607249Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-04-25T04:35:04.0613077Z creating build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0615919Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0622744Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0632511Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0638732Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0644955Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0661703Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0668010Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0674297Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0680441Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0691024Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0697334Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0703339Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0709124Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0715754Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0721967Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0728737Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0736290Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0750999Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:04.0758675Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0761721Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0768471Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0774618Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0784547Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0790937Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0804695Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:35:04.0814715Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0817593Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0824196Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0830864Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0837224Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0852829Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0860713Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0867189Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0878093Z copying torch\include\asmjit\arm\a64utils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0884655Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0891043Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:35:04.0897163Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0900133Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0912335Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0918880Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0925280Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0937030Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0943987Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0950362Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0957584Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0964367Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0970797Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0977330Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0984158Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.0996270Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1003137Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1009631Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1016015Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1023398Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1029931Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1037039Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1043373Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1049729Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1055982Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1064202Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1070426Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1082572Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1095893Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1106270Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1112383Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1118821Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1125417Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1131588Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1137643Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1151443Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1157857Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1164099Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:35:04.1170005Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1172948Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1184815Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1191102Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1197882Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1212650Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1220819Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1228122Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:35:04.1234405Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1237388Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1247975Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1254400Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1260723Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1267386Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1282285Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1288240Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1294515Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1300630Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1306627Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1312881Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1319455Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1330172Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1337542Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1344002Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1350890Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1365565Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1373028Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1379781Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1392422Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1398819Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1405694Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1412186Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1418699Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1425592Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1432189Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1439356Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1445726Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1463055Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1475072Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1481169Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1487439Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1500040Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1506145Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1512287Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1519343Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1531009Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1536982Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1543338Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1549706Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1556213Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1570048Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1577237Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1584214Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1596169Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1602590Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1609230Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1616716Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1628065Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1634436Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1640811Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1651741Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1662886Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1669001Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1675253Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1681647Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1692221Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1698634Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1723022Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1729498Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1735864Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1752941Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1759374Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1765695Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1777216Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1783818Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1790125Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1796804Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1809059Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1816389Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1829061Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1835595Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1847351Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1855245Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1861981Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1869035Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1879191Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1885746Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1891843Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1898054Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1911536Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1917800Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1924277Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1931018Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1958672Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1973111Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1979428Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1985686Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1991641Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.1998164Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2004363Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2010352Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2016377Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2022470Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2067329Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2074126Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2085053Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2090986Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2097305Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2103161Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2118969Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2125353Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2132434Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2139467Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2155997Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2158848Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2166328Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2173489Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2180537Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2188206Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2195416Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2207256Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2216298Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2222817Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2228927Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2235057Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2241193Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2263088Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2269441Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:35:04.2275327Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2278277Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2291534Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2297540Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2304523Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2315638Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2322040Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2329178Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2335263Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2347793Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2354380Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2360660Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2367474Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2373807Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2380192Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2387011Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2393489Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2406447Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2412875Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2419125Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2425189Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2436043Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2442554Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2456175Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2462085Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2473475Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2480403Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2486633Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2493235Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2500120Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2506293Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2513168Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2519522Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2530309Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2541493Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2547993Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2554687Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2565772Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2572893Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2580407Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2586660Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2598939Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2606001Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2612267Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2618805Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2629749Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2640110Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2646954Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2653490Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2664692Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2676802Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2684225Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2691146Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2703222Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2710308Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2716537Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2727981Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2739149Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2745539Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2751479Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2757677Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2763769Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2770025Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2776488Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2783277Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2792758Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2798998Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2815131Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2820991Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2827357Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2833585Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2839670Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2846215Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2856294Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2862424Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:35:04.2867813Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2870819Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2877256Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2889484Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2895976Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2909137Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:35:04.2919211Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:04.2922123Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:04.2928723Z 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-04-25T04:35:04.2935564Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:04.2942291Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:04.2956830Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:04.2962274Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.2965303Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.2971603Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.2984152Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.2990843Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.3003916Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.3014782Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.3021622Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:35:04.3027099Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:35:04.3030246Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:35:04.3036617Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:35:04.3048743Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:35:04.3055191Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:35:04.3067925Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:35:04.3071063Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:35:04.3085598Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:35:04.3092354Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:35:04.3097747Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3100810Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3106950Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3113488Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3120556Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3132927Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3139149Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3146371Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3152452Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3158646Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3168901Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:35:04.3174381Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.3342362Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.3348562Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.3354803Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.3526533Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.4050198Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.4056976Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:04.4071555Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4074469Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4081354Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4088563Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4095035Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4114813Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:04.4121899Z 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-04-25T04:35:04.4127532Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4130459Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4142191Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4148118Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4154446Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4165771Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4172802Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4179553Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4186464Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4192936Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4199408Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4206246Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4212580Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4226251Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4232853Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:04.4239615Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-04-25T04:35:04.4242695Z 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-04-25T04:35:04.4248990Z 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-04-25T04:35:04.4260361Z 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-04-25T04:35:04.4274311Z 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-04-25T04:35:04.4281289Z 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-04-25T04:35:04.4294144Z 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-04-25T04:35:04.4301086Z 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-04-25T04:35:04.4322481Z 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-04-25T04:35:04.4325047Z 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-04-25T04:35:04.4335957Z 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-04-25T04:35:04.4342923Z 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-04-25T04:35:04.4350122Z 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-04-25T04:35:04.4357273Z 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-04-25T04:35:04.4363372Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-04-25T04:35:04.4366328Z 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-04-25T04:35:04.4373198Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4376068Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4382492Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4390853Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4402675Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4416198Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4422592Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4436023Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4442952Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4450357Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4456934Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:04.4463465Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4466375Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4472520Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4478959Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4487716Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4500820Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4512769Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4519272Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4525613Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4531666Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4538077Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4544596Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4556701Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4563174Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4569688Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4575889Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4588169Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4594354Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4600954Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4607138Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4613463Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4627161Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4633258Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4639164Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4672503Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4678549Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:04.4683733Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:04.4686527Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:04.4692753Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:04.4703520Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:04.4709634Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:04.4721566Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4724424Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4741533Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4748162Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4754447Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4773381Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4779810Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4786218Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:35:04.4791735Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4794734Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4801051Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4807319Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4813176Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4819046Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4831004Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:35:04.4836797Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4839831Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4846179Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4852574Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4865330Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4871909Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4885837Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4892153Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4899281Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4905168Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4918103Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4924525Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:35:04.4930302Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4933291Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4939733Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4951662Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4963827Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4970092Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4982188Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4988729Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.4995069Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5001779Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5014039Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5020129Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5026641Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5033019Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:35:04.5038797Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:35:04.5042977Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:35:04.5049484Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:35:04.5055823Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:35:04.5075017Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:35:04.5080498Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-04-25T04:35:04.5083230Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-04-25T04:35:04.5088446Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5091246Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5097401Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5110280Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5116238Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5130708Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5141903Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:35:04.5146914Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5149738Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5155972Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5162055Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5169163Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5181358Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5187396Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5198406Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5204565Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5210934Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5216962Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5228143Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:35:04.5233568Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5236732Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5242844Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5248830Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5254939Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5265741Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5271938Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5284305Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5290614Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5296642Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5302825Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5314320Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5320563Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5327197Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5334943Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5341114Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5347350Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5353651Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5359758Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5373872Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5380505Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5386690Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5400264Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5407350Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5413715Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5419769Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5425966Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5437244Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5443331Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5449501Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5455828Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5467204Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5473851Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5486025Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5558523Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5570816Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5577055Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5583373Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5590345Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5601251Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5607248Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5613402Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5619596Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5625738Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5637481Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5643385Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5651231Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5661743Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5667702Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5673699Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5680103Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5686102Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5691815Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5697708Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5709122Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5720912Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5727066Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5733261Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5739747Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5751700Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5757712Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5763770Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5770223Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5781894Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5788146Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5794357Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5813803Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5819944Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5826069Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5832364Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5839457Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5854972Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5861889Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5867852Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5874233Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5880556Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5892548Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5899362Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5905550Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5916556Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5923003Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5929559Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5936150Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5942612Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5949253Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5961226Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5967451Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5982418Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5988650Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.5994949Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6001347Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6011320Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6017522Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6023721Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6030265Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6036590Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6043490Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6049367Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:35:04.6055015Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-04-25T04:35:04.6060644Z 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-04-25T04:35:04.6071168Z 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-04-25T04:35:04.6077775Z 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-04-25T04:35:04.6082776Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6085684Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6092734Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6109720Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6115769Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6127745Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6133772Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6139731Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6146444Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6152622Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6164310Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6170387Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6176325Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6182402Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6195069Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6201881Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6208098Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6214315Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6225347Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6231502Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6237771Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6249835Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6256890Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6263098Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6269474Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6275564Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6287808Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6293862Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6299833Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6305736Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6317570Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6323746Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6335924Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:35:04.6341208Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6344061Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6354577Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6360685Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6366655Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6382988Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6389882Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6396398Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6402981Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6409884Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6416110Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6421966Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6428124Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6438828Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6444881Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6451596Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6457514Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6511354Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6517693Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6523776Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6530128Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6540677Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6546789Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6557735Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6563830Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6569974Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:04.6575343Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:35:04.6578157Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:35:04.6583789Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:35:04.6589382Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:35:04.6600486Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:35:04.6605816Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-04-25T04:35:04.6617558Z 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-04-25T04:35:04.6624962Z 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-04-25T04:35:04.6634941Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:35:04.6638066Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:35:04.6644311Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:35:04.6650400Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:35:04.6655786Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:04.6660777Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:04.6674570Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:04.6680845Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:04.6704128Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:04.6709316Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6712338Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6720592Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6726899Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6732789Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6749720Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6756128Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6762619Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:35:04.6768384Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6771204Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6786202Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6792484Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6804182Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6813898Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6819855Z copying torch\include\ATen\native\mps\operations\Indexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6825620Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:35:04.6831719Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6834924Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6840689Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6846835Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6858164Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6864200Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:35:04.6869550Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6872489Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6878551Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6884345Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6901745Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6907511Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6913774Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6929591Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6935477Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:35:04.6940844Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6943883Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6949900Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6956020Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6962441Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6974572Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6980866Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6986770Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6992935Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.6999163Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7009372Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7015279Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7021490Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7028105Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7042884Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7048953Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7054631Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:04.7059798Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:35:04.7062577Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:35:04.7067645Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:35:04.7070537Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:35:04.7076591Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:35:04.7082283Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-04-25T04:35:04.7085167Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-04-25T04:35:04.7090519Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-04-25T04:35:04.7093721Z 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-04-25T04:35:04.7104781Z 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-04-25T04:35:04.7110863Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-04-25T04:35:04.7113771Z 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-04-25T04:35:04.7120838Z 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-04-25T04:35:04.7127634Z 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-04-25T04:35:04.7145819Z 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-04-25T04:35:04.7153041Z 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-04-25T04:35:04.7158503Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-04-25T04:35:04.7161674Z 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-04-25T04:35:04.7173637Z 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-04-25T04:35:04.7180139Z 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-04-25T04:35:04.7190284Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-04-25T04:35:04.7193195Z 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-04-25T04:35:04.7199575Z 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-04-25T04:35:04.7205740Z 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-04-25T04:35:04.7212406Z 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-04-25T04:35:04.7223216Z 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-04-25T04:35:04.7230395Z 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-04-25T04:35:04.7236925Z 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-04-25T04:35:04.7243386Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-04-25T04:35:04.7246943Z 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-04-25T04:35:04.7253313Z 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-04-25T04:35:04.7260126Z 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-04-25T04:35:04.7271497Z 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-04-25T04:35:04.7283599Z 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-04-25T04:35:04.7291209Z 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-04-25T04:35:04.7297533Z 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-04-25T04:35:04.7302599Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-04-25T04:35:04.7305603Z 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-04-25T04:35:04.7318889Z 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-04-25T04:35:04.7324699Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-04-25T04:35:04.7327872Z 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-04-25T04:35:04.7333144Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-04-25T04:35:04.7342219Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-04-25T04:35:04.7351401Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-04-25T04:35:04.7354679Z 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-04-25T04:35:04.7360473Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-04-25T04:35:04.7363385Z 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-04-25T04:35:04.7368645Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:35:04.7371480Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:35:04.7377529Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:35:04.7388541Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:35:04.7393828Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7396827Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7403103Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7409333Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7415741Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7427381Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7434342Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7446449Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7452871Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7459265Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7465493Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7476477Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7482865Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7489464Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7495485Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7506155Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7512350Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7518804Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7525232Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7536465Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7543646Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7555407Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7561913Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7573409Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7579600Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7585906Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7592154Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7602977Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7610852Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7617660Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7630091Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7640671Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7646954Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7653707Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7660609Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7667125Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7673580Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7680130Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7691267Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7697750Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7704561Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7711059Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7717633Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7728395Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7735531Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7742158Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7749061Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7760087Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7766753Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7781894Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7788669Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7799594Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7806195Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7812841Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7819458Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7826687Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7833547Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7840206Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7847047Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7857930Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7869888Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7876631Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7883909Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7895502Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7903026Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7909668Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7916573Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7929551Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7936094Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7942864Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7950248Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7957591Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7969336Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7976033Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7982648Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.7994772Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8001813Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8008512Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8015499Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8026525Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8033510Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8040874Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8047770Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8058389Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8065000Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8071675Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8078046Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8084525Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8091494Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8099099Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8106266Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8117967Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8125125Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8132803Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8139635Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8146988Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8158539Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8165113Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8171579Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8183304Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8189679Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8196779Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8202978Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8209800Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8216124Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8222534Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8228903Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8235494Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8241838Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8248393Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8254860Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8267628Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8274312Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8280771Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8287171Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8293942Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8300537Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8307540Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8320860Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8327302Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8333780Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8340452Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8347211Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8353774Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8360719Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8367275Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8373914Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8412896Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8419437Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8426163Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8432798Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8439932Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8446769Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8453507Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8460171Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8470180Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8476712Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8483450Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8490005Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8505288Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8511899Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8518598Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8524980Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8531942Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8538826Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8545229Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8551828Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8563597Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8576435Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8583304Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8589717Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8601241Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8607846Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8614844Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8621818Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8632921Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8664219Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8670739Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8676951Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8683377Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8690040Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8696525Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8702821Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8716936Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8724665Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8731528Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8738599Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8794996Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8802817Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8810554Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8816945Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8824489Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8831127Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8837925Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8844568Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8855952Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8865661Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8878573Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8885322Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8896501Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8903088Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8909661Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8916152Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8927696Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8934409Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8940850Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8947533Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8954191Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8968959Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8975116Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8981814Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8993102Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.8999698Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9006055Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9012376Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9019185Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9025399Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9031617Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9037924Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9045205Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9051764Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9058296Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9064815Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9075746Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9082307Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9088886Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9096146Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9107160Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9114025Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9120661Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9127383Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9138320Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9144759Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9150875Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9157675Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9164001Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9170311Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9176462Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9182728Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9193131Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9199565Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9205967Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9212201Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9222855Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9229327Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9235909Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9242204Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9254777Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9266318Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9272477Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9279117Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9289965Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9296097Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9302573Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9308832Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9321842Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9328236Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9335251Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9341897Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9357093Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9363375Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9369924Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9376591Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9387891Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9410703Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9417037Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9423373Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9429886Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9436292Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9442811Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9449450Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9460691Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9467593Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9474503Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9481027Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9497086Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9503395Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9510165Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9516684Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9533397Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9540109Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9548274Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9554816Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9561420Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9568345Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9574952Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9581366Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9592416Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9599209Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9606057Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9613260Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9620457Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9627418Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9634053Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9640802Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9647845Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9676773Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9677872Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9678663Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9683016Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9689401Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9695916Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9702293Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9713647Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9720825Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9727434Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9733952Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9740055Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9746335Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9752670Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9758989Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9765979Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9772226Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9778798Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9785036Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9802318Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9808839Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9815203Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9821677Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9828160Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9835384Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9841696Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9848150Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9866878Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9873182Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9879780Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9886107Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9897096Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9904240Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9910722Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9917924Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9929893Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9936503Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9953146Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9959907Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9974822Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9981372Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9988598Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:04.9995367Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0002113Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0009279Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0016552Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0022978Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0034030Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0040668Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0047030Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0053815Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0064866Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0071426Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0077796Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0084185Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0090634Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0097166Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0103652Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0110631Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0118761Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0124768Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0131720Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0138173Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0149382Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0155936Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0162937Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0169714Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0180641Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0187183Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0193264Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0200220Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0210571Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0216756Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0223420Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0230238Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0241008Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0247347Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0254161Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0260805Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0272150Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0278694Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0285549Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0292071Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0298220Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0304711Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0311417Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0318015Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0332877Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0339466Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0345947Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0352730Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0359829Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0366697Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0373432Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0380030Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0391000Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0397888Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0404363Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0411546Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0417998Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0424719Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0431456Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0438628Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0450150Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0456724Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0463405Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0470030Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0477860Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0498820Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0499724Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0500594Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0512465Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0519658Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0534037Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0541047Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0548284Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0554239Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0560886Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0567511Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0573980Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0580597Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0587170Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0593685Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0604832Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0611433Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0617678Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0624253Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0630800Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0637527Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0672649Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0673561Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0674578Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0675362Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0678694Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0685331Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0692139Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0717361Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0724078Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0730825Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0741808Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0748401Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0755212Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0762030Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0768967Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0775553Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0782545Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0789155Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0796145Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0802875Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0809866Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0816137Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0827679Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0834141Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0840818Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0847371Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0858398Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0864998Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0871615Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0878366Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0891415Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0898705Z 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-04-25T04:35:05.0905312Z 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-04-25T04:35:05.0912091Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0922690Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0929351Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0936177Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0943481Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0950403Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0957137Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0963867Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0970544Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0986402Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.0993855Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1000748Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1007475Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1014290Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1021067Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1027623Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1034903Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1048241Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1055072Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1061837Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1075383Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1086859Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1090533Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1097819Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1103981Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1115468Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1122266Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1128910Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1135542Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1142476Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1149389Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1156009Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1162939Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1169472Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1176212Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1182733Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1189363Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1203627Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1210616Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1217102Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1223615Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1235898Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1242483Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1248943Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1255255Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1261878Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1268434Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1275236Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1281875Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1298547Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1305180Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1311631Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1318031Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1333295Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1340090Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1346551Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1353342Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1366764Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1373333Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1379983Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1386918Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1397645Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1404296Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1411656Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1418452Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1425119Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1431842Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1438576Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1445438Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1457132Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1463969Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1470886Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1478456Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1492619Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1499313Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1506145Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1512875Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1519599Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1526195Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1532766Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1539759Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1550850Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1557833Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1564667Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1571272Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1578065Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1584523Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1591144Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1597505Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1608101Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1615046Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1621535Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1628172Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1642241Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1649176Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1655686Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1662098Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1668667Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1675996Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1682674Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1689275Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1702117Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1708674Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1715401Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1722078Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1728473Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1736662Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1743505Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1750261Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1762289Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1768763Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1775551Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1781909Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1788067Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1794481Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1801022Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1807373Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1822898Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1829294Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1835471Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1841903Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1848902Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1855224Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1861890Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1868464Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1879304Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1885737Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1892885Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1899156Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1905628Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1912352Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1919250Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1925594Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1939393Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1945824Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1952363Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1958894Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1969984Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1976698Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1982898Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.1989295Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2000278Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2006630Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2012863Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2019230Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2033661Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2040333Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2046888Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2053244Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2059632Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2065967Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2072330Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2078930Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2093518Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2100067Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2106871Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2114039Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2120668Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2135795Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2142192Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2148843Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2160989Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2167718Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2175764Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2183404Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2190808Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2198478Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2205516Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2212563Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2223518Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2229993Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2236522Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2242509Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2249036Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2255809Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2262103Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2268494Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2275201Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2281442Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2287735Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2293977Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2304671Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2311442Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2318334Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2324786Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2335780Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2342531Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2348965Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2355205Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2361526Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2367954Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2374224Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2379932Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2390517Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2397360Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2407907Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2415963Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2422559Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2429132Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2435865Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2442135Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2452621Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2458724Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2464974Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2471420Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2482391Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2489116Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2496178Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2502810Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2509251Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2516226Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2522781Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2529269Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2535869Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2542468Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2549151Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2555880Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2567229Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2573810Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2580331Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2586469Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2597295Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2604143Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2610490Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2617073Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2623645Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2631404Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2638654Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2652362Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2658885Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2684695Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2690907Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2697137Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2703476Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2709866Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2716381Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2723381Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2729900Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2736468Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2742712Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2749141Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2756460Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2761835Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2767956Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2774613Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2780860Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2787074Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2793134Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2799618Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2805524Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2811652Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2818144Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2824181Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2834978Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2841287Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2847569Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2853933Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2860296Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2866673Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2873246Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2879679Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2890469Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2896800Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2903473Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2909898Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2916160Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2922349Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2928594Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2935292Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2942293Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2949250Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2956065Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2962622Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2975264Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2981678Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2988309Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.2995128Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3001663Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3008432Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3014961Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3021540Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3028054Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3035252Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3041865Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3048449Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3055032Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3061586Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3068661Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3075353Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3081884Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3088686Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3095117Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3101544Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3108276Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3114804Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3121321Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3128137Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3134919Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3141892Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3148872Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3155669Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3162271Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3168979Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3175399Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3181822Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3188525Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3195029Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3201663Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3208222Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3221284Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3227666Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3234071Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3240520Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3247007Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3253573Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3259982Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3266257Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3272923Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3279450Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3285949Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3292726Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3299196Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3305658Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3311951Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3318408Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3324904Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3331825Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3338337Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3345340Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3352013Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3358767Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3365768Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3372373Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3379047Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3386177Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3392704Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3399659Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3406366Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3413471Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3420010Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3426717Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3433797Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3440705Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3447170Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3453664Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3460270Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3466759Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3472934Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3480015Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3486337Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3492767Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3499224Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3505319Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3511561Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3518151Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3524878Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3531579Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3538452Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3545182Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3552570Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3559020Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3566077Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3573005Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3580010Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3586716Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3593508Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3600322Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3606649Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3613394Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3620356Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3627578Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3634865Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3641731Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3648651Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3655601Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3662621Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3669771Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3676191Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3682798Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3689189Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3695425Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3701800Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3708773Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3715374Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3721741Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3728363Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3734763Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3740989Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3747022Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3753262Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3759850Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3765910Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3772481Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3778882Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3785643Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3791911Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3798020Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3804395Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3810473Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3816509Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3822954Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3829204Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3835582Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3841806Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3848574Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3854976Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3861173Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3893872Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3900112Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3906427Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3912976Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3919315Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3925620Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3931726Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3938725Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3945126Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3951378Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3957737Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3964164Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3970404Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3976542Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3982725Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3988800Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.3994989Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4000864Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4007079Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4013450Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4020106Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4026164Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4032467Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4038820Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4045041Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4051662Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4058177Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4065026Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4073647Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4080867Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4087514Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4094254Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4101319Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4107959Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4114754Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4121441Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4128363Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4135458Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4142893Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4160056Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4167337Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4174235Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4181183Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4187944Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4195356Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4202048Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4209108Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4215769Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4222392Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4229013Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4236404Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4243130Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4249781Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4256337Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4263278Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4269920Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4276900Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4283391Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4289810Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4296543Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4303139Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4309806Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4316542Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4322949Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4329382Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4335704Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4342071Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4348460Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4355330Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4362143Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4368786Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4375423Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4382136Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4389004Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4395905Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4402526Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4409130Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4415590Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4422064Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4448161Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4456225Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4462669Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4469322Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4476431Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4483365Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4490726Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4497474Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4504323Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4511660Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4518537Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4525105Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4531830Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4538819Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4545877Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4552443Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4559215Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4566511Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4573530Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4580387Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4587167Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4594015Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4600496Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4607363Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4614103Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4620528Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4626977Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4634650Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4642415Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4649466Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4656516Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4663806Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4671577Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4679455Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4686938Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4694004Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4700641Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4707147Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4713627Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4720161Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4726806Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4733805Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4740215Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4746943Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4753277Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4759759Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4766086Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4772426Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4779375Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4786327Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4792818Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4799614Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4805897Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4811925Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4818124Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4824778Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4830740Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4837165Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4843260Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4849495Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4855836Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4862600Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4868898Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4875956Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4882291Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4888878Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4895343Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4901936Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4908503Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4915249Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4922041Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4928075Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4934649Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4941078Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4948182Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4955425Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4961843Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4968684Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4975503Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4981827Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4988856Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.4995759Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5002110Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5008484Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5014993Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5021460Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5028456Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5037049Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5045507Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5052681Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5059838Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5066421Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5073482Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5080900Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5087821Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5094554Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5101898Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5108660Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5115503Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5122785Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5129412Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5136552Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5148130Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5151901Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5159876Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5166527Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5173343Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5180248Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5186966Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5193890Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5200874Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5207890Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5214438Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5220927Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5228842Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5234164Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5240797Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5247214Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5253641Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5259875Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5267087Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5273660Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5280134Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5286812Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5293283Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5299695Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5306197Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5312892Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5319604Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5325924Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5332288Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5339113Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5345351Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5351984Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5358597Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5365157Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5372272Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5378676Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5385020Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5391738Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5398078Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5404474Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5410816Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5417516Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5423866Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5430337Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5436834Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5443306Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5449930Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5456508Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5462661Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5469452Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5476387Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5483039Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5489312Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5497296Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5503956Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5510687Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5517220Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5536782Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5537772Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5538494Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5543594Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5550125Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5556695Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5563088Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5569313Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5586340Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5593321Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5599963Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5607003Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5613587Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5620324Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5627083Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5634025Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5641532Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5648542Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5655112Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5661680Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5667652Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5674275Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5680926Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5687378Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5693841Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5700660Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5707374Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5713760Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5720400Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5727183Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5733983Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5740553Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5747357Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5753993Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5761109Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5767590Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5774465Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5781114Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5787835Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5794604Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5801203Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5807951Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5814868Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5821815Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5828746Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5835718Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5842396Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5850502Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5856540Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5864011Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5870738Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5877603Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5884267Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5891006Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5897779Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5904583Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5911457Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5918214Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5925052Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5931574Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5938285Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5945003Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5951546Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5958586Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5965681Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5972714Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5979508Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5986210Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.5993262Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6000294Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6007819Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6014557Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6021165Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6028184Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6034760Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6041703Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6048325Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6055261Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6061794Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6068038Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6074182Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6080288Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6086727Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6093103Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6099897Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6106808Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6112949Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6119401Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6125948Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6132336Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6138817Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6145286Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6152228Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6159268Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6166426Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6183860Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6190526Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6216109Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6222155Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6228742Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6235197Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6241510Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6247936Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6254253Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6261194Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6267566Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6273877Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6280511Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6286961Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6294041Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6300587Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6307042Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6313505Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6319836Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6326513Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6333322Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6339624Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6346135Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6352900Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6359376Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6366082Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6372685Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6379104Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6385937Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6392480Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6399147Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6405914Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6412590Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6420056Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6426437Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6433481Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6440277Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6447491Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6454466Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6461359Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6468100Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6474948Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6481334Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6487994Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6494807Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6501653Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6508403Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6515838Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6522331Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6529165Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6536028Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6543777Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6550664Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6557582Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6564239Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6575264Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6579610Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6586619Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6593192Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6599973Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6606417Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6612804Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6619730Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6626139Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6632577Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6638753Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6645944Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6652492Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6659287Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6665864Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6672246Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6678657Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6685073Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6691926Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6698766Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6706122Z 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-04-25T04:35:05.6712865Z 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-04-25T04:35:05.6719803Z 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-04-25T04:35:05.6727002Z 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-04-25T04:35:05.6733954Z 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-04-25T04:35:05.6740931Z 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-04-25T04:35:05.6747947Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6754788Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6762085Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6768663Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6775383Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6782219Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6789030Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6796163Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6803456Z 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-04-25T04:35:05.6810500Z 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-04-25T04:35:05.6817405Z 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-04-25T04:35:05.6824733Z 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-04-25T04:35:05.6831509Z 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-04-25T04:35:05.6838486Z 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-04-25T04:35:05.6845194Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6852022Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6859203Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6884841Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6891766Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6898519Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6905949Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6913015Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6920175Z 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-04-25T04:35:05.6926616Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6933438Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6940767Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6947726Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6954504Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6962382Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6968828Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6976055Z 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-04-25T04:35:05.6983092Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6990519Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.6997258Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7004116Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7011009Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7018983Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7025373Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7032438Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7039449Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7121631Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7122853Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7123732Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7124584Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7125675Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7126697Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7127580Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7128441Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7129383Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7130353Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7131255Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7132045Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7132944Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7137229Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7143923Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7150989Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7157884Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7164924Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7171920Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7178628Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7185606Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7192809Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7199471Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7206054Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7212628Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7219131Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7225862Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7232369Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7240082Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7246393Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7252918Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7259227Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7265839Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7272196Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7278737Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7285431Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7291657Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7298401Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7304541Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7311008Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7317587Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7324512Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7330851Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7337708Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7344525Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7350897Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7357450Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7363959Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7370197Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7376896Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7383378Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7389872Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7396585Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7403473Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7409860Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7416857Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7423441Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7430609Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7437105Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7443488Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7450957Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7457555Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7464116Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7470526Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7477100Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7484001Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7490729Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7497381Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7504079Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7510916Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7517572Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7524264Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7531296Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7538070Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7544588Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7551230Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7557996Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7564913Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7571383Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7578348Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7585543Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7592482Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7599090Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7605750Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7613392Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7621277Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7628662Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7636682Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7643219Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7650634Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7658643Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7665872Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7673375Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7680410Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7687251Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7694216Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7701206Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7707974Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7714659Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7721022Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7727796Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7734354Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7740980Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7747447Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7754129Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7760588Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7766883Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7773393Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7780066Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7786532Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7792603Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7799302Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7806285Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7812612Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7819080Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7825937Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7832504Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7839117Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7845731Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7852392Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7859015Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7866038Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7872590Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7879190Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7886138Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7892891Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7899491Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7906250Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7912790Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7919513Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7925774Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7932516Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7938901Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7945696Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7951957Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7958932Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7986145Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7992672Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.7999716Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8006112Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8012770Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8019585Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8026089Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8032890Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8039837Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8046283Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8052807Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8059676Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8066573Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8073589Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8080378Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8087754Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8101343Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8102179Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8109341Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8116322Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8123057Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8129627Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8136336Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8142831Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8149713Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8156289Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8162967Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8169320Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8175683Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8182729Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8188956Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8195121Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8201659Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8207891Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8214497Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8221024Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8239153Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8245569Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8251766Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8257943Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8264528Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8271000Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8277678Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8284207Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8290643Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8297059Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8303504Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8310288Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8316461Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8322556Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8329010Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8336495Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8342683Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8349420Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8356313Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8363123Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8369961Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8376624Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8383658Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8390317Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8397057Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8404083Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8411113Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8417781Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8424568Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8431155Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8438460Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8445397Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8452174Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8458911Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8465622Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8472797Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8480319Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8487635Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8494380Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8501252Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8508124Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8515102Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8522314Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8529094Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8535796Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8542463Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8549038Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8555903Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8562359Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8617053Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8623727Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8630557Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8637461Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8644333Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8651098Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8657998Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8665072Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8674764Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8680841Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8688444Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8695423Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8702457Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8709459Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8716477Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8723134Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8729989Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8736900Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8744141Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8750960Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8757523Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8764210Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8770763Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8777448Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8783950Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8791165Z 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-04-25T04:35:05.8797945Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8804829Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8811337Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8817666Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8824748Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8831566Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8838279Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8845260Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8852104Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8859303Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8865612Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8872369Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8879457Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8886155Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8892724Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8899233Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8905965Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8912383Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8919205Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8925786Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8932024Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8938632Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8945147Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8951388Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8957841Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8964299Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8971483Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8978345Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8985068Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8991813Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.8999274Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9006045Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9012882Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9020582Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9026923Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9033541Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9040367Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9047247Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9054542Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9061000Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9067320Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9074302Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9081262Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9088545Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9095294Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9102144Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9108852Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9115532Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9122062Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9128884Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9135949Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9142515Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9149141Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9155937Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9162505Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9169050Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9176674Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9183767Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9190504Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9197569Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9204015Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9210575Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9217284Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9223792Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9230073Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9236911Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9243731Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9250523Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9257455Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9264362Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9272143Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9278608Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9285228Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9292074Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9298580Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9305390Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9311695Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9318361Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9324990Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9331558Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9338249Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9344775Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9351588Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9357878Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9364407Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9370941Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9377358Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9383704Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9390100Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9396780Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9403231Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9409636Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9415979Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9422768Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9429203Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9436108Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9442904Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9449669Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9456491Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9463404Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9470058Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9476736Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9483357Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9490387Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9497746Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9504711Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9511502Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9518253Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9525428Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9532504Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9539265Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9546040Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9552805Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9559642Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9566460Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9573517Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9580603Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9587453Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9594296Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9601285Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9608109Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9615139Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9622242Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9629149Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9636950Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9643840Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9650424Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9657219Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9664962Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9672126Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9679381Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9685995Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9693530Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9699688Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9706405Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9713349Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9720538Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9727540Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9734035Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9740334Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9746558Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9754155Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9761061Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9767706Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:05.9774384Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0190629Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0197856Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0204593Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0211176Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0219104Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0226375Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0234423Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0242795Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0251004Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0258145Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0264946Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0271892Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0279644Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0314621Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0322250Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0329814Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0337074Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0345434Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0352544Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0360104Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0367582Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0374567Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0381899Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0389000Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0397406Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0404643Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0411594Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0419143Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0425831Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0433000Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0439835Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0446453Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0454284Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0461279Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0472966Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0479785Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0487170Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0493980Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0500658Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0507733Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0515632Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0522478Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0529297Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0536029Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0542735Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0549705Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0556591Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0563445Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0570302Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0577084Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0584097Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0590914Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0597951Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0605905Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0613643Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0621141Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0627776Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0634805Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0642656Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0650013Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0657021Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0664257Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0671009Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0678019Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0685448Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0692266Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0699179Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0706397Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0728224Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0734702Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0741952Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0748605Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0755450Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0762096Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0768950Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0776827Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0783722Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0791131Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0797358Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0803858Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0810494Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0817170Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0823787Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0830646Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0837407Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0844331Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0850924Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0857687Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0864308Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0870954Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0877683Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0884617Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0891209Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0898829Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0905352Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0912243Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0941714Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0948929Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0956081Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0963390Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0970249Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0976914Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0983508Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0989744Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.0996739Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1003489Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1010507Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1017513Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1024247Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1031020Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1037888Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1044666Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1051268Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1058795Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1065427Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1074731Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1080917Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1087161Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1094059Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1101043Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1107975Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1115622Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1122164Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1128493Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1135153Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1141662Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1147867Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1154699Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1161013Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1167458Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1173623Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1180317Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1187488Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1194776Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1201752Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1208933Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1215788Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1222658Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1229725Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1236243Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1242939Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1249480Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1256203Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1262842Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1269346Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1276262Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1282726Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1289555Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1295991Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1302406Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1309070Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1315514Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1322023Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1328365Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1334485Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1340934Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1347860Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1354588Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1360979Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1367609Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1374309Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1380998Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1387567Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1394158Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1401203Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1407988Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1414925Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1421781Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1428389Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1435087Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1441802Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1448438Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1455103Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1478202Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1485020Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1491799Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1498327Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1505212Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1512051Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1518720Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1525424Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1532255Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1538914Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1545700Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1552354Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1559068Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1565586Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1572248Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1578820Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1585967Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1592419Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1599185Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1605784Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1612767Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1619309Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1625925Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1632754Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1639530Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1646440Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1653291Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1660117Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1666928Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1674032Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1681225Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1688185Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1696060Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1703349Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1710897Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1718017Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1725332Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1732051Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1738487Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1744923Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1752116Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1758783Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1765728Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1772329Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1778845Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1784980Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1791676Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1807472Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1808642Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1812044Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1818745Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1825264Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1831561Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1838130Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1844710Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1851410Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1858132Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1864605Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1870957Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1877503Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1884158Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1891109Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1898181Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1905257Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1913386Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1967279Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1975110Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1981961Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1989045Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.1995237Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2001809Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2008494Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2015185Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2021422Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2028466Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2034892Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2041724Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2048188Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2054576Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2061860Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2068174Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2074739Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2081229Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2105229Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2111616Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2118188Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2124353Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2131135Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2137450Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2143836Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2150401Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2157064Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2163704Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2170456Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2176969Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2183771Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2190270Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2196856Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2203684Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2209901Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2216373Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2222975Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2229578Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2236294Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2243071Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2249242Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2255710Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2262601Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2268820Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2275055Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2281663Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2287906Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2294267Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2301139Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2307514Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2314054Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2320777Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2327103Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2333723Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2339974Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2346662Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2353341Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2360258Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2366656Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2373201Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2379689Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2386239Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2392677Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2399513Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2406426Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2413053Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2419497Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2426616Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2433764Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2440478Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2446914Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2453586Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2460526Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2467378Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2474175Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2480591Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2486975Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2493564Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2499945Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2506652Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2513210Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2519838Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2526205Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2532984Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2539927Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2546576Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2552915Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2560770Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2567352Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2574153Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2580940Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2587523Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2594658Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2601096Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2607869Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2614623Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2621177Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2627819Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2634572Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2641051Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2647745Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2654637Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2661131Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2667449Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2674569Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2681677Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2689599Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2697167Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2704956Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2710954Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2717696Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2724321Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2730559Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2737553Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2744249Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2750940Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2757513Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2764065Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2770727Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2777484Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2784111Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2790741Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2797256Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2803591Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2809830Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2816815Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2824040Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2830561Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2837522Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2844011Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2897695Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2904158Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2910645Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2918238Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2924597Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2931171Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2937973Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2944684Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2951268Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2957964Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2964803Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2971707Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2978373Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2984946Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2991450Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.2998169Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3004717Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3011265Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3017871Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3024540Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3031068Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3037696Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3046530Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3052595Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3059669Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3066358Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3073157Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3080079Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3086961Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3093699Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3100391Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3107500Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3115011Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3121684Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3128169Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3134869Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3141705Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3147998Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3154389Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3161048Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3167784Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3174487Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3181092Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3187824Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3194784Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3202532Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3208920Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3215904Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3222354Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3229247Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3235699Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3242290Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3249092Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3255386Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3262130Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3268899Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3275406Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3281692Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3288114Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3294532Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3300945Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3307100Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3313637Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3320217Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3326740Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3333384Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3339660Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3346177Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3352675Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3359190Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3365975Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3372593Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3379046Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3385428Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3392453Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3399107Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3405579Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3412364Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3418800Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3425118Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3431583Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3437892Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3444089Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3451060Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3457604Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3464453Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3470755Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3477522Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3484054Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3490690Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3497472Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3503981Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3510882Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3518465Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3524250Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3531297Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3537810Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3544755Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3552240Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3558884Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3565292Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3572117Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3578421Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3585215Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3592314Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3599146Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3606436Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3613374Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3620177Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3626994Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3634643Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3640967Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3647800Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3654212Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3660741Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3668051Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3674795Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3681367Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3688233Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3695023Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3701998Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3709722Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3717177Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3724308Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3731462Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3738621Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3745173Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3751876Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3758339Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3764876Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3771758Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3778192Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3784906Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3791610Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3798455Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3805656Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3812358Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3819015Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3825496Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3832577Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3839293Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3846056Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3852557Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3859713Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3891874Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3898518Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3905078Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3911601Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3918628Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3924711Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3931390Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3938176Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3944983Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3952099Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3958791Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3965871Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3972178Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3978783Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3985342Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3992026Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.3998872Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4005203Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4040273Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4047645Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4054404Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4061138Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4067993Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4075270Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4082093Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4088848Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4095559Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4102869Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4109653Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4116459Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4123177Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4130140Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4136832Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4144371Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4151211Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4158191Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4165713Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4172626Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4179821Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4187147Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4194004Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4201370Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4208884Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4215773Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4223874Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4230372Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4237580Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4244394Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4251007Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4257752Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4264488Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4275409Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4282109Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4289104Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4296901Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4303712Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4310444Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4317328Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4323992Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4330698Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4337709Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4344772Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4351393Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4358270Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4364944Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4371987Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4378844Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4385888Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4392564Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4399392Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4406075Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4413210Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4420262Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4427219Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4433844Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4440976Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4447863Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4454779Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4461696Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4469024Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4476388Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4483200Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4490130Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4497285Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4504501Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4511187Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4518349Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4529785Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4536823Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4543666Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4550586Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4561836Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4569441Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4576575Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4583643Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4590336Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4597774Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4604996Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4611778Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4618797Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4625611Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4632608Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4639522Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4646324Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4653082Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4660193Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4667164Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4674099Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4680941Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4688520Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4695512Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4706981Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4713823Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4721271Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4728332Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4735278Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4742152Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4749257Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4756063Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4763093Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4770092Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4776803Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4784029Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4791209Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4798187Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4804949Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4811915Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4823971Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4830765Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4837569Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4850922Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4858032Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4864778Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4871462Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4878832Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4885469Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4892286Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4898941Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4905960Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4912666Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4919353Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4925901Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.4932828Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5088284Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5095332Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5102472Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5109975Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5120778Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5127844Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5134950Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5141756Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5148547Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5155575Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5162640Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5169216Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5180161Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5186498Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5193234Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5200813Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5212795Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5219830Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5226498Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5234135Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5241158Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5247790Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5254656Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5261393Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5272660Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5279401Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5285978Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5292596Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5299048Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5305744Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5312118Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5318955Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5325767Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5332553Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5339050Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5345605Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5357168Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5363623Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5370001Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5376523Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5383876Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5390415Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5397077Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5403982Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5410466Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5416814Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5423398Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5429871Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5445221Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5451744Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5458204Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5464324Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5470710Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5477658Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5557921Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5564830Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5571719Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5578671Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5585582Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5592398Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5606344Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5613164Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5619879Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5626783Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5633784Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5640572Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5647496Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5654213Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5661046Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5667947Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5674929Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5681774Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5692876Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5699366Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5705978Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5712566Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5720081Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5728244Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5735117Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5742086Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5753491Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5760224Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5767024Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5773988Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5781018Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5787742Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5794524Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5801460Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5813763Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5820836Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5827629Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5834654Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5846298Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5852853Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5859482Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5866674Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5873417Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5880183Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5886792Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5893564Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5900223Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5906549Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5913840Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5920355Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5931287Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5937851Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5944845Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5951488Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5958257Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5964850Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5971706Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5979528Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.5985677Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6015920Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6022650Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6030557Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6036969Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6043793Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6050496Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6058350Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6064462Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6071608Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6078639Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6085463Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6092683Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6098877Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6105293Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6112399Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6119073Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6126488Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6132619Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6138836Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6145468Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6151947Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6159157Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6166495Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6173828Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6180572Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6188554Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6194607Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6201175Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6207528Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6215105Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6222256Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6233818Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6240280Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6246810Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6253848Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6260398Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6267721Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6274822Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6281464Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6291864Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6298754Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6305163Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6311767Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6318928Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6325628Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6332226Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6338725Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6349671Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6356390Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6363036Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6370039Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6376302Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6382915Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6389431Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6396241Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6402665Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6409329Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6415889Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6422487Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6429588Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6436018Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6443088Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6449423Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6461712Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6468419Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6475455Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6481715Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6488621Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6495166Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6501959Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6508423Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6514919Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6521611Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6528651Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6535248Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6542546Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6549461Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6556304Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6563081Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6569965Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6577800Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6583862Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6590348Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6597417Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6604395Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6611200Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6617935Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6625001Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6631870Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6638699Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6645843Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6652455Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6659180Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6665936Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6672856Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6679545Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6686508Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6693227Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6700211Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6711151Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6719007Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6726633Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6733805Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6741283Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6748162Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6755164Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6762035Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6773813Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6780627Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6787360Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6794668Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6805589Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6812447Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6905367Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6912482Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6923274Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6930202Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6936339Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6942852Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6949540Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6956243Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6963083Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6969852Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6980493Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6987454Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.6993964Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7000796Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7007897Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7014626Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7021335Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7027945Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7034517Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7041049Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7047579Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7054262Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7061050Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7067102Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7073785Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7080769Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7089746Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7097152Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7103789Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7110222Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7121527Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7128173Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7134627Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7141415Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7147898Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7154649Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7161274Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7168772Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7175560Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7182204Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7188654Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7194944Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7201312Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7208013Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7214295Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7220761Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7227856Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7235382Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7242901Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7250240Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7258304Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7265517Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7272991Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7279762Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7290306Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7297539Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7304514Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7311173Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7318297Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7325168Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7331650Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7338411Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7345260Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7352429Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7359588Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7366362Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7373254Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7380066Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7387189Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7393946Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7405779Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7412722Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7419636Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7426929Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7438806Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7445455Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7452181Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7458713Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7465616Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7472255Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7479027Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7485692Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7496808Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7503707Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7510595Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7517918Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7525068Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7531961Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7539179Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7546162Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7552922Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7559868Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7566766Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7573602Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7584055Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7590681Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7597720Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7604677Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7611634Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7618437Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7625450Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7632147Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7643071Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7649876Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7656684Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7663296Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7670106Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7677018Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7683830Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7690689Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7698159Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7704655Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7711380Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7718567Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7726337Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7732984Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7740461Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7747521Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7758309Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7765115Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7772290Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7778606Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7788975Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7795400Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7802071Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7808373Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7814544Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7820841Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7827718Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7834174Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7840886Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7847540Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7854254Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7860806Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7867397Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7874501Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7881086Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7887529Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7897723Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7904614Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7910884Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7917453Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:06.7923897Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2882622Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2889824Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2897228Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2904044Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2911526Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2918716Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2934073Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2941241Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2948255Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2955305Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2962522Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2969670Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2976877Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2983921Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.2996498Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3003635Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3010822Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3017763Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3025113Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3032070Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3039209Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3046249Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3052970Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3059850Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3067072Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3073986Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3080805Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3087749Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3094764Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3101838Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3109130Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3116071Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3123011Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3129655Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3136366Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3143354Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3150300Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3157232Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3168764Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3175834Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3183274Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3190183Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3197109Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3203768Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3210303Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3217420Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3230175Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3237196Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3243932Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3251357Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3259178Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3266397Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3273326Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3280107Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3286926Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3293455Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3314250Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3315101Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3316105Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3320698Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3327270Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3334061Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3340710Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3347481Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3354429Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3361433Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3368144Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3374903Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3381338Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3418017Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3425250Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3431965Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3439504Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3446666Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3453314Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3460187Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3467691Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3474673Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3481903Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3489092Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3496104Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3503218Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3513776Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3520369Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3527789Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3534849Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3542156Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3548819Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3556019Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3563197Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3570140Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3577016Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3584845Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3591746Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3604093Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3611228Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3622489Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3629814Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3637042Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3643571Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3650767Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3657839Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3665201Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3671962Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3678776Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3686200Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3696745Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3704112Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3710911Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3717939Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3725361Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3732627Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3739619Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3746472Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3753653Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3760481Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3767312Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3773973Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3785232Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3791961Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3798945Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3805346Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3811985Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3818090Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3824646Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3831015Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3844646Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3851250Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3859133Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3866382Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3873780Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3881317Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3887809Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3894308Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3901087Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3907934Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3914609Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3921141Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3927693Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3934253Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3940681Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3947961Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3954953Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3961746Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3968752Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3975467Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3986425Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.3993111Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4000634Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4007572Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4017415Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4024371Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4031114Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4037819Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4048856Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4056064Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4062674Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4072998Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4079770Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4086399Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4093032Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4099800Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4106560Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4113210Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4120034Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4127023Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4133655Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4140097Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4146663Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4153663Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4165159Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4171628Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4178734Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4185595Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4192539Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4199394Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4206432Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4213591Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4220515Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4227612Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4234633Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4241475Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4249244Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4259453Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4274534Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4275335Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4280280Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4286574Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4293315Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4300435Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4307039Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4314231Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4320435Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4327055Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4333810Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4340340Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4346973Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4353982Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4364390Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4371108Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4377967Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4384976Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4395213Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4401940Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4409010Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4415517Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4427178Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4433949Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4440643Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4446682Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4453422Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4479112Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4485624Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4491863Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4498125Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4504462Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4510967Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4517589Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4524247Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4531089Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4538075Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4544103Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4554527Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4561136Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4567645Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4574540Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4582228Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4589146Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4596060Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4602834Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4613666Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4620882Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4627645Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4634520Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4641636Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4648363Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4655054Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4661760Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4668185Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4674939Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4681848Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4688667Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4699628Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4706272Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4712883Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4719748Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4733382Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4740208Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4747058Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4754675Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4761759Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4768975Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4775683Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4782390Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4789237Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4796206Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4802805Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4922094Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4928500Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4935685Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4943148Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4950065Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4960472Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4966969Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4973590Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4980349Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4987006Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.4993648Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5000725Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5007787Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5018388Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5025136Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5031936Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5038840Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5050011Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5057159Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5064780Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5071669Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5082062Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5088873Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5096181Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5103212Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5113600Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5120981Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5128052Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5134833Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5141854Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5149371Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5156428Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5163463Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5170353Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5177240Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5184551Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5191603Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5198573Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5205680Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5212835Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5220062Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5232071Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5239673Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5248010Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5255800Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5263663Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5270762Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5278108Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5285400Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5292447Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5299426Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5306620Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5313072Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5320367Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5327342Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5334129Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5340855Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5347781Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5354459Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5361079Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5367562Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5379458Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5386518Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5392906Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5399627Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5406335Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5412461Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5419038Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5425622Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5436886Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5443929Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5450502Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5457367Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5468188Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5475363Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5481793Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5488978Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5499062Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5506757Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5513494Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5530637Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5542171Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5548807Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5555772Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5562357Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5569348Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5576045Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5582790Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5589702Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5596444Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5603351Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5610365Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5617053Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5623774Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5630652Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5637881Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5644537Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5655583Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5662227Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5669079Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5676007Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5686185Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5693446Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5699910Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5706565Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5717495Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5723979Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5730516Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5737376Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5747798Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5754208Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5761574Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5769111Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5780328Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5787219Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5794210Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5801186Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5811715Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5818596Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5825409Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5832314Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5839046Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5845676Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5852548Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5859174Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5866329Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5873208Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5880299Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5886988Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5893745Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5900430Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5907246Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5914300Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5921165Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5928312Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5934904Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5941748Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5948405Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5955298Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5962341Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5969171Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5982647Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5989173Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.5996263Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6002864Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6009499Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6016683Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6023497Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6030050Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6041526Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6048269Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6055384Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6062292Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6069617Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6076564Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6083249Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6090077Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6097174Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6104025Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6110880Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6117798Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6124943Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6131749Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6138260Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6144923Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6152339Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6158755Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6165498Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6172507Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6179641Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6186474Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6193471Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6200323Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6207097Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6214447Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6221457Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6228290Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6235417Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6242193Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6248960Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6255717Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6263050Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6269606Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6276763Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6283613Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6290286Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6297117Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6304201Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6310755Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6317426Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6324143Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6330631Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6337134Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6343444Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6350051Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6356780Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6363219Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6370001Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6376795Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6383380Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6390063Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6401656Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6407844Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6414394Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6420910Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6427186Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6433974Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6440275Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6446887Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6453418Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6459898Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6466875Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6473259Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6484389Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6491039Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6497524Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6504448Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6515360Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6521646Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6527900Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6534424Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6540878Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6547470Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6554284Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6560786Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6572920Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6579055Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6585449Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6591727Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6641546Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6648188Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6654676Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6661721Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6668293Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6675075Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6681862Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6688848Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6695582Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6702190Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6708999Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6715583Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6722236Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6728686Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6735298Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6741788Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6756893Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6764300Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6771937Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6779343Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6786452Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6793323Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6800049Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6806870Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6813567Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6823885Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6830624Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6857931Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6864717Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6871279Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6877803Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6884559Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6895840Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6902431Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6909192Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6915907Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6922924Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6929547Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6937018Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6943997Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6955217Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6961946Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6968742Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.6975410Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8114675Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8121706Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8128681Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8135855Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8149227Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8156771Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8163839Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8171363Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8177692Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8184416Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8191349Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8198067Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8204808Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8211452Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8218246Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8225411Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8244941Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8251669Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8258575Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8265357Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8277068Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8284022Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8291010Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8297627Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8309254Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8315778Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8322304Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8329205Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8340450Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8347074Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8353843Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8360535Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8371269Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8377582Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8384091Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8390568Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8396990Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8403316Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8410072Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8416516Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8422992Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8429708Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8436468Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8443154Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8456528Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8463124Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8469683Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8476473Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8487066Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8493719Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8499997Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8506865Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8513519Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8519922Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8526441Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8532951Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8539525Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8546042Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8552547Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8559170Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8565703Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8571942Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8578475Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8584802Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8591792Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8598075Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8604266Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8611013Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8618178Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8625100Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8631786Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8638478Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8645256Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8652413Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8659677Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8666451Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8673499Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8680838Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8687672Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8694473Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8701438Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8708538Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8715758Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8722610Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8729694Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8736847Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8743837Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8750654Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8758066Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8766220Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8773552Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8780967Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8793131Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8800280Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8807479Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8814366Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8821222Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8828317Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8834953Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8841823Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8852591Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8859927Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8871735Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8878512Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8885215Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8892258Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8899205Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8906000Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8912708Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8919457Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8926168Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8933344Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8940031Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8946943Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.8953815Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9004275Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9011101Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9018145Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9025448Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9032618Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9039539Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9046333Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9053172Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9059768Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9073733Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9075567Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9082423Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9089078Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9095930Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9102689Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9109943Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9117001Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9127754Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9134596Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9140698Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9147311Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9153974Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9160393Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9167082Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9174106Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9180886Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9187410Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9194467Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9200846Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9207730Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9215283Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9221832Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9228895Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9243905Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9250827Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9257881Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9264668Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9275219Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9282975Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9289980Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9320064Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9320973Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9322065Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9323008Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9328549Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9339718Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9346528Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9354242Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9359980Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9366447Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9373194Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9379757Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9386272Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9393093Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9400752Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9406689Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9413267Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9419771Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9426429Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9433016Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9440042Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9447623Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9453949Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9460541Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9466938Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9473499Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9480270Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9487283Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9493801Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9500369Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9506890Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9513479Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9520152Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9526764Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9533321Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9540467Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9546949Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9553394Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9559866Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9566260Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9572511Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9578909Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9585131Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9591350Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9599032Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9605502Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9612155Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9619160Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9626712Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9633011Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9639955Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9646734Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9653119Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9660724Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9666359Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9673149Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9679951Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9686650Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9693166Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9700370Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9707267Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9714648Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9721418Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9728539Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9735503Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9742528Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9749377Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9756629Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9763641Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9770353Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9777444Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9785548Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9791926Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9799224Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9806814Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9813791Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9820844Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9828338Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9835548Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9842459Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9849307Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9855981Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9862947Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9886175Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9893014Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9899739Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9906460Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9913737Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9920713Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9927844Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9934962Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9941880Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9948839Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9955773Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9962928Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9970246Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9976939Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9983467Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9990040Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:07.9996976Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0003693Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0014368Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0020834Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0027471Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0034013Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0040497Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0062328Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0068674Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0076643Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0083552Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0089999Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0096534Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0103349Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0114478Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0121372Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0128176Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0134883Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0141827Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0148737Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0155664Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0162391Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0169097Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0175822Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0182592Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0189156Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0196084Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0202960Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0209707Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0216563Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0223157Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0229903Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0237040Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0243782Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0250856Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0257583Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0264134Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0271392Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0278629Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0285234Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0292675Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0299881Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0306754Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0313538Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0320353Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0327211Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0334086Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0341372Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0359060Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0365625Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0372290Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0379167Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0386484Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0393029Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0400217Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0406843Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0413753Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0420596Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0427835Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0435568Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0441639Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0448483Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0455258Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0462064Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0468954Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0476070Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0482829Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0490036Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0496649Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0503720Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0510774Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0517459Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0524282Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0531040Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0537814Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0544661Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0551453Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0558602Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0565363Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0584089Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0585162Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0586220Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0592974Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0600555Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0613986Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0616195Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0623486Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0630331Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0637239Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0644927Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0651048Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0657688Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0664149Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0670933Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0678409Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0684722Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0691783Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0699120Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0706562Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0712997Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0719913Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0726556Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0733778Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0740316Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0747150Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0753806Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0760714Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0769274Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0783534Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0784377Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0790897Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0798323Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0805073Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0811943Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0818935Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0825492Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0835223Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0843506Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0847615Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0855174Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0861006Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0867603Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0875014Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0882538Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0888175Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0894855Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0901886Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0908279Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0915443Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0922071Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0929437Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0935497Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0942015Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0948781Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0955505Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0962007Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0968379Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0974915Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0981812Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0988352Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.0994974Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1001353Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1007675Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1014446Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1021535Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1028175Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1035412Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1042742Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1048932Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1055607Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1062036Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1068936Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1076504Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1082550Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1089551Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1096297Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1103006Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1110173Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1116649Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1123214Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1129831Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1136444Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1143944Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1149712Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1156508Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1163156Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1169706Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1176467Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1183741Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1190004Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1196896Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1203462Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1210233Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1217417Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1224047Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1230811Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1237496Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1244044Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1251545Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1258372Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1265089Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1271809Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1279358Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1285757Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1292907Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1302470Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1308776Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1315148Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1321935Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1328516Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1335098Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1341697Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1348625Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1355792Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1362838Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1369831Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1376519Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1383454Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1390192Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1396954Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1403840Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1415166Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1421906Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1428535Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1435109Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1441752Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1448392Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1454913Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1461439Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1468027Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1474765Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1481392Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1488005Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1494693Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1501153Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1507474Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1514172Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1520783Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1527307Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1534028Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1541101Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1547540Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1553932Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1560377Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1566484Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1573110Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1579440Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1585738Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1592492Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1599466Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1606009Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1612817Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1619436Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1625808Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1632797Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1640615Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1647167Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1653919Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1660648Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1667280Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1692990Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1700259Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1707431Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1714224Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1721407Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1728509Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1735248Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1742021Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1749019Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1755910Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1762777Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1769955Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1776824Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1783649Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1790672Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1798093Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1805796Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1812639Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1819455Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1826334Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1833023Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1839726Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1846924Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1853436Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1860404Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1866843Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1873399Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1880011Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1886607Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1893488Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1899753Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1906750Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1913610Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1920505Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1927060Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1934086Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1940820Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1947407Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1954605Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1961414Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1967956Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1974738Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1981215Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1987667Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.1994261Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2001394Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2008243Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2014814Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2021609Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2028146Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2034692Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2041110Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2047305Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2053978Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2060551Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2067133Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2073718Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2080260Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2086857Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2093107Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2099525Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2105782Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2112322Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2119198Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2125573Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2131782Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2138362Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2144575Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2156267Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2162793Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2168920Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2175463Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2181835Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2188049Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2194347Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2201453Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2226298Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2232861Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2239706Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2246418Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2253083Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2259685Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2267338Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2279031Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2285609Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2292512Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2298822Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2305319Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2311866Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2318440Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2324660Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2331284Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2337822Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2349645Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2356204Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2362618Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2369774Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2376988Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2389289Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2397150Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2405245Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2412003Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2418478Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2426256Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2432919Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2439573Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2445774Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2452763Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2465271Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2471678Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2478462Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2485427Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2492161Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2498908Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2505671Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2512885Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2519355Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2525837Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2532356Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2538681Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2545313Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2551803Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2558318Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2568885Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2575529Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2581992Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2588540Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2595024Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2605958Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2612292Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2619015Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2625232Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2631832Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2638341Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2645113Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2651680Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2657974Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2664434Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2671216Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2677947Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2684333Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2690802Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2697168Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2703258Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2709733Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2716402Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2722584Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2729245Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2735639Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2741951Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2748284Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2754773Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2761764Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2773387Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2780109Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2787082Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2793825Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2801126Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2808516Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2815965Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2823425Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2830767Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2837948Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2844844Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2851873Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2858512Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2865285Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2871820Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2883610Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2891116Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2897687Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2904299Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2910938Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2917595Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2924054Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2930761Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2937386Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2944278Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2955581Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2962332Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2969135Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2975786Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2982578Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.2989191Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3002476Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3004816Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3011252Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3017886Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3024961Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3031625Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3038307Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3045670Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3052231Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3064047Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3070775Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3077721Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3084384Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3091491Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3098090Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3104861Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3111700Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3118611Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3125314Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3132029Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3138682Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3145554Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3152219Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3159191Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3165846Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3172462Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3178686Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3185050Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3191241Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3197679Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3204379Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3211384Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3217981Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3224380Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3235871Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3242499Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3249685Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3256272Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3262986Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3274232Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3281212Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3287955Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3294734Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3301544Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3313027Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3320804Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3327794Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3403559Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3410025Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3420678Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3427917Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3434612Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3441223Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3447666Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3458413Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3465093Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3472095Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3479852Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3486316Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3493442Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3499746Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3506429Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3513125Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3519877Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3530305Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3536861Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3543931Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3550475Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3557385Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3564074Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3571090Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3578095Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3599713Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3607943Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3618783Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3631316Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3638788Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3646904Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3653360Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3660133Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3667204Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3674960Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3681306Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3693241Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3704188Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3711204Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3717989Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3725585Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3732171Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3739065Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3745961Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3753585Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3759782Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3766612Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3781678Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3787845Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3795191Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3802075Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3808518Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3816811Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3852393Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3853211Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3853981Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3854888Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3855832Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3862068Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3870003Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3876541Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3883171Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3895488Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3902648Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3909733Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3916684Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3923285Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3934039Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3940829Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3948357Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3954783Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3961294Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3971861Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3978872Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3985522Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3992577Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.3999349Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4005984Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4012446Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4018989Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4026415Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4033253Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4039988Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4046884Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4053470Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4060156Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4067208Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4073924Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4080952Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4088046Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4096167Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4102615Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4109475Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4116259Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4123829Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4130115Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4137183Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4144031Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4151127Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4158226Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4164716Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4171466Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4182744Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4190011Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4196565Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4203421Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4210484Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4221397Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4228182Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4253194Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4260038Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4266885Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4274132Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4281250Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4288258Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4295295Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4302176Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4309106Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4316861Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4324466Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4331358Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4338284Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4352318Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4359245Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4366046Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4372717Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4379633Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4386364Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4393366Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4400265Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4407660Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4414361Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4421176Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4427964Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4435069Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4441788Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4448405Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4455277Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4462632Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4469676Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4476890Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4483899Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4495582Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4502806Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4509800Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4517261Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4524119Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4535529Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4542785Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4549970Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4557273Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4564171Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4571217Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4578273Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4585238Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4592495Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4600031Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4607438Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4614291Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4621872Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4629025Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4636049Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4643055Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4650200Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4657164Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4664856Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4672480Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4679681Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4686604Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4693605Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4701023Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4707895Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4719415Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4726389Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4733739Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4740649Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4747727Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4754704Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4762038Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4774148Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4780876Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4787677Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4794796Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4801657Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4808393Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4815087Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4821681Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4833282Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4840694Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4847401Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4854499Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4861106Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4872774Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4880019Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4887305Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4894747Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4902642Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4914264Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4921883Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4929052Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4935812Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4942348Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4949630Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4956624Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4963148Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4969825Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4976979Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4983621Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4990192Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.4996916Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5004039Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5011016Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5017428Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5024079Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5031059Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5037745Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5044196Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5061117Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5067830Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5074743Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5128086Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5135152Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5142606Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5149671Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5157409Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5169075Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5176109Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5182993Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5189769Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5197277Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5204310Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5212048Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5223308Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5230213Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5237358Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5244547Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5251451Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5262501Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5269297Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5276814Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5283850Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5290906Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5297960Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5304846Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5312196Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5319414Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5327158Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5335101Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5341993Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5350231Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5356938Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5363794Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5371857Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5377616Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5384556Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5391242Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5399065Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5405279Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5411588Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5418220Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5425157Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5432428Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5443504Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5450131Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5456840Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5463629Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5470566Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5478638Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5485453Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5492335Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5499090Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5505638Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5512789Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5519678Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5526699Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5533648Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5540741Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5601060Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5609993Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5619948Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5629549Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5656124Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5663099Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5670091Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5677455Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5685072Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5692356Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5699393Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5706491Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5714121Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5720921Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5727944Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5735202Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5741805Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5748985Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5756352Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5762959Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5776904Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5784727Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5792060Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5800104Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5808291Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5819937Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5827223Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5834197Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5841436Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5848447Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5855105Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5862205Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5869140Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5876223Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5882890Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5890177Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5896939Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5904328Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5911246Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5917964Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5928846Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5936101Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5942916Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5949920Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5957251Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5964175Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5971124Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5978041Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5985149Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.5992071Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6008340Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6015265Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6022221Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6029129Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6036269Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6047259Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6054365Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6061509Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6068129Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6075872Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6086954Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6094267Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6101421Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6108366Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6115265Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6122673Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6129747Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6136734Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6143818Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6150939Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6158129Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6165156Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6172394Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6179815Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6187079Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6193880Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6200762Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6207692Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6214952Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6221900Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6228922Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6235972Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6242784Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6249624Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6256430Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6263916Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6270851Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6277523Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6284611Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6291732Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6308413Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6315485Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6322421Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6330961Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6338311Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6344966Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6351839Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6359408Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6366089Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6432428Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6443228Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6450612Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6457566Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6464808Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6472018Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6479230Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6486276Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6493335Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6500505Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6508372Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6519650Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6526855Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6534013Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6541191Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6548406Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6555542Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6562733Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6570192Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6577423Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6584847Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6591974Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6599550Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6606680Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6614158Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6621221Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6633722Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6641514Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6648748Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6656321Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6663398Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6670529Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6678110Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6685116Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6692359Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6699521Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6707436Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6714899Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6721943Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6729087Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6736111Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6748455Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6755736Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6763073Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6770170Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6777707Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6785100Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6792416Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6799830Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6806880Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6814464Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6821558Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6829461Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6836610Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6843683Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6850492Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6857391Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6864274Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6885938Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6887112Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6887957Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6897264Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6904486Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6911261Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6919549Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6926524Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6933489Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6940440Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6947323Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6954170Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6961620Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6969235Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6976054Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6983351Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6990229Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.6997100Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7004161Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7010967Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7017804Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7025051Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7031831Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7038837Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7045677Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7054203Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7061057Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7067851Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7079365Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7086623Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7093651Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7100647Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7108136Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7118860Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7125731Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7132712Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7139111Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7146180Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7153269Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7160563Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7167240Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7174027Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7181193Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7193022Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7200250Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7207216Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7214569Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7221795Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7234420Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7241309Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7248321Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7255519Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7262238Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7279147Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7285885Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7292397Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7299308Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7306059Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7317274Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7323633Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7330222Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7337106Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7343808Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7354509Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7361261Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7367882Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7374510Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7381354Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7388212Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7395280Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7402068Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7408620Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7415327Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7427658Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7434324Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7440965Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7447465Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7454479Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7465531Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7472229Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7479576Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7486281Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7492637Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7499088Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7505341Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7511897Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7518569Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7525073Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7531760Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7538265Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7544912Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7551602Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7558153Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7564917Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7571457Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7578244Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7584848Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7591279Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7597632Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7604265Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7610767Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7617661Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7623914Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7651704Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7658456Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7664950Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7671505Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7677991Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7684813Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7692131Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7698867Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7706180Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7713124Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7719974Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7726612Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7733110Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7750703Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7757344Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7768497Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7775404Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7782230Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7789159Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7796074Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7802915Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7809581Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7816739Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7823199Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7829908Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7852381Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7853121Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7853982Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7859835Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7866247Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7872857Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7880317Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7887056Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7893542Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7899788Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7906515Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7912881Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7919666Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7926190Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7933216Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7944681Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7951231Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7958018Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7964867Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7971416Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7978392Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7985406Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7992340Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.7999102Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8005753Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8016566Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8023415Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8030145Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8037583Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8044720Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8060790Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8067194Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8073492Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8080256Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8087065Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8098902Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8106304Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8112496Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8119664Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8126399Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8137231Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8143898Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8150331Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8157307Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8163737Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8170444Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8177434Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8183833Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8190518Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8197466Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8204137Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8210391Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8216698Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8222941Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8230172Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8241913Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8248781Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8255690Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8262533Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8269226Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8281227Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8288325Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8294868Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8301496Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8308240Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8319412Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8326250Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8333424Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8340405Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8347337Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8354062Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8360680Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8367646Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8382003Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8388782Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8395055Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8401464Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8414220Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8421065Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8427566Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8434892Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8441624Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8448179Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8454756Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8461867Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8468472Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8474917Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8481846Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8488274Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8512843Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8524601Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8531545Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8537974Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8544619Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8551627Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8564578Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8571170Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8578428Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8584851Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8591443Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8598454Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8605273Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8612049Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8619237Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8626414Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8641306Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8647813Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8654200Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8660700Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8666994Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8674030Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8680790Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8687326Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8693961Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8700556Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8714742Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8721596Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8728785Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8735080Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8741152Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8753420Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8760208Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8766759Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8773720Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8780861Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8787292Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8793895Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8800807Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8807886Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8814874Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8821217Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8828464Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8835561Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8842218Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8850096Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8856687Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8863311Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8869833Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8876968Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8884079Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8890679Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8897246Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8904274Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8910851Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8917247Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8923825Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8930744Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8937385Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8943992Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8950341Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8960806Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8967444Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8974357Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8981058Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8987736Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.8998935Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9005496Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9012178Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9018506Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9025301Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9032029Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9038583Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9045235Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9052043Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9058506Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9068843Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9075833Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9082662Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9089283Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9095804Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9106386Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9112971Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9119832Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9126536Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9133202Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9144522Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9151455Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9158394Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9165007Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9172053Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9183516Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9190107Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9196957Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9203978Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9209983Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9216523Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9223229Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9229800Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9236673Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9243197Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9254767Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9261259Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9267967Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9274638Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9281593Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9292914Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9299795Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9306235Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9312890Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9319332Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9330234Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9336885Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9343664Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9350304Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9357250Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9363997Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9370498Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9377068Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9383606Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9390125Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9400378Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9406688Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9413676Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9420084Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9426653Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9442121Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9449419Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9456047Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9462477Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9473508Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9484190Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9491609Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9498407Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9505467Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9512144Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9523511Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9530026Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9536601Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9542945Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9549136Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9560289Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9586162Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9592896Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9599674Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9607628Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9613726Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9620383Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9626953Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9633655Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9640398Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9647416Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9653950Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9660602Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9667152Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9673463Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9681213Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9687498Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9694234Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9701445Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9707925Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9720445Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9741240Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9748229Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9754294Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9761098Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9772624Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9779427Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9786575Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9793478Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9800245Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9807217Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9814070Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9820906Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9827769Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9834760Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9846082Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9853766Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9860853Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9867574Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9874562Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9881338Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9887948Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9894139Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9901045Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9908141Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9919265Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9925919Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9932558Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9939372Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9947039Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9958087Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9964642Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9971319Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9978047Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9986000Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9992815Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:08.9999892Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0006699Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0014570Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0021907Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0033349Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0040216Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0047559Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0054357Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0061187Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0068584Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0075424Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0082399Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0089123Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0096593Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0103413Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0109811Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0117248Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0124066Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0130922Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0142029Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0148788Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0155871Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0162763Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0169490Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0176720Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0183222Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0189780Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0196911Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0203447Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0210083Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0216441Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0223039Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0230048Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0236643Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0243308Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0250075Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0257413Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0264226Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0270952Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0282493Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0289852Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0297214Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0306260Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0312765Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0324669Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0331623Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0338253Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0345718Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0352742Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0378742Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0379381Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0379810Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0385207Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0392140Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0403285Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0410093Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0417105Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0424463Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0431509Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0443152Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0449884Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0456575Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0463593Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0470902Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0478459Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0485272Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0492595Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0499809Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0506425Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0518436Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0525150Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0532021Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0538978Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0545900Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0556693Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0563643Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0570591Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0577492Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0584767Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0592239Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0599120Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0605820Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0612462Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0620341Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0630835Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0638178Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0645348Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0652062Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0659314Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0666286Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0673262Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0680289Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0687896Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0694688Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0701725Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0708555Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0715988Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0722836Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0729755Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0736546Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0743511Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0750529Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0757984Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0764673Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0775701Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0782512Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0789844Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0797014Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0803920Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0815394Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0822402Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0829582Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0836680Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0843956Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0850940Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0858308Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0865738Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0872884Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0880370Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0893993Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0900933Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0907744Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0914998Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0921953Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0928754Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0935823Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0944136Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0950043Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0960519Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0966535Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0973049Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0979932Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0986524Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.0993179Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1000402Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1007135Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1014047Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1021443Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1029399Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1041498Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1048529Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1055451Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1062374Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1069110Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1076406Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1083758Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1106700Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1113683Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1121402Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1128581Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1135496Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1142934Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1149835Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1157341Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1164913Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1171737Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1179063Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1186534Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1194297Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1201378Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1208417Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1215693Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1223004Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1229967Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1237042Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1244035Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1251217Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1258279Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1265502Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1276763Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1283086Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1289617Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1296805Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1303735Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1310775Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1317402Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1324187Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1331375Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1338321Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1349660Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1356599Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1363657Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1370947Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1377686Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1384339Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1391250Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1398227Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1404899Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1411562Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1418919Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1425968Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1433248Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1440554Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1447143Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1458615Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1465570Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1472073Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1478861Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1485127Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1491372Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1497816Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1519783Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1526814Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1533740Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1544319Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1550525Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1556860Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1562806Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1569508Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1576555Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1583313Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1590117Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1596954Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1603616Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1610309Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1616965Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1623734Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1630326Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1637159Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1651077Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1657380Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1663979Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1671080Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1678479Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1685556Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1692352Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1699210Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1705982Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1712681Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1719923Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1726895Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1733446Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1740288Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1746636Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1753658Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1760441Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1767070Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1773937Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1780730Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1787595Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1794514Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1801978Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1808581Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1815249Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1826928Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1834366Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1840819Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1847520Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1854788Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1865892Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1873128Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1880629Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1887553Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1894534Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1902113Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1909017Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1916006Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1922986Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1929827Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1936538Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1943703Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1950458Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1957198Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1963798Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1970478Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1977104Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1983812Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1990460Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.1997082Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2008394Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2014962Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2021235Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2027944Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2034104Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2048950Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2056027Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2062775Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2069456Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2076397Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2082978Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2090045Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2096746Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2103279Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2110237Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2116685Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2123419Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2129789Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2136622Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2144102Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2150863Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2158647Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2165541Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2172561Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2180122Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2187373Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2196019Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2203600Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2212559Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2220078Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2227971Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2235403Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2243111Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2250169Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2257560Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2264516Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2272119Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2279483Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2288874Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2295723Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2303053Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2310026Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2317336Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2324441Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2331159Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2338033Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2345026Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2352060Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2359310Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2366144Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2373699Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2380667Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2387193Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2393946Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2401009Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2411723Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2418506Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2425613Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2432576Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2439785Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2451231Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2457856Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2465031Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2472411Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2479186Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2510034Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2511148Z 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-04-25T04:35:09.2512272Z 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-04-25T04:35:09.2513787Z 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-04-25T04:35:09.2520333Z 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-04-25T04:35:09.2527952Z 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-04-25T04:35:09.2534858Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2542732Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2549603Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2556636Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2563847Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2571052Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2578196Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2584961Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2592065Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2599106Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2605688Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2612642Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2619632Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2626755Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2633512Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2640464Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2647458Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2654666Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2661915Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2669016Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2676123Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2682973Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2689819Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2696670Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2703123Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2721941Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2728908Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2735683Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2742481Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2753785Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2761078Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2767882Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2774428Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2781006Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2787704Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2794712Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2801600Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2808367Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2831559Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2838174Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2845071Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2852110Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2859260Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2865904Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2905259Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2906073Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2907018Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2908014Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2909378Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2916956Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2923752Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2930391Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2937139Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2943744Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2950295Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2957217Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2964082Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2970746Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2977099Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2983589Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2990611Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.2997434Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3003757Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3010490Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3017212Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3023753Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3030663Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3037518Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3044732Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3051341Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3057645Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3064178Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3071242Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3077675Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3088652Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3095463Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3102887Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3109768Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3116534Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3126736Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3134054Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3140941Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3147570Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3187860Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3188943Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3189918Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3190891Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3191751Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3192553Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3202597Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3210252Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3216995Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3223895Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3230642Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3238416Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3245341Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3252742Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3259538Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3266204Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3273418Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3283005Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3290424Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3297621Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3304884Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3311661Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3318545Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3326091Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3332994Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3340021Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3346876Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3353781Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3360653Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3368067Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3374755Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3382637Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3389246Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3397170Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3424376Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3431396Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3438892Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3446224Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3452949Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3459766Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3467226Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3473760Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3480612Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3487716Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3494725Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3501565Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3508452Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3514960Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3521698Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3528092Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3535051Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3542366Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3548851Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3556272Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3563754Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3570772Z 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-04-25T04:35:09.3578113Z 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-04-25T04:35:09.3585051Z 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-04-25T04:35:09.3592897Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3599871Z 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-04-25T04:35:09.3606564Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3617545Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3624675Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3631858Z 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-04-25T04:35:09.3639461Z 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-04-25T04:35:09.3646450Z 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-04-25T04:35:09.3653495Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3660432Z 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-04-25T04:35:09.3667943Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3675135Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3682395Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3689564Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3696617Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3703624Z 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-04-25T04:35:09.3711139Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3718248Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3731617Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3759935Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3766961Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3774389Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3781483Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3788448Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3795651Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3802527Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3809659Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3816480Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3823843Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3831026Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3838008Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3844929Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3851747Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3858741Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3866418Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3873724Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3880561Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3887531Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3894943Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3902109Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3908898Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3916066Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3923084Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3930006Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3936361Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3942953Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3949775Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3956280Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3962849Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3969680Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3976850Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3983924Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3990239Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.3997100Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4003947Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4010998Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4017699Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4024149Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4030678Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4037778Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4044431Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4051175Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4058119Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4065491Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4072485Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4079205Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4086891Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4093561Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4100637Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4107186Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4114633Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4121412Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4128007Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4134821Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4141496Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4148560Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4155575Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4162265Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4169121Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4176019Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4182942Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4189865Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4196919Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4203882Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4210957Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4218220Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4226147Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4232974Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4240345Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4247215Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4254341Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4261684Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4268400Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4275866Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4282939Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4289783Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4296753Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4303609Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4310611Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4317850Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4325306Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4331960Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4338510Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4345661Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4352892Z 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-04-25T04:35:09.4359874Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4367124Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4374509Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4381911Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4388755Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4396285Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4404667Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4412571Z 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-04-25T04:35:09.4419482Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4426835Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4434153Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4441007Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4448291Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4455037Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4461955Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4468816Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4475743Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4482585Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4489436Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4496741Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4503561Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4510620Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4517472Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4524182Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4530805Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4537407Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4543884Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4550566Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4557199Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4563569Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4570161Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4577230Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4583647Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4590355Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4597293Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4604091Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4610800Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4617374Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4624667Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4632059Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4638878Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4646251Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4653138Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4659829Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4666808Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4673757Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4680799Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4687720Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4694708Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4701934Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4708891Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4716152Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4723055Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4730431Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4737392Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4744470Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4751868Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4759134Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4766064Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4773479Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4780614Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4787543Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4794626Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4801504Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4808571Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4815783Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4823122Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4829922Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4837287Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4844685Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4851589Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4858685Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4865997Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4873550Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4880568Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4888031Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4895756Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4903757Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4911484Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4918886Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4925965Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4933006Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4940061Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4947425Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4954386Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4961593Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4968677Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.4976086Z 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-04-25T04:35:09.4983427Z 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-04-25T04:35:09.4990379Z 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-04-25T04:35:09.4997690Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5004907Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5011748Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5025058Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5032266Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5039567Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5046351Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5053589Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5060385Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5067452Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5100369Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5107144Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5114619Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5121527Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5128874Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5136109Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5142746Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5150056Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5156913Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5164095Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5171568Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5178759Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5185815Z 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-04-25T04:35:09.5192753Z 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-04-25T04:35:09.5200228Z 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-04-25T04:35:09.5207354Z 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-04-25T04:35:09.5215027Z 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-04-25T04:35:09.5221973Z 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-04-25T04:35:09.5229296Z 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-04-25T04:35:09.5236690Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5243966Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5251273Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5258655Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5266280Z 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-04-25T04:35:09.5273633Z 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-04-25T04:35:09.5280929Z 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-04-25T04:35:09.5288081Z 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-04-25T04:35:09.5311429Z 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-04-25T04:35:09.5319377Z 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-04-25T04:35:09.5326618Z 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-04-25T04:35:09.5333752Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5341340Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5348666Z 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-04-25T04:35:09.5356277Z 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-04-25T04:35:09.5363695Z 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-04-25T04:35:09.5371440Z 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-04-25T04:35:09.5378846Z 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-04-25T04:35:09.5386015Z 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-04-25T04:35:09.5392837Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5400272Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5407414Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5414989Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5422265Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5429292Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5436349Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5443182Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5449835Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5456950Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5463609Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5469922Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5484121Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5487044Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5494102Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5500796Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5508001Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5514930Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5521759Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5532779Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5539550Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5546528Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5553675Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5560381Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5567549Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5574478Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5581426Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5588147Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5594913Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5601708Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5608423Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5615262Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5622321Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5629176Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5636855Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5643595Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5650560Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5657572Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5664226Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5671523Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5678621Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5686085Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5693254Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5700453Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5707584Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5715265Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5722713Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5729945Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5737070Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5744105Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5751594Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5758622Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5766047Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5774064Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5781574Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5788497Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5795571Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5802738Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5809843Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5817125Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5824316Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5831266Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5838318Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5845320Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5852622Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5859600Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5866719Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5873798Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5880704Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5888181Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5895168Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5902558Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5914665Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5918293Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5926394Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5933162Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5940070Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5946728Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5954192Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5961300Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5968841Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5975783Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5982384Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5989387Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.5996906Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6003985Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6011152Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6018135Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6025274Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6032080Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6039195Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6046201Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6053358Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6060171Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6068376Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6074889Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6082105Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6089086Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6096360Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6103389Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6110330Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6117463Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6124671Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6131532Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6138190Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6145355Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6152750Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6159621Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6166805Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6173774Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6181405Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6188250Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6195243Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6202899Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6209341Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6217110Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6223934Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6231833Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6238891Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6246063Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6252805Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6260128Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6267036Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6273789Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6281120Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6288465Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6295423Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6302359Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6309375Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6316876Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6324113Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6331116Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6338716Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6345039Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6352378Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6359668Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6367344Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6373868Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6400865Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6408227Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6415201Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6421873Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6429261Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6435933Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6442853Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6449995Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6456877Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6463640Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6470666Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6477650Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6484817Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6491485Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6498503Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6505209Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6511960Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6519062Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6526206Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6533310Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6540020Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6547009Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6554068Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6561072Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6567821Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6574577Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6581636Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6588643Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6595489Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6602457Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6609135Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6616260Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6623270Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6629986Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6636730Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6643693Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6650787Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6657682Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6664564Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6671591Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6678660Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6685922Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6693587Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6700322Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6707238Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6714349Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6722195Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6728791Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6735620Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6742821Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6750005Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6756966Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6764154Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6771007Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6778138Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6785153Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6792517Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6800568Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6806706Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6813954Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6821373Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6828965Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6836198Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6843079Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6849957Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6857332Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6865497Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6872618Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6879768Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6887007Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6893861Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6901891Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6918067Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6921508Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6929794Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6936089Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6943732Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6950326Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6957465Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6964394Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6971258Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.6995169Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7002103Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7008872Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7016011Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7023362Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7030609Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7037972Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7044668Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7051467Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7058594Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7066704Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7073463Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7080787Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7088073Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7095068Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7102358Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7109270Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7117334Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7123897Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7130782Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7138272Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7145719Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7152184Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7159785Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7166708Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7173928Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7201160Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7208135Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7215306Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7222231Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7229446Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7236456Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7243770Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7250853Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7257577Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7265151Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7271977Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7278853Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7285751Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7292961Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7300624Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7307545Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7315097Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7322534Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7329543Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7336558Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7344316Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7351062Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7358384Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7365593Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7372518Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7379743Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7386894Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7394313Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7401151Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7408392Z 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-04-25T04:35:09.7415525Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7423720Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7431666Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7439433Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7447358Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7455476Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7462461Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7469860Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7477023Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7484077Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7491217Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7498670Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7505665Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7512558Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7519531Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7526277Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7533739Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7540539Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7547609Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7554470Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7561457Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7569695Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7577260Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7584235Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7591293Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7598142Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7605206Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7612541Z 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-04-25T04:35:09.7619655Z 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-04-25T04:35:09.7626616Z 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-04-25T04:35:09.7633693Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7640702Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7654914Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7662683Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7668917Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7675747Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7682886Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7689921Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7696824Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7704762Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7711972Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7719050Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7743567Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7750657Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7757563Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7764487Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7771294Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7778726Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7785527Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7792291Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7800207Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7807137Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7813828Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7821031Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7828376Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7835502Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7843591Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7850587Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7857986Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7864590Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7872124Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7878978Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7886339Z 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-04-25T04:35:09.7893376Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7900294Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7908272Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7915756Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7923679Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7931109Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7938159Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7945174Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7952574Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7959676Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7966999Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7973888Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7980470Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7987736Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.7994922Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8001827Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8008533Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8015196Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8022105Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8029023Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8036363Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8043095Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8049852Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8057237Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8064275Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8071148Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8078677Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8085524Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8092512Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8099467Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8106487Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8113444Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8120628Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8127478Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8134462Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8141162Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8147817Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8154833Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8161831Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8169309Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8175229Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8182133Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8189192Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8195805Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8202608Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8209273Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8215624Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8222559Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8229321Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8236098Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8242776Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8249473Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8256983Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8264092Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8270646Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8277196Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8284315Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8291362Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8298019Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8304504Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8311686Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8318879Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8325629Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8332338Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8340031Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8346881Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8354167Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8361112Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8368252Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8375209Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8391228Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8392167Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8398097Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8405113Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8412131Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8419220Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8426054Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8432664Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8441509Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8447393Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8454113Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8460710Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8467768Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8474864Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8481671Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8488311Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8495944Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8502488Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8509428Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8516447Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8523377Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8530397Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8537206Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8544082Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8550999Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8558102Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8564760Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8571538Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8578630Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8585848Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8592933Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8599904Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8606892Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8613811Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8620443Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8627315Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8634465Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8642088Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8649031Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8655770Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8662499Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8669431Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8676517Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8683365Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8690091Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8697419Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8704775Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8712325Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8719218Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8726074Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8733397Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8740183Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8748138Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8754836Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8761962Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8769256Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8776274Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8783809Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8790847Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8797953Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8804910Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8811559Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8818713Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8825499Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8832975Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8839996Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8846998Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8853944Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8860813Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8867739Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8874874Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8882464Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8889344Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8896609Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8903609Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8911160Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8918605Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8926427Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8933571Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8940638Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8947585Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8955035Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8961613Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8969580Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8976329Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8983106Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.8994358Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9001035Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9007756Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9014680Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9021440Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9028446Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9035328Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9059004Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9066055Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9073059Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9079701Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9086789Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9093126Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9111111Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9118430Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9125367Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9132639Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9139831Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9147033Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9154070Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9161338Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9168318Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9175627Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9182519Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9189688Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9196805Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9203806Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9211011Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9217774Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9224979Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9231722Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9238816Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9246281Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9253411Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9260354Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9267252Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9274367Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9281930Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9288547Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9295850Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9302879Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9309864Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9316987Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9323898Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9331068Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9337979Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9345391Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9352571Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9359877Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9366620Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9373312Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9380821Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9387735Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9395468Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9402378Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9409343Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9416515Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9423672Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9434435Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9440152Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9447154Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9454328Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9461126Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9468611Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9475327Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9482114Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9489196Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9496138Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9503099Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9510662Z 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-04-25T04:35:09.9517757Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9524814Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9531582Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9538498Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9545771Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9552704Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9560291Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9567183Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9574114Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9581960Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9588881Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9595777Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9602893Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9610216Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9617356Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9623863Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9630921Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9637350Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9644441Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9651601Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9658311Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9665531Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9672462Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9679703Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9687063Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9694668Z 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-04-25T04:35:09.9702034Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9709187Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9716797Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9724294Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9732228Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9740384Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9747985Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9755863Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9762883Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9769833Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9776964Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9783705Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9790354Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9797315Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9804110Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9810941Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9817884Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9824829Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9831573Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9838583Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9845606Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9852218Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9859166Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9866225Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9872774Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9879822Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9886717Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9893407Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9900110Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9906906Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9914620Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9921778Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9928762Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9936113Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9943806Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9951433Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9958432Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9965414Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9972322Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9986553Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:09.9993350Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0000178Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0007124Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0014336Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0020991Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0027830Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0034791Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0041939Z 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-04-25T04:35:10.0049237Z 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-04-25T04:35:10.0055946Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0062742Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0069532Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0076381Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0083420Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0090339Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0097132Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0103914Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0110755Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0117851Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0124468Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0131302Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0138037Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0144847Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0151627Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0158492Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0165978Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0172841Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0179719Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0186502Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0193493Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0200645Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0207536Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0214262Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0221033Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0228138Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0235630Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0242437Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0249483Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0256505Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0263542Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0270485Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0277807Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0284681Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0291971Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0299872Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0312221Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0319386Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0327040Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0334167Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0340739Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0347790Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0355050Z 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-04-25T04:35:10.0362097Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0369151Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0376094Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0383182Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0389860Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0551371Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0551776Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0552315Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0552711Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0553093Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0553374Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0553673Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0554036Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0554487Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0554876Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0555402Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0555853Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0556293Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0556834Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0557201Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0557553Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0557917Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0558339Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0562958Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0570032Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0576532Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0583757Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0590556Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0597543Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0603723Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0610423Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0617261Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0623655Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0630030Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0636932Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0643888Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0651034Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0657839Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0664379Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0671209Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0677931Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0684514Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0691093Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0698015Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0705010Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0712001Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0718782Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0725583Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0732503Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0739148Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0745799Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0752861Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0759519Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0766127Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0772771Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0779521Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0786242Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0809600Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0817157Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0823522Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0830332Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0837303Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0844886Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0851160Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0858008Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0864772Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0871323Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0878998Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0885699Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0892904Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0899599Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0906919Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0913269Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0920920Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0927539Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0952642Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0959645Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0966393Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0973603Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0981015Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0987602Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.0994451Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1001354Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1008308Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1015901Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1022599Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1029242Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1035942Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1042864Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1049481Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1055940Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1062991Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1069948Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1076759Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1083493Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1090255Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1097166Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1103772Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1110579Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1117367Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1124033Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1130919Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1137388Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1144070Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1150802Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1158058Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1164549Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1170953Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1177663Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1184690Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1191530Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1198787Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1206394Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1212697Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1219563Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1226540Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1234218Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1240730Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1247372Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1254495Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1261385Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1268684Z 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-04-25T04:35:10.1275572Z 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-04-25T04:35:10.1282823Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1289705Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1296861Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1303960Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1311225Z 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-04-25T04:35:10.1318752Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1325939Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1333165Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1340248Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1347351Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1354738Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1361919Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1369355Z 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-04-25T04:35:10.1376593Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1383594Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1391131Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1398753Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1405660Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1412481Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1419511Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1427030Z 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-04-25T04:35:10.1434698Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1442259Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1449491Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1456536Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1463878Z 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-04-25T04:35:10.1471338Z 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-04-25T04:35:10.1478572Z 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-04-25T04:35:10.1485506Z 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-04-25T04:35:10.1492719Z 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-04-25T04:35:10.1499500Z 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-04-25T04:35:10.1506346Z 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-04-25T04:35:10.1513413Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1520384Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1527536Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1534510Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1541887Z 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-04-25T04:35:10.1548883Z 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-04-25T04:35:10.1555878Z 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-04-25T04:35:10.1563278Z 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-04-25T04:35:10.1570123Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1577603Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1584649Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1591838Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1599340Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1606392Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1613322Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1620271Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1627286Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1633923Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1640965Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1647898Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1654852Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1661668Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1668561Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1675561Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1682578Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1689447Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1796338Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1803505Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1809579Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1816347Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1823514Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1831203Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1837462Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1844361Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1851306Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1858234Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1865415Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1872958Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1879648Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1886558Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1893192Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1900285Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1906746Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1914018Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1920687Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1927671Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1934188Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1940683Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1947782Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1954867Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1961684Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1968217Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1975017Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1982093Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1988809Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.1995732Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2003571Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2009879Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2018274Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2025732Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2033286Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2040823Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2047872Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2054737Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2061712Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2068841Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2075779Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2082455Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2089489Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2096238Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2103240Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2109348Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2116218Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2123246Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2129901Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2136732Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2143399Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2150137Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2157493Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2164359Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2171212Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2178240Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2184940Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2191476Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2198344Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2205423Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2212147Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2219039Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2225869Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2233013Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2239823Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2246998Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2254014Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2261516Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2268150Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2275120Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2282222Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2289428Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2296396Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2303402Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2310440Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2317927Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2330135Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2337352Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2344638Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2351875Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2359405Z 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-04-25T04:35:10.2366559Z 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-04-25T04:35:10.2373590Z 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-04-25T04:35:10.2381084Z 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-04-25T04:35:10.2388537Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2395648Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2402820Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2409831Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2417438Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2424747Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2431696Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2438932Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2446181Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2453861Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2461097Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2467860Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2474791Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2482045Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2488787Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2495621Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2502471Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2509952Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2516736Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2523539Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2530308Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2537295Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2544528Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2551493Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2558350Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2565302Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2572138Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2579036Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2585752Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2592665Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2599864Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2606577Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2613726Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2620782Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2628025Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2634615Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2641286Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2655242Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2662552Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2669064Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2676259Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2683073Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2689876Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2696665Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2703574Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2710464Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2717597Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2724449Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2731501Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2738288Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2745341Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2752634Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2759762Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2766749Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2773638Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2780535Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2787418Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2794352Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2801556Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2808855Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2815984Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2823038Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2829814Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2836699Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2843959Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2851065Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2874843Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2881887Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2889368Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2896934Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2904353Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2912378Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2919686Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2926668Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2933386Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2940404Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2947148Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2954447Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2961240Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2968149Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2974771Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2981537Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2988834Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.2995683Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3002378Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3009337Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3016281Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3023419Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3030085Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3037533Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3044129Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3050761Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3057262Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3063821Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3070481Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3076868Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3083350Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3089859Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3096538Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3103092Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3109602Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3116042Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3122607Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3129496Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3136322Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3143008Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3150195Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3157408Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3164106Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3170867Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3177834Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3184512Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3191191Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3198305Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3208646Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3215568Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3222387Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3229126Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3236086Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3243206Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3250278Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3257359Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3264261Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3271553Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3278897Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3285746Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3293460Z 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-04-25T04:35:10.3300743Z 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-04-25T04:35:10.3307707Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3314868Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3322257Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3329146Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3335988Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3343250Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3350313Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3357222Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3364498Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3371604Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3378520Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3385420Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3392283Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3399731Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3407288Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3414274Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3421288Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3428477Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3435704Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3443205Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3451130Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3458883Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3465475Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3472359Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3479502Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3486640Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3493632Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3500375Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3507504Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3514545Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3521278Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3527936Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3534744Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3542033Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3548717Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3555530Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3562231Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3569392Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3576145Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3582613Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3589400Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3596753Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3603636Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3610441Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3617679Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3625102Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3631471Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3638352Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3645719Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3652917Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3659815Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3666643Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3673366Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3680565Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3687717Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3694600Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3701825Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3708604Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3715816Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3722966Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3729930Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3736802Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3743738Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3750516Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3769542Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3776781Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3784209Z 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-04-25T04:35:10.3791393Z 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-04-25T04:35:10.3798372Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3805704Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3812834Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3819856Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3827097Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3834073Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3841498Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3848603Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3855395Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3862322Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3869243Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3875980Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3882636Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3889249Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3896048Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3902560Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3909735Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3916770Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3923514Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3930392Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3937066Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3943808Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3951174Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3958483Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3965403Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3972315Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3979201Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3986229Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.3993356Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4000318Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4007267Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4014026Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4020733Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4027585Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4034554Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4041608Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4048546Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4055236Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4061982Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4068864Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4075813Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4082508Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4089749Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4096627Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4103696Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4110642Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4117566Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4124605Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4131528Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4138510Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4145513Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4152566Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4160185Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4166850Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4173559Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4180806Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4196304Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4203641Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4210945Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4218217Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4225416Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4232970Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4239964Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4246922Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4253963Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4260938Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4268198Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4275502Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4282167Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4288890Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4295709Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4302598Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4309778Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4317018Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4323834Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4330745Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4337700Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4345010Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4352038Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4359018Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4366280Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4372852Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4379546Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4386093Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4392981Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4400274Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4407040Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4414245Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4421062Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4427625Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4434430Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4441007Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4447818Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4454434Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4461282Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4467897Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4474443Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4480998Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4487840Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4494494Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4500892Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4507358Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4514422Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4521154Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4527922Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4534397Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4541912Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4548335Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4555130Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4562046Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4569042Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4575984Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4582738Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4589339Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4596541Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4603300Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4609810Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4616874Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4623524Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4648352Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4654843Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4661686Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4668575Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4675824Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4683113Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4689930Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4718863Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4725823Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4732754Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4739544Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4746296Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4753047Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4760205Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4766755Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4773712Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4780620Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4787812Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4794670Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4801640Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4808774Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4815724Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4822564Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4829588Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4836852Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4843969Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4850969Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4858277Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4865058Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4871899Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4878769Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4885790Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4892582Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4899440Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4906891Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4913861Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4920911Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4927744Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4934701Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4941591Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4949019Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4956779Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4964402Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4972034Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4979825Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4987548Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.4995313Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5002363Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5009729Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5016623Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5023781Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5031726Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5038780Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5045972Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5052817Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5060247Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5066952Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5074200Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5081563Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5106344Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5112849Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5119758Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5126735Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5133641Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5140478Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5147865Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5154309Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5161253Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5168876Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5175722Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5182781Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5189571Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5196533Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5203604Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5210752Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5217709Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5224672Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5231577Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5238638Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5245589Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5252519Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5259497Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5266229Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5273367Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5280352Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5287171Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5294214Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5301098Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5308555Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5315720Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5322414Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5329408Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5336485Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5343429Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5350374Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5357694Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5364619Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5371817Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5378722Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5385735Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5392895Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5400387Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5407165Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5414210Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5421281Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5428665Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5435964Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5442854Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5449925Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5458223Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5466144Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5473234Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5480409Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5487798Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5494659Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5501624Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5508748Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5515892Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5523319Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5535508Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5540294Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5546243Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5553870Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5560413Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5567042Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5574182Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5580824Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5587112Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5593847Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5600430Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5606862Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5613591Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5620040Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5626711Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5633273Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5640170Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5647215Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5653927Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5660639Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5667367Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5674347Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5681326Z 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-04-25T04:35:10.5688225Z 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-04-25T04:35:10.5695020Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5701855Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5708492Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5715667Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5722492Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5729622Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5736671Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5744028Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5750963Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5758072Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5764962Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5772107Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5779918Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5786980Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5793985Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5800965Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5808091Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5815261Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5822250Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5829237Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5836430Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5843330Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5850460Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5857435Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5864416Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5871541Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5878690Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5885811Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5892789Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5900312Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5907051Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5914254Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:35:10.5920168Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:35:10.5923180Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:35:10.5929511Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:35:10.5935296Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5938557Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5944820Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5951208Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5957422Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5970475Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5976924Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:35:10.5982638Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-04-25T04:35:10.5985515Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-04-25T04:35:10.5990870Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.5995115Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6001253Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6007495Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6013749Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6025774Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6032087Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6038335Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6044775Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6050891Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6057584Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6063710Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6069847Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6076064Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6082202Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6088703Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6094721Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6101052Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6108071Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6115200Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6121477Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6131647Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6137800Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6143907Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6150067Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6156459Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6162561Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6168562Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6174888Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6180918Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6187085Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6193325Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6199528Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6206080Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6216700Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6222887Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6229030Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6236595Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6242743Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6248938Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6255164Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6261317Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6267293Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6273955Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6280323Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6286796Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6298854Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6306213Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6312830Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6319402Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:35:10.6324975Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6327833Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6333890Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6340036Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6346538Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6358007Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6364596Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6370681Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6377083Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6383466Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6393881Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6400347Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6406704Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6413468Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6420257Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6426642Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6433201Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6439947Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:35:10.6445528Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6448468Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6454893Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6461743Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6468868Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6481206Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6487548Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6509721Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6516271Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6522471Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6529786Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6536679Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6543175Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6549457Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6555996Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:35:10.6561714Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:35:10.6564612Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:35:10.6570906Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:35:10.6575929Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:35:10.6578725Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:35:10.6584666Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:35:10.6590712Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:35:10.6596913Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6599735Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6605842Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6612431Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6619016Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6625255Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6637430Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:35:10.6643058Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:35:10.6645941Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:35:10.6652248Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:35:10.6657811Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:35:10.6661762Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:35:10.6668574Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:35:10.6675719Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:35:10.6681005Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6684003Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6690117Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6696329Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6702351Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6713474Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6719745Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6726194Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6732627Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6740650Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6747356Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6753607Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6759767Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6766341Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6772347Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6778608Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6785096Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6792063Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6798949Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6805915Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6812439Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6818824Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6825164Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6831576Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6838039Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6850504Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6856701Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6862628Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6869884Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6876659Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6883294Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6889389Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6895827Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6903243Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6909768Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6916621Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6928885Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6945805Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6946576Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6949169Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6956180Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6962779Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6969880Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6976996Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6984079Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.6995521Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7002709Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7009740Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7016139Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7022966Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7029379Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7036394Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7042548Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7049141Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7055803Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7062913Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7068934Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7075360Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7089075Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7095818Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7102161Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7108588Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7115386Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7121913Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7128132Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7134481Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7141096Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7147225Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7153393Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7159624Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7175527Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7183657Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7189901Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7196250Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7202581Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7208732Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7214611Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7220482Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7226803Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7233011Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7239004Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7245649Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7258931Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7265217Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7271449Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7277926Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7285337Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7292140Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7298438Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7304901Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7311677Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7318007Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7324378Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7335706Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7342587Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7349683Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7356491Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7363161Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7370189Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7376949Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7383161Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7389886Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7396930Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7404056Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7411112Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7418253Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7424944Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7431290Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7437715Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7444300Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7450794Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7457400Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7464000Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:35:10.7469752Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7478022Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7484593Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7491134Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7497763Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7509684Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7516325Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:35:10.7521957Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-04-25T04:35:10.7524871Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-04-25T04:35:10.7530612Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-04-25T04:35:10.7534701Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-04-25T04:35:10.7539929Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:35:10.7543936Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:35:10.7550243Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:35:10.7556326Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:35:10.7561918Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:35:10.7564986Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:35:10.7571271Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:35:10.7577519Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:35:10.7582845Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7585807Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7593439Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7599688Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7606008Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7621262Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7627858Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7634482Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:35:10.7640161Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:35:10.7642961Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:35:10.7653096Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:35:10.7659378Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:35:10.7665088Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7673844Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7680155Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7690842Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7702355Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7708920Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7715192Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:10.7724606Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7727386Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7741060Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7742008Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7771969Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7785922Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7792402Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7799019Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7805288Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7812259Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7823397Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7829635Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7836045Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7842343Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7848986Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7859554Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7866679Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7873417Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7880275Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7886700Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7898171Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7904708Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7911096Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7917648Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7923978Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:35:10.7929939Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7932785Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7938958Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7946527Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7953994Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7960697Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7967934Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7974151Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7987296Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.7996311Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8006611Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8013267Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8020210Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8026769Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8033348Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:35:10.8038779Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:35:10.8041644Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:35:10.8048037Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:35:10.8054588Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:35:10.8060369Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8064283Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8070445Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8077330Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8084800Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8091496Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8103473Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8109948Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8117708Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8129388Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8136344Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8142603Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8149133Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8155474Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8162865Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8169139Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8175609Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8185647Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8192030Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8198564Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8205284Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8217679Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8223995Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8230271Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8237043Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8243567Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8250467Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8257591Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8282891Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8289344Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8295756Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8307876Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8315007Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8321697Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8328235Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8334622Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8341704Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8347863Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8355005Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8361337Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8368870Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8375395Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8386011Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8397628Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8404369Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8410635Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8418240Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8424842Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8431706Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8439383Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:35:10.8446518Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8449030Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8455508Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8462271Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8468658Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8476054Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8490073Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:35:10.8497413Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-04-25T04:35:10.8500759Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-04-25T04:35:10.8506595Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:35:10.8509965Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:35:10.8516545Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:35:10.8522052Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-04-25T04:35:10.8525105Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-04-25T04:35:10.8531565Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-04-25T04:35:10.8541297Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-04-25T04:35:10.8544663Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-04-25T04:35:10.8551307Z 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-04-25T04:35:10.8556978Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:35:10.8560048Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:35:10.8566477Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:35:10.8571933Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-04-25T04:35:10.8574810Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-04-25T04:35:10.8580176Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-04-25T04:35:10.8583196Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-04-25T04:35:10.8588544Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-04-25T04:35:10.8591650Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-04-25T04:35:10.8597048Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8599893Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8607480Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8613733Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8619807Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8625943Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8639044Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8646221Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8652749Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8659428Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:35:10.8665329Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8668313Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8674985Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8681581Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8687866Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8694030Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8700183Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8710671Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8716997Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8723101Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8729824Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8735900Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8742630Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8748837Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8755118Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8761253Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8767509Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8774102Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8780903Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:35:10.8786329Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8789421Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8796005Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8803059Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8813010Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8819947Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8826866Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8833380Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8839937Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:35:10.8845704Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8848388Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8854762Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8861282Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8872378Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8879047Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8885310Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8891709Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8898048Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8904490Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8915291Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8921752Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8928088Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8934619Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8940976Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8947362Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8953846Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:35:10.8959484Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:35:10.8962577Z copying torch\include\mimalloc-1.8\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:35:10.8969132Z copying torch\include\mimalloc-1.8\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:35:10.8975652Z copying torch\include\mimalloc-1.8\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:35:10.8988069Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.8996680Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9005235Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9012976Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9019481Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9031360Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9038035Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9045244Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9051835Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9059175Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9066276Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9072522Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9079184Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9085719Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9092229Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9099365Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9107163Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9113531Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9119921Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9126266Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:10.9131642Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9134509Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9141178Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9147505Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9154642Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9160703Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9166621Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9177475Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9183475Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9189738Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9196031Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9202353Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9208620Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9215196Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9221439Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9228833Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9235431Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9241717Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9249980Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9257595Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9264322Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9271215Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9278035Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:35:10.9283483Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9286368Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9293012Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9300001Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9306491Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9313255Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9328478Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9335244Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9342054Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9348603Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9355983Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:35:10.9361650Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:35:10.9364623Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:35:10.9370796Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:35:10.9377546Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:35:10.9384248Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-04-25T04:35:10.9387322Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-04-25T04:35:10.9392738Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9395610Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9402622Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9409159Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9415195Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9426784Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:35:10.9431908Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9434812Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9441229Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9448286Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9454576Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9467003Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9473417Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9480013Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9486807Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9493420Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9500428Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9506662Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9513313Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9520045Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9526944Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9537012Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9543313Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9549625Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9555727Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9562111Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9568679Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9574602Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9581382Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9587324Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9593841Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9605399Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9611707Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9617306Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9623071Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9629176Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9635179Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9640862Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:35:10.9646855Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9651697Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9657538Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9663789Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9669584Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9675942Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9681791Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9688833Z 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-04-25T04:35:10.9713486Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9719997Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9726345Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9732680Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9738963Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9745457Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9751256Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9757507Z 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-04-25T04:35:10.9764711Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9770983Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9782011Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9788499Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9796075Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9802161Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9808588Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9815693Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9822433Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:10.9827971Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-04-25T04:35:10.9831148Z 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-04-25T04:35:10.9837944Z 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-04-25T04:35:10.9844492Z 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-04-25T04:35:10.9850936Z 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-04-25T04:35:10.9857350Z 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-04-25T04:35:10.9869209Z 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-04-25T04:35:10.9878433Z 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-04-25T04:35:10.9888719Z 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-04-25T04:35:10.9894441Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-04-25T04:35:10.9897676Z 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-04-25T04:35:10.9904702Z 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-04-25T04:35:10.9911216Z 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-04-25T04:35:10.9916910Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-04-25T04:35:10.9920177Z 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-04-25T04:35:10.9931243Z 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-04-25T04:35:10.9938107Z 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-04-25T04:35:10.9944860Z 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-04-25T04:35:10.9951463Z 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-04-25T04:35:10.9958014Z 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-04-25T04:35:10.9964878Z 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-04-25T04:35:10.9976466Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-04-25T04:35:10.9995426Z 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-04-25T04:35:11.0006163Z 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-04-25T04:35:11.0012295Z 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-04-25T04:35:11.0021966Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-04-25T04:35:11.0025163Z 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-04-25T04:35:11.0032037Z 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-04-25T04:35:11.0038558Z 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-04-25T04:35:11.0045500Z 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-04-25T04:35:11.0051981Z 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-04-25T04:35:11.0063799Z 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-04-25T04:35:11.0070230Z 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-04-25T04:35:11.0075595Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-04-25T04:35:11.0078651Z 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-04-25T04:35:11.0084939Z 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-04-25T04:35:11.0091133Z 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-04-25T04:35:11.0097241Z 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-04-25T04:35:11.0103418Z 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-04-25T04:35:11.0108887Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-04-25T04:35:11.0111762Z 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-04-25T04:35:11.0118153Z 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-04-25T04:35:11.0123568Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-04-25T04:35:11.0126581Z 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-04-25T04:35:11.0133104Z 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-04-25T04:35:11.0139443Z 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-04-25T04:35:11.0145697Z 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-04-25T04:35:11.0152393Z 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-04-25T04:35:11.0163735Z 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-04-25T04:35:11.0169572Z 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-04-25T04:35:11.0176111Z 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-04-25T04:35:11.0182381Z 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-04-25T04:35:11.0192134Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-04-25T04:35:11.0195220Z 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-04-25T04:35:11.0201909Z 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-04-25T04:35:11.0208099Z 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-04-25T04:35:11.0214670Z 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-04-25T04:35:11.0225638Z 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-04-25T04:35:11.0231892Z 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-04-25T04:35:11.0238466Z 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-04-25T04:35:11.0245113Z 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-04-25T04:35:11.0251549Z 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-04-25T04:35:11.0258206Z 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-04-25T04:35:11.0264964Z 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-04-25T04:35:11.0271826Z 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-04-25T04:35:11.0278261Z 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-04-25T04:35:11.0284533Z 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-04-25T04:35:11.0296974Z 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-04-25T04:35:11.0303585Z 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-04-25T04:35:11.0309134Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-04-25T04:35:11.0312151Z 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-04-25T04:35:11.0319662Z 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-04-25T04:35:11.0326019Z 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-04-25T04:35:11.0332438Z 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-04-25T04:35:11.0339273Z 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-04-25T04:35:11.0350401Z 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-04-25T04:35:11.0356968Z 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-04-25T04:35:11.0363599Z 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-04-25T04:35:11.0369827Z 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-04-25T04:35:11.0375990Z 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-04-25T04:35:11.0382516Z 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-04-25T04:35:11.0389408Z 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-04-25T04:35:11.0396449Z 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-04-25T04:35:11.0402690Z 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-04-25T04:35:11.0409151Z 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-04-25T04:35:11.0415829Z 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-04-25T04:35:11.0422656Z 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-04-25T04:35:11.0432920Z 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-04-25T04:35:11.0439638Z 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-04-25T04:35:11.0446625Z 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-04-25T04:35:11.0453489Z 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-04-25T04:35:11.0459635Z 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-04-25T04:35:11.0465975Z 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-04-25T04:35:11.0472038Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-04-25T04:35:11.0475724Z 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-04-25T04:35:11.0483132Z 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-04-25T04:35:11.0490078Z 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-04-25T04:35:11.0497219Z 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-04-25T04:35:11.0511809Z 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-04-25T04:35:11.0518303Z 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-04-25T04:35:11.0524935Z 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-04-25T04:35:11.0531811Z 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-04-25T04:35:11.0542307Z 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-04-25T04:35:11.0548755Z 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-04-25T04:35:11.0554549Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-04-25T04:35:11.0557495Z 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-04-25T04:35:11.0564557Z 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-04-25T04:35:11.0570737Z 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-04-25T04:35:11.0577002Z 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-04-25T04:35:11.0583395Z 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-04-25T04:35:11.0596297Z 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-04-25T04:35:11.0602692Z 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-04-25T04:35:11.0609292Z 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-04-25T04:35:11.0615633Z 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-04-25T04:35:11.0622348Z 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-04-25T04:35:11.0629130Z 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-04-25T04:35:11.0636134Z 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-04-25T04:35:11.0643081Z 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-04-25T04:35:11.0649192Z 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-04-25T04:35:11.0655909Z 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-04-25T04:35:11.0662927Z 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-04-25T04:35:11.0669558Z 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-04-25T04:35:11.0676450Z 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-04-25T04:35:11.0682798Z 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-04-25T04:35:11.0689131Z 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-04-25T04:35:11.0695917Z 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-04-25T04:35:11.0701446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-04-25T04:35:11.0704567Z 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-04-25T04:35:11.0710094Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-04-25T04:35:11.0713085Z 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-04-25T04:35:11.0719848Z 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-04-25T04:35:11.0726707Z 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-04-25T04:35:11.0732154Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-04-25T04:35:11.0735113Z 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-04-25T04:35:11.0741722Z 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-04-25T04:35:11.0747832Z 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-04-25T04:35:11.0754096Z 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-04-25T04:35:11.0760787Z 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-04-25T04:35:11.0767256Z 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-04-25T04:35:11.0777673Z 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-04-25T04:35:11.0784158Z 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-04-25T04:35:11.0789859Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-04-25T04:35:11.0793129Z 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-04-25T04:35:11.0799909Z 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-04-25T04:35:11.0806386Z 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-04-25T04:35:11.0816642Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-04-25T04:35:11.0819661Z 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-04-25T04:35:11.0824838Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-04-25T04:35:11.0828005Z 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-04-25T04:35:11.0834073Z 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-04-25T04:35:11.0840882Z 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-04-25T04:35:11.0847445Z 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-04-25T04:35:11.0856712Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0859818Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0870469Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0877090Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0883521Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0895064Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0902089Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0908540Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0919025Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0925513Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0933271Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0940524Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0946891Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0953306Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0960172Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0966618Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0973056Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0979931Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0986529Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.0993175Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1000261Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1007657Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1014283Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1025601Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1032208Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1038915Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1045458Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1052067Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1058548Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1065100Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1071533Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1077930Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1089067Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1095668Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1102129Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1108901Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1115184Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1121672Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1128199Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1134880Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1141515Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1148168Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1154803Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1165444Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1171307Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1178226Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1242953Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:35:11.1248676Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1251746Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1262451Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1268425Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1275482Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1285818Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1292688Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:11.1298279Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1301323Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1313250Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1319821Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1330645Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1337044Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1344823Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:11.1351299Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1354368Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1360904Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1371601Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1378000Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1388529Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1394971Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:11.1400616Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-04-25T04:35:11.1403570Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-04-25T04:35:11.1408899Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1411757Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1418244Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1424953Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1431286Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1437458Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1448596Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1454964Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1461256Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1467781Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1473959Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1480786Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1486945Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:35:11.1493050Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:35:11.1497529Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:35:11.1504156Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:35:11.1510308Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:35:11.1515976Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:35:11.1519250Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:35:11.1526020Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:35:11.1531460Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-04-25T04:35:11.1534601Z 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-04-25T04:35:11.1546568Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-04-25T04:35:11.1553594Z 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-04-25T04:35:11.1560437Z 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-04-25T04:35:11.1565955Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-04-25T04:35:11.1569005Z 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-04-25T04:35:11.1575956Z 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-04-25T04:35:11.1586234Z 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-04-25T04:35:11.1597769Z 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-04-25T04:35:11.1604281Z 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-04-25T04:35:11.1610537Z 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-04-25T04:35:11.1621199Z 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-04-25T04:35:11.1627680Z 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-04-25T04:35:11.1634961Z 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-04-25T04:35:11.1641184Z 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-04-25T04:35:11.1646241Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1649060Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1655259Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1661516Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1667668Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1674252Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1684779Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1691112Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1697369Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1703863Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1710209Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.1716084Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-04-25T04:35:11.1719096Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-04-25T04:35:11.1724992Z 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-04-25T04:35:11.1730985Z 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-04-25T04:35:11.1740685Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1743534Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1753840Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1760058Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1784580Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1795977Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1802214Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1808839Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1815152Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1821597Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1828203Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1834727Z 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-04-25T04:35:11.1841208Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1847481Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1853934Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1860460Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1866976Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1874165Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1881083Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1888156Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1894596Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1905503Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1912384Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1918960Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1925288Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1931591Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1943098Z 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-04-25T04:35:11.1949601Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:11.1961467Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-04-25T04:35:11.1962549Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-04-25T04:35:11.1966079Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-04-25T04:35:11.1969109Z 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-04-25T04:35:11.1981704Z 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-04-25T04:35:11.1986875Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-04-25T04:35:11.1989997Z 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-04-25T04:35:11.1996592Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-04-25T04:35:11.2002041Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2005108Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2023695Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2031361Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2037596Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2048581Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2054999Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2061367Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2072530Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2079075Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2086027Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2092117Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2098479Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2108909Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2115229Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:35:11.2121152Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-04-25T04:35:11.2124365Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-04-25T04:35:11.2130216Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-04-25T04:35:11.2133378Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-04-25T04:35:11.2138905Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-04-25T04:35:11.2141704Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-04-25T04:35:11.2147335Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:35:11.2150701Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:35:11.2157545Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:35:11.2164142Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:35:11.2169569Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-04-25T04:35:11.2176977Z 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-04-25T04:35:11.2183504Z 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-04-25T04:35:11.2189076Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:11.2192250Z 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-04-25T04:35:11.2198609Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:11.2204719Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:11.2211225Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:11.2217402Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:11.2227779Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-04-25T04:35:11.2231066Z 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-04-25T04:35:11.2237633Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-04-25T04:35:11.2242940Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-04-25T04:35:11.2246032Z 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-04-25T04:35:11.2252651Z 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-04-25T04:35:11.2258922Z 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-04-25T04:35:11.2270549Z 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-04-25T04:35:11.2277278Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-04-25T04:35:11.2282364Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:35:11.2285530Z 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-04-25T04:35:11.2292432Z 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-04-25T04:35:11.2298782Z 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-04-25T04:35:11.2309917Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:35:11.2316789Z 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-04-25T04:35:11.2323058Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:35:11.2330039Z 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-04-25T04:35:11.2337321Z 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-04-25T04:35:11.2344097Z 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-04-25T04:35:11.2350425Z 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-04-25T04:35:11.2357425Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:35:11.2363543Z 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-04-25T04:35:11.2370248Z 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-04-25T04:35:11.2375822Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-04-25T04:35:11.2378620Z 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-04-25T04:35:11.2389913Z 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-04-25T04:35:11.2396543Z 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-04-25T04:35:11.2408607Z 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-04-25T04:35:11.2414771Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-04-25T04:35:11.2420309Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-04-25T04:35:11.2423175Z 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-04-25T04:35:11.2429583Z 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-04-25T04:35:11.2435792Z 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-04-25T04:35:11.2441152Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-04-25T04:35:11.2444145Z 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-04-25T04:35:11.2451097Z 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-04-25T04:35:11.2458248Z 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-04-25T04:35:11.2471381Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:11.2474799Z 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-04-25T04:35:11.2480745Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:11.2486766Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:11.2493096Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:11.2499522Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:11.2509295Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-04-25T04:35:11.2512762Z 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-04-25T04:35:11.2519896Z 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-04-25T04:35:11.2531130Z 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-04-25T04:35:11.2536324Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-04-25T04:35:11.2539454Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-04-25T04:35:11.2544565Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:35:11.2547748Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:35:11.2554250Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:35:11.2560812Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:35:11.2566421Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2569083Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2575560Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2582011Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2588166Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2595242Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:35:11.2605307Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2612210Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2619119Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2625464Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2636623Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2647819Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2654068Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2660599Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2671976Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2678182Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:11.2684037Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-04-25T04:35:11.2688135Z 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-04-25T04:35:11.2693230Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-04-25T04:35:11.2696406Z 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-04-25T04:35:11.2702646Z 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-04-25T04:35:11.2713077Z 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-04-25T04:35:11.2723602Z 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-04-25T04:35:11.2730191Z 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-04-25T04:35:11.2735958Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-04-25T04:35:11.2738718Z 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-04-25T04:35:11.2748567Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-04-25T04:35:11.2751483Z 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-04-25T04:35:11.2757222Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-04-25T04:35:11.2760297Z 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-04-25T04:35:11.2765828Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-04-25T04:35:11.2768691Z 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-04-25T04:35:11.2777982Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-04-25T04:35:11.2782042Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-04-25T04:35:11.2787376Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2790335Z 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-04-25T04:35:11.2796809Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2802869Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2810128Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2816799Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2822723Z 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-04-25T04:35:11.2834267Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:11.2841006Z 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-04-25T04:35:11.2847316Z 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-04-25T04:35:11.2853942Z 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-04-25T04:35:11.2860401Z 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-04-25T04:35:11.2867043Z 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-04-25T04:35:11.2872602Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-04-25T04:35:11.2875708Z 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-04-25T04:35:11.2882782Z 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-04-25T04:35:11.2889317Z 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-04-25T04:35:11.2894828Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-04-25T04:35:11.2897899Z 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-04-25T04:35:11.2904434Z 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-04-25T04:35:11.2909922Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:11.2913303Z 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-04-25T04:35:11.2919404Z 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-04-25T04:35:11.2925641Z 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-04-25T04:35:11.2932241Z 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-04-25T04:35:11.2944500Z 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-04-25T04:35:11.2950694Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:11.2957409Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:11.2963753Z 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-04-25T04:35:11.2970257Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:11.2976816Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:11.2983209Z 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-04-25T04:35:11.2988623Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-04-25T04:35:11.2991475Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-04-25T04:35:11.2997519Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3001033Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3007830Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3014129Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3024978Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3034992Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3041063Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3047564Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3053706Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3060593Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3066739Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3072754Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3079538Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3086144Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3092855Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3099302Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3105498Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3112295Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3119085Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3125286Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3136133Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3147366Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3154186Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3160575Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3166400Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3173123Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3179492Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3185689Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3192729Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:11.3198523Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3201392Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3207902Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3214393Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3220774Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3231492Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3237609Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3245226Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3251794Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3257952Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3264131Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3270438Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3276975Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3283418Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:11.3288778Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3291658Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3298271Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3304885Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3311720Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3322530Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3328778Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3335361Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3358107Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3359178Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3360132Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3361743Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3368139Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3374631Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3381511Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3388024Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3394479Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3401252Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3407829Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3414219Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3420974Z 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-04-25T04:35:11.3427454Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3434092Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:11.3444464Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-04-25T04:35:11.3461817Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-04-25T04:35:11.3467732Z 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-04-25T04:35:11.3474420Z 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-04-25T04:35:11.3488236Z 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-04-25T04:35:11.3493612Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-04-25T04:35:11.3497208Z 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-04-25T04:35:11.3503890Z 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-04-25T04:35:11.3510792Z 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-04-25T04:35:11.3524720Z 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-04-25T04:35:11.3531022Z 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-04-25T04:35:11.3537509Z 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-04-25T04:35:11.3543894Z 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-04-25T04:35:11.3549043Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:35:11.3552157Z 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-04-25T04:35:11.3562042Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:35:11.3572146Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:35:11.3577857Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:35:11.3580800Z 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-04-25T04:35:11.3587468Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:35:11.3593622Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:35:11.3599165Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-04-25T04:35:11.3602057Z 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-04-25T04:35:11.3607548Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:35:11.3610574Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:35:11.3617446Z 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-04-25T04:35:11.3623167Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:35:11.3629332Z 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-04-25T04:35:11.3638810Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3642181Z 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-04-25T04:35:11.3648039Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3654879Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3661450Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3761194Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3768054Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3775007Z 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-04-25T04:35:11.3782362Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3789134Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3797112Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3804818Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3812135Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3818434Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3828318Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3834806Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3841071Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3847633Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3854145Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3860354Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3871198Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3877483Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3883832Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3890156Z 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-04-25T04:35:11.3896696Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3903431Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3909934Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3916507Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3922746Z 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-04-25T04:35:11.3933825Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3940226Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3946232Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3952566Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3959200Z 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-04-25T04:35:11.3965487Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3979291Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3985462Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.3992230Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4003371Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4009851Z 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-04-25T04:35:11.4016557Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4023480Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4030435Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4036951Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4043309Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4049596Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4056686Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4066785Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4073006Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4079356Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4085808Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4091978Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4098244Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4104547Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4110669Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4117312Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4123353Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4138620Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4145119Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4154939Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4161345Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4167492Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4173643Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4180088Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4186590Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4192799Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4199271Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4205372Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4215324Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4225637Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4231790Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4238076Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4244657Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4250902Z 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-04-25T04:35:11.4257438Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4263619Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4270006Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4280299Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4286606Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4293081Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4299426Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4305949Z 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-04-25T04:35:11.4312655Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4320127Z 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-04-25T04:35:11.4326628Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4333247Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4339863Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4346367Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:11.4386785Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-04-25T04:35:11.4389929Z 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-04-25T04:35:11.4395611Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:35:11.4398882Z 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-04-25T04:35:11.4405137Z 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-04-25T04:35:11.4411522Z 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-04-25T04:35:11.4418185Z 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-04-25T04:35:11.4428983Z 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-04-25T04:35:11.4435449Z 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-04-25T04:35:11.4441819Z 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-04-25T04:35:11.4448072Z 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-04-25T04:35:11.4454568Z 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-04-25T04:35:11.4467375Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:35:11.4474101Z 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-04-25T04:35:11.4480248Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:35:11.4486485Z 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-04-25T04:35:11.4492478Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:35:11.4498880Z 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-04-25T04:35:11.4505677Z 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-04-25T04:35:11.4512589Z 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-04-25T04:35:11.4519094Z 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-04-25T04:35:11.4525435Z 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-04-25T04:35:11.4537215Z 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-04-25T04:35:11.4546916Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-04-25T04:35:11.4550260Z 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-04-25T04:35:11.4556586Z 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-04-25T04:35:11.4562696Z 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-04-25T04:35:11.4580780Z 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-04-25T04:35:11.4585980Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:35:11.4589093Z 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-04-25T04:35:11.4595360Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:35:11.4601991Z 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-04-25T04:35:11.4607711Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:35:11.4618725Z 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-04-25T04:35:11.4625090Z 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-04-25T04:35:11.4631529Z 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-04-25T04:35:11.4638997Z 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-04-25T04:35:11.4645224Z 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-04-25T04:35:11.4650326Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-04-25T04:35:11.4653488Z 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-04-25T04:35:11.4660099Z 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-04-25T04:35:11.4666195Z 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-04-25T04:35:11.4676569Z 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-04-25T04:35:11.4682878Z 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-04-25T04:35:11.4688484Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4691325Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4697554Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4703408Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4709454Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4716400Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4727536Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4733804Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4739900Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4746250Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4752830Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4759428Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4765967Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4776255Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4782427Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4788621Z 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-04-25T04:35:11.4794823Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:35:11.4800121Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4802929Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4809755Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4816450Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4822348Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4832970Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4839497Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4845640Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4852180Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4858432Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4865046Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4871591Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4877907Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4884215Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4890516Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4896641Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4903035Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4909396Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4916634Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4922419Z 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-04-25T04:35:11.4928954Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4940235Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4947188Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4953849Z 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-04-25T04:35:11.4960016Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4966212Z 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-04-25T04:35:11.4978927Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4985113Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4991339Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.4997945Z 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-04-25T04:35:11.5008203Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.5014646Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:11.5020577Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-04-25T04:35:11.5024021Z 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-04-25T04:35:11.5030923Z 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-04-25T04:35:11.5038576Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-04-25T04:35:11.5045613Z 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-04-25T04:35:11.5057452Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5060693Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5066902Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5074148Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5080177Z 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-04-25T04:35:11.5091091Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5097612Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5108251Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:11.5115369Z 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-04-25T04:35:11.5121455Z 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-04-25T04:35:11.5127718Z 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-04-25T04:35:11.5133252Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5136451Z 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-04-25T04:35:11.5142740Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5149006Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5159528Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5166315Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5172241Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5178789Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5185128Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5191108Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5197659Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5204124Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5210768Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5218871Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5224972Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5231316Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5237919Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5244933Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5251586Z 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-04-25T04:35:11.5258258Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5264973Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5277624Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:11.5283432Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5286386Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5292910Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5299913Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5305715Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5373555Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5379931Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5386549Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5392797Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5399599Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5423471Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5429694Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5436101Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5442631Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5449124Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5455539Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5466900Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5473330Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5480530Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5486677Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5493100Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5499331Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5511700Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5518882Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5525635Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5532658Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5540293Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5546802Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5553003Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5559708Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5566194Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5581770Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5588535Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5600179Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5607123Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5613560Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5620265Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5626707Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5633461Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5639897Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5645940Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5652310Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5658746Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:11.5664527Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5667406Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5673594Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5679947Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5686156Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5692032Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5704442Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5710828Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5730512Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5736859Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:11.5741779Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-04-25T04:35:11.5744709Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-04-25T04:35:11.5750879Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-04-25T04:35:11.5756566Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:11.5761161Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:11.5772856Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:11.5778911Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:11.5784942Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:11.5794158Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5796985Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5803552Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5815772Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5822297Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5828485Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5839112Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5845439Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5851428Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5857637Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5863874Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5874601Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5881090Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5887474Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5893816Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5900112Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5906337Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5912990Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5919553Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5926335Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5932756Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5939347Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5945777Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5952101Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5958686Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:11.5964258Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-04-25T04:35:11.5972320Z 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-04-25T04:35:11.5978164Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-04-25T04:35:11.5980907Z 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-04-25T04:35:11.5986963Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-04-25T04:35:11.5992498Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:35:11.5995611Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:35:11.6005419Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:35:11.6012620Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:35:11.6018570Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-04-25T04:35:11.6021755Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-04-25T04:35:11.6028771Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-04-25T04:35:11.6034550Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-04-25T04:35:11.6041400Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-04-25T04:35:11.6047623Z 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-04-25T04:35:11.6054794Z 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-04-25T04:35:11.6061316Z 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-04-25T04:35:11.6071652Z 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-04-25T04:35:11.6078170Z 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-04-25T04:35:11.6084580Z 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-04-25T04:35:11.6091048Z 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-04-25T04:35:11.6097585Z 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-04-25T04:35:11.6103794Z 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-04-25T04:35:11.6109184Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-04-25T04:35:11.6111975Z 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-04-25T04:35:11.6118275Z 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-04-25T04:35:11.6124489Z 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-04-25T04:35:11.6129823Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:35:11.6132632Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:35:11.6138675Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:35:11.6144886Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:35:11.6150189Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-04-25T04:35:11.6152861Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-04-25T04:35:11.6158449Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-04-25T04:35:11.6161206Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-04-25T04:35:11.6166340Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-04-25T04:35:11.6169170Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-04-25T04:35:11.6173930Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:35:11.6176682Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:35:11.6182581Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:35:11.6188169Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:35:11.6193531Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6196419Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6202412Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6209100Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6215396Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6225869Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6232121Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6238447Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6244316Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6250545Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6256587Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6262633Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:35:11.6267961Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:35:11.6270936Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:35:11.6277502Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:35:11.6283702Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:35:11.6288881Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:35:11.6291836Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:35:11.6297945Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:35:11.6304328Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:35:11.6309304Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:11.6312395Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:11.6318764Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:11.6325500Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:11.6336135Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:11.6341707Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:35:11.6344212Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:35:11.6373709Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6376653Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6382826Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6389015Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6395198Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6405656Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6411939Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6418200Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6424899Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6431114Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6437617Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6444302Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6450631Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6456970Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6463055Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6469283Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6475752Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:11.6481527Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-04-25T04:35:11.6484414Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-04-25T04:35:11.6489989Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-04-25T04:35:11.6493332Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-04-25T04:35:11.6498638Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6505736Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6512379Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6519088Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6525761Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6537824Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6544594Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6553308Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6559650Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6565751Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6571971Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6578113Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6584462Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6590595Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6597137Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6603337Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6609697Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6616728Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6623774Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6630261Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6636547Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6649409Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6655637Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6662087Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6668832Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6675316Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6681753Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6688152Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6694428Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6700582Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6707106Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6717704Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6723705Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6730082Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6736439Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6742365Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6748640Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6754780Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6761330Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6768096Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6779211Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6786160Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6792370Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6798737Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6805057Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6811164Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:35:11.6816346Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:35:11.6819140Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:35:11.6824982Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:35:11.6830825Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:35:11.6836656Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:11.6842928Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:11.6848938Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:11.6855148Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:11.6861442Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:35:11.6867817Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6885473Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6892154Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6899626Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6906128Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6912958Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6919891Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6926534Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6933596Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6939570Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:35:11.6946714Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6953232Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6959702Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6966475Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6973498Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6980661Z copying torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6987082Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.6998420Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7004934Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7011561Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7018472Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7025906Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7038106Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7044503Z copying torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7051412Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7057837Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7063807Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7070382Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7076804Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7083380Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7090537Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7101305Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7107866Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7115318Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7121950Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7145169Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7151515Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7158007Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7164992Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7171518Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7177660Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7188359Z copying torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7194769Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7201471Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7207772Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7213908Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7220060Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7226699Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7232611Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7239495Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7245685Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:11.7251353Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-04-25T04:35:11.7254547Z 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-04-25T04:35:11.7260929Z 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-04-25T04:35:11.7266212Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-04-25T04:35:11.7269504Z 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-04-25T04:35:11.7276150Z 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-04-25T04:35:11.7281562Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-04-25T04:35:11.7284421Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-04-25T04:35:11.7290200Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-04-25T04:35:11.7296205Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7302414Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7308366Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7315519Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7321986Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7328783Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7335921Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7343019Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7349664Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7355949Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7362436Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7375222Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7381220Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:35:11.7388279Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7394810Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7401870Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7408361Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7414691Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7421179Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:35:11.7427697Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7434325Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7440945Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7447918Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7454722Z copying torch\include\ATen\native\cuda\cutlass_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7461900Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7468430Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7474737Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7481854Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7493615Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7500160Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7506718Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7513529Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7521472Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7528290Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7534961Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7541575Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7548224Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7554742Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7561243Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7567598Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7575778Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7582909Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7589408Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7601392Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7608706Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7614932Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7621090Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7628315Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7635789Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7642529Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7653198Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7659776Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7666768Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7673073Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7679396Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7685774Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:35:11.7692866Z copying torch\_inductor\codegen\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:35:11.7713689Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:35:11.7717103Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:35:11.7734579Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:35:11.7741125Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:11.7752772Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:35:11.7762026Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-04-25T04:35:11.7766837Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-04-25T04:35:11.7810116Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7813047Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7819703Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7826350Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7838205Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7845437Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7851691Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7858143Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:35:11.7863739Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7866709Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7873173Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7879527Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7886155Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7897432Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7903684Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7910146Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7916397Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7923393Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:35:11.7928907Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:35:11.7931888Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:35:11.7937919Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:35:11.7943422Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-04-25T04:35:11.7951080Z 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-04-25T04:35:11.7958280Z 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-04-25T04:35:11.7966199Z 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-04-25T04:35:11.7981187Z 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-04-25T04:35:11.7986539Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-04-25T04:35:11.7989628Z 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-04-25T04:35:11.7996179Z 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-04-25T04:35:11.8002620Z 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-04-25T04:35:11.8014210Z 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-04-25T04:35:11.8020039Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:35:11.8023386Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:35:11.8030651Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:35:11.8037768Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:35:11.8049090Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:11.8063674Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:11.8074628Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:11.8080871Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:11.8091384Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:11.8097995Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:11.8113551Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:11.8128911Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:35:11.8140046Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8152481Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8162258Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8170659Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8186124Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8234788Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8243252Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8249496Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.8260834Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9523761Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9530332Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9671939Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9678876Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9686637Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9694115Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9707357Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:11.9715038Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.5927809Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.5948312Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.5967170Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.5974455Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6162108Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6215111Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6541284Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6884716Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6915891Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.6924037Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7003565Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7009463Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7016660Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7271217Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7280867Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:35:12.7308759Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:35:12.7314362Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:35:12.7505772Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:35:12.7517593Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.7520952Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.7539897Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.7551857Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.7567844Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.7579756Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:12.8064277Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.3188349Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.3195189Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.3201742Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.3208959Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.3216537Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:13.8339972Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.3881335Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.6357296Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.6364446Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.6370924Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8531036Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8537871Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8549959Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8562638Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8569195Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8575630Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.8582422Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.9952002Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.9958507Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.9988377Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:14.9999789Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0011763Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0018293Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0035362Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0046119Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0052668Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0059059Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0081482Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0093336Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0100326Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0107151Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0114629Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0130816Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:35:15.0141145Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.0144423Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.0150890Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.0157191Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1180460Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1199113Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1441913Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1454841Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1465904Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.1487596Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2567138Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2610089Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2630374Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2644498Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2703476Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2714605Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2747939Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2754735Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:35:15.2759522Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2762893Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2773483Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2779664Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2903985Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2915113Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2922000Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2932553Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2943517Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2950182Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2964870Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2976773Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2987878Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.2998715Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3005790Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3017244Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3030411Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3044136Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3084626Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3095530Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3106625Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3117495Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3128303Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3135144Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:35:15.3141816Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:35:15.3153427Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:35:15.3162495Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:35:15.3170347Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:35:15.3178693Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:35:15.3187276Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:35:15.3194910Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:35:15.4094366Z running build_ext 2025-04-25T04:35:21.7497800Z -- Building with NumPy bindings 2025-04-25T04:35:21.7498153Z -- Not using cuDNN 2025-04-25T04:35:21.7498365Z -- Not using CUDA 2025-04-25T04:35:21.7498551Z -- Not using XPU 2025-04-25T04:35:21.7498755Z -- Using MKLDNN 2025-04-25T04:35:21.7499057Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-04-25T04:35:21.7499423Z -- Not using CBLAS in MKLDNN 2025-04-25T04:35:21.7499670Z -- Not using NCCL 2025-04-25T04:35:21.7499887Z -- Building without distributed package 2025-04-25T04:35:21.7500169Z -- Building Executorch 2025-04-25T04:35:21.7500369Z -- Using ITT 2025-04-25T04:35:21.7501012Z 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-04-25T04:35:21.7502082Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-04-25T04:35:21.7517738Z building 'torch._C' extension 2025-04-25T04:35:21.7533906Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-04-25T04:35:21.7563278Z "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-04-25T04:35:21.9009135Z stub.c 2025-04-25T04:35:22.2959631Z "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-04-25T04:35:22.3236455Z 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-04-25T04:35:22.3281750Z Generating code 2025-04-25T04:35:22.3735964Z Finished generating code 2025-04-25T04:35:22.4222650Z 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-04-25T04:35:22.4278984Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:79: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-04-25T04:35:22.4279665Z !! 2025-04-25T04:35:22.4279768Z 2025-04-25T04:35:22.4279885Z ******************************************************************************** 2025-04-25T04:35:22.4280237Z Please avoid running ``setup.py`` directly. 2025-04-25T04:35:22.4280588Z Instead, use pypa/build, pypa/installer or other 2025-04-25T04:35:22.4280917Z standards-based tools. 2025-04-25T04:35:22.4281081Z 2025-04-25T04:35:22.4281364Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-04-25T04:35:22.4281847Z ******************************************************************************** 2025-04-25T04:35:22.4282081Z 2025-04-25T04:35:22.4282150Z !! 2025-04-25T04:35:22.4282329Z self.initialize_options() 2025-04-25T04:35:22.4371980Z installing to build\bdist.win-amd64\wheel 2025-04-25T04:35:22.4372634Z running install 2025-04-25T04:35:22.4393915Z running install_lib 2025-04-25T04:35:22.4486421Z creating build\bdist.win-amd64\wheel 2025-04-25T04:35:22.4491236Z creating build\bdist.win-amd64\wheel\functorch 2025-04-25T04:35:22.4494517Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-04-25T04:35:22.4497723Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-04-25T04:35:22.4503278Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-04-25T04:35:22.4506498Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4512140Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4517512Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4522811Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4533405Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4538686Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4544442Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4549772Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4555221Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:35:22.4561252Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-04-25T04:35:22.4564508Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:35:22.4570179Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:35:22.4575504Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:35:22.4580795Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-04-25T04:35:22.4583866Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:35:22.4588935Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:35:22.4594041Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:35:22.4599377Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-04-25T04:35:22.4614750Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-04-25T04:35:22.4618075Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-04-25T04:35:22.4621484Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-04-25T04:35:22.4626903Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-04-25T04:35:22.4630426Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-04-25T04:35:22.4635765Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-04-25T04:35:22.4639148Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-04-25T04:35:22.4644446Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-04-25T04:35:22.4656211Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-04-25T04:35:22.4661476Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-04-25T04:35:22.4665802Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-04-25T04:35:22.4672380Z creating build\bdist.win-amd64\wheel\torch 2025-04-25T04:35:22.4675683Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-04-25T04:35:22.4678894Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-04-25T04:35:22.4685067Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-04-25T04:35:22.4691690Z creating build\bdist.win-amd64\wheel\torch\amp 2025-04-25T04:35:22.4695296Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:35:22.4701617Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:35:22.4707827Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:35:22.4712851Z creating build\bdist.win-amd64\wheel\torch\ao 2025-04-25T04:35:22.4716652Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-04-25T04:35:22.4719952Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-04-25T04:35:22.4723366Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-04-25T04:35:22.4726887Z 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-04-25T04:35:22.4732170Z 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-04-25T04:35:22.4737611Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-04-25T04:35:22.4740861Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:35:22.4744306Z 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-04-25T04:35:22.4750376Z 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-04-25T04:35:22.4755698Z 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-04-25T04:35:22.4761196Z 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-04-25T04:35:22.4785273Z 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-04-25T04:35:22.4786253Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-04-25T04:35:22.4786786Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:35:22.4787380Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:35:22.4788363Z 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-04-25T04:35:22.4790960Z 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-04-25T04:35:22.4795785Z 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-04-25T04:35:22.4800892Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:35:22.4804120Z 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-04-25T04:35:22.4809302Z 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-04-25T04:35:22.4814438Z 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-04-25T04:35:22.4819942Z 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-04-25T04:35:22.4825105Z 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-04-25T04:35:22.4834470Z 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-04-25T04:35:22.4839508Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-04-25T04:35:22.4845043Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-04-25T04:35:22.4848017Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-04-25T04:35:22.4851173Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:35:22.4854484Z 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-04-25T04:35:22.4859596Z 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-04-25T04:35:22.4864448Z 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-04-25T04:35:22.4869413Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-04-25T04:35:22.4873031Z 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-04-25T04:35:22.4878800Z 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-04-25T04:35:22.4884201Z 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-04-25T04:35:22.4889789Z 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-04-25T04:35:22.4894812Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-04-25T04:35:22.4899881Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-04-25T04:35:22.4903142Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-04-25T04:35:22.4906316Z 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-04-25T04:35:22.4912352Z 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-04-25T04:35:22.4922847Z 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-04-25T04:35:22.4927766Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-04-25T04:35:22.4932756Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-04-25T04:35:22.4940882Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-04-25T04:35:22.4944034Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:35:22.4947311Z 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-04-25T04:35:22.4953078Z 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-04-25T04:35:22.4958393Z 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-04-25T04:35:22.4964940Z 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-04-25T04:35:22.4970423Z 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-04-25T04:35:22.4976126Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-04-25T04:35:22.4982963Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-04-25T04:35:22.4986365Z 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-04-25T04:35:22.4991861Z 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-04-25T04:35:22.4997382Z 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-04-25T04:35:22.5003854Z 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-04-25T04:35:22.5009441Z 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-04-25T04:35:22.5019393Z 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-04-25T04:35:22.5024992Z 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-04-25T04:35:22.5030287Z 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-04-25T04:35:22.5039863Z 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-04-25T04:35:22.5045001Z 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-04-25T04:35:22.5050229Z 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-04-25T04:35:22.5055682Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-04-25T04:35:22.5063527Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-04-25T04:35:22.5067082Z 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-04-25T04:35:22.5072436Z 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-04-25T04:35:22.5077867Z 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-04-25T04:35:22.5083737Z 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-04-25T04:35:22.5089688Z 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-04-25T04:35:22.5094978Z 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-04-25T04:35:22.5100893Z 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-04-25T04:35:22.5105806Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-04-25T04:35:22.5119469Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-04-25T04:35:22.5122742Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-04-25T04:35:22.5126020Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:35:22.5129227Z 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-04-25T04:35:22.5134938Z 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-04-25T04:35:22.5139881Z 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-04-25T04:35:22.5145114Z 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-04-25T04:35:22.5150361Z 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-04-25T04:35:22.5155293Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-04-25T04:35:22.5160240Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-04-25T04:35:22.5165975Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-04-25T04:35:22.5169780Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-04-25T04:35:22.5172786Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5178756Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5184743Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5191023Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5196521Z 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-04-25T04:35:22.5207288Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5212793Z 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-04-25T04:35:22.5218133Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5223713Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5230535Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-04-25T04:35:22.5234986Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-04-25T04:35:22.5246049Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-04-25T04:35:22.5252235Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-04-25T04:35:22.5256756Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-04-25T04:35:22.5259982Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-04-25T04:35:22.5263207Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-04-25T04:35:22.5269115Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-04-25T04:35:22.5274617Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-04-25T04:35:22.5285239Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-04-25T04:35:22.5289750Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-04-25T04:35:22.5292905Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-04-25T04:35:22.5302368Z 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-04-25T04:35:22.5307726Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-04-25T04:35:22.5318258Z 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-04-25T04:35:22.5323639Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-04-25T04:35:22.5328164Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-04-25T04:35:22.5331942Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:35:22.5335760Z 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-04-25T04:35:22.5341723Z 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-04-25T04:35:22.5346237Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:35:22.5349802Z 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-04-25T04:35:22.5355430Z 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-04-25T04:35:22.5360513Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:35:22.5369660Z 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-04-25T04:35:22.5375195Z 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-04-25T04:35:22.5381014Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-04-25T04:35:22.5389827Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-04-25T04:35:22.5393417Z 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-04-25T04:35:22.5399256Z 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-04-25T04:35:22.5404826Z 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-04-25T04:35:22.5415429Z 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-04-25T04:35:22.5419939Z 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-04-25T04:35:22.5425338Z 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-04-25T04:35:22.5430689Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-04-25T04:35:22.5434577Z 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-04-25T04:35:22.5440063Z 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-04-25T04:35:22.5445569Z 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-04-25T04:35:22.5457357Z 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-04-25T04:35:22.5462910Z 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-04-25T04:35:22.5468195Z 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-04-25T04:35:22.5473997Z 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-04-25T04:35:22.5479474Z 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-04-25T04:35:22.5485136Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-04-25T04:35:22.5489468Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-04-25T04:35:22.5501528Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-04-25T04:35:22.5506885Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-04-25T04:35:22.5510195Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-04-25T04:35:22.5513601Z 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-04-25T04:35:22.5519592Z 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-04-25T04:35:22.5525936Z 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-04-25T04:35:22.5531256Z 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-04-25T04:35:22.5543079Z 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-04-25T04:35:22.5547923Z 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-04-25T04:35:22.5554126Z 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-04-25T04:35:22.5559406Z 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-04-25T04:35:22.5564751Z 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-04-25T04:35:22.5569986Z 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-04-25T04:35:22.5575354Z 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-04-25T04:35:22.5581034Z 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-04-25T04:35:22.5586439Z 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-04-25T04:35:22.5591641Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5597639Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5609361Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5614994Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-04-25T04:35:22.5618305Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5624625Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5630417Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5635800Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5641053Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5653214Z 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-04-25T04:35:22.5658478Z 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-04-25T04:35:22.5664129Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5669407Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5674708Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5679825Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5696923Z 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-04-25T04:35:22.5702269Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5707448Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5716529Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5722366Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5728505Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5734964Z 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-04-25T04:35:22.5741452Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-04-25T04:35:22.5744786Z 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-04-25T04:35:22.5752559Z 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-04-25T04:35:22.5758682Z 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-04-25T04:35:22.5770300Z 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-04-25T04:35:22.5776220Z 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-04-25T04:35:22.5780429Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-04-25T04:35:22.5785867Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5792380Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5795686Z 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-04-25T04:35:22.5800970Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5806127Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5811261Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5822540Z 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-04-25T04:35:22.5827746Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5837331Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5843473Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-04-25T04:35:22.5847283Z 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-04-25T04:35:22.5853005Z 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-04-25T04:35:22.5857801Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5863546Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5869749Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5875360Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-04-25T04:35:22.5879603Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5885477Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5890976Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5927107Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5932924Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5936390Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5941613Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5946912Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5957167Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5962578Z 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-04-25T04:35:22.5968938Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5974634Z 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-04-25T04:35:22.5980966Z 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-04-25T04:35:22.5986198Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-04-25T04:35:22.5991177Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.5997266Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6002984Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6008437Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6017872Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6023234Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6029063Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6034824Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6040427Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6045942Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:35:22.6051334Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-04-25T04:35:22.6056963Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-04-25T04:35:22.6060125Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6066140Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6071710Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6077600Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6095543Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6102124Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6107628Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6113371Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6119602Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6125409Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6132574Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6138068Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-04-25T04:35:22.6141460Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:35:22.6146856Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:35:22.6152262Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:35:22.6157285Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:35:22.6163320Z creating build\bdist.win-amd64\wheel\torch\backends 2025-04-25T04:35:22.6166595Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-04-25T04:35:22.6169808Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-04-25T04:35:22.6179593Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-04-25T04:35:22.6182684Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-04-25T04:35:22.6188865Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-04-25T04:35:22.6192444Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-04-25T04:35:22.6197843Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-04-25T04:35:22.6203838Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-04-25T04:35:22.6207450Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-04-25T04:35:22.6213917Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-04-25T04:35:22.6217571Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-04-25T04:35:22.6223301Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-04-25T04:35:22.6237557Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-04-25T04:35:22.6243027Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-04-25T04:35:22.6246278Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-04-25T04:35:22.6251762Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-04-25T04:35:22.6254934Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-04-25T04:35:22.6260600Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-04-25T04:35:22.6263943Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-04-25T04:35:22.6269312Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-04-25T04:35:22.6272365Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-04-25T04:35:22.6277886Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-04-25T04:35:22.6281508Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-04-25T04:35:22.6290660Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-04-25T04:35:22.6294074Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-04-25T04:35:22.6299682Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-04-25T04:35:22.6303435Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-04-25T04:35:22.6309353Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-04-25T04:35:22.6311765Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-04-25T04:35:22.6317466Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-04-25T04:35:22.6321864Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-04-25T04:35:22.6325037Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-04-25T04:35:22.6330335Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-04-25T04:35:22.6333445Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-04-25T04:35:22.6338700Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-04-25T04:35:22.6343113Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-04-25T04:35:22.6346493Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:35:22.6356373Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:35:22.6362769Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:35:22.6367455Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-04-25T04:35:22.6373196Z creating build\bdist.win-amd64\wheel\torch\bin 2025-04-25T04:35:22.6376273Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6384778Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6430667Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6439273Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6466973Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6483293Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6564114Z copying build\lib.win-amd64-cpython-39\torch\bin\test_edge_op_registration.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6572643Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6619866Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6645066Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6701304Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:35:22.6709016Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-04-25T04:35:22.6720669Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:35:22.6726142Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:35:22.6731621Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:35:22.6742700Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-04-25T04:35:22.6746448Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-04-25T04:35:22.6752485Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-04-25T04:35:22.6757351Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-04-25T04:35:22.6760520Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-04-25T04:35:22.6763828Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:35:22.6769143Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:35:22.6774401Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:35:22.6780343Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-04-25T04:35:22.6785731Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-04-25T04:35:22.6789223Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-04-25T04:35:22.6792365Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:35:22.6797689Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:35:22.6803070Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:35:22.6808145Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:35:22.6812883Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6817856Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6821995Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6827092Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6832696Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6846081Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6852174Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6857275Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6862507Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6867590Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6873486Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6878449Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6883494Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6889739Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6894507Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6900398Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6906066Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6911971Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:35:22.6919148Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-04-25T04:35:22.6922482Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-04-25T04:35:22.6925851Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:35:22.6929370Z 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-04-25T04:35:22.6935138Z 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-04-25T04:35:22.6940393Z 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-04-25T04:35:22.6953935Z 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-04-25T04:35:22.6959342Z 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-04-25T04:35:22.6964644Z 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-04-25T04:35:22.6969886Z 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-04-25T04:35:22.6975911Z 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-04-25T04:35:22.6981200Z 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-04-25T04:35:22.6986248Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-04-25T04:35:22.6992178Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-04-25T04:35:22.6995733Z 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-04-25T04:35:22.7001305Z 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-04-25T04:35:22.7006583Z 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-04-25T04:35:22.7020614Z 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-04-25T04:35:22.7025061Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-04-25T04:35:22.7036629Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-04-25T04:35:22.7042449Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-04-25T04:35:22.7046914Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:35:22.7050321Z 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-04-25T04:35:22.7055811Z 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-04-25T04:35:22.7061071Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:35:22.7064605Z 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-04-25T04:35:22.7070151Z 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-04-25T04:35:22.7079680Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-04-25T04:35:22.7082903Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-04-25T04:35:22.7088414Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-04-25T04:35:22.7092723Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-04-25T04:35:22.7098118Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7103812Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-04-25T04:35:22.7106930Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-04-25T04:35:22.7112193Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7126477Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-04-25T04:35:22.7129439Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7135993Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7141989Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7147898Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7160650Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7166473Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7171690Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7176918Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7182695Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7188403Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7194677Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7200483Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7206313Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7211914Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7218402Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7224190Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7229927Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7235350Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7241093Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7246614Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7252323Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7258262Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7263697Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7277017Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7282244Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7287582Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7292969Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7298328Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7303537Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7313280Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7319411Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7325079Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7338121Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7343021Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:35:22.7348237Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7353652Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7359258Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7365362Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.7373147Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-04-25T04:35:22.7376354Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-04-25T04:35:22.7379489Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-04-25T04:35:22.7382705Z 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-04-25T04:35:22.7388757Z 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-04-25T04:35:22.7394085Z 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-04-25T04:35:22.7399733Z 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-04-25T04:35:22.7404973Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-04-25T04:35:22.7409728Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-04-25T04:35:22.7415076Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-04-25T04:35:22.7418231Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-04-25T04:35:22.7423373Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-04-25T04:35:22.7428401Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-04-25T04:35:22.7433651Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-04-25T04:35:22.7436858Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-04-25T04:35:22.7442320Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-04-25T04:35:22.7447657Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-04-25T04:35:22.7459490Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-04-25T04:35:22.7465267Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:35:22.7468599Z 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-04-25T04:35:22.7474441Z 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-04-25T04:35:22.7479288Z 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-04-25T04:35:22.7484450Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-04-25T04:35:22.7489836Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:35:22.7501485Z 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-04-25T04:35:22.7506923Z 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-04-25T04:35:22.7512621Z 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-04-25T04:35:22.7517486Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-04-25T04:35:22.7527086Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-04-25T04:35:22.7532620Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7535843Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7541261Z 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-04-25T04:35:22.7546556Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7560933Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7571453Z 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-04-25T04:35:22.7577354Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7582513Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7588084Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7593613Z 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-04-25T04:35:22.7599570Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7604965Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7610317Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-04-25T04:35:22.7615801Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-04-25T04:35:22.7619158Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-04-25T04:35:22.7624613Z 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-04-25T04:35:22.7630143Z 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-04-25T04:35:22.7635975Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-04-25T04:35:22.7650692Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-04-25T04:35:22.7656221Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-04-25T04:35:22.7659542Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7664979Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-04-25T04:35:22.7668470Z 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-04-25T04:35:22.7674501Z 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-04-25T04:35:22.7712704Z 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-04-25T04:35:22.7722321Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7727873Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7733100Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7746855Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7752111Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-04-25T04:35:22.7757121Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-04-25T04:35:22.7762781Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-04-25T04:35:22.7766199Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7772080Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7778360Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7783925Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7789643Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7804368Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7809681Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7814898Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7820541Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7827254Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7856964Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-04-25T04:35:22.7860229Z 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-04-25T04:35:22.7865603Z 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-04-25T04:35:22.7871399Z 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-04-25T04:35:22.7884962Z 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-04-25T04:35:22.7890232Z 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-04-25T04:35:22.7900198Z 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-04-25T04:35:22.7906051Z 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-04-25T04:35:22.7911767Z 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-04-25T04:35:22.7917772Z 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-04-25T04:35:22.7922667Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7928687Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7934084Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7940424Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7947060Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7953009Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7958532Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7963787Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7974521Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7989018Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7994654Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:35:22.7999753Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8005113Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-04-25T04:35:22.8008246Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-04-25T04:35:22.8013344Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-04-25T04:35:22.8022646Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8027800Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-04-25T04:35:22.8030950Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-04-25T04:35:22.8034199Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-04-25T04:35:22.8040139Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-04-25T04:35:22.8044325Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-04-25T04:35:22.8049965Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-04-25T04:35:22.8053111Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-04-25T04:35:22.8058886Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-04-25T04:35:22.8062113Z 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-04-25T04:35:22.8067277Z 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-04-25T04:35:22.8071525Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-04-25T04:35:22.8075744Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-04-25T04:35:22.8085048Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-04-25T04:35:22.8088354Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8093680Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8098851Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8114403Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8119669Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8129140Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8134898Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8140262Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8145620Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8151818Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8157806Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8163688Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8169051Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8174498Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8181762Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8187345Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8192394Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:35:22.8198189Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-04-25T04:35:22.8201911Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8208122Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8214507Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8244715Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8245797Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8246813Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8249982Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8254426Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8259783Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8265098Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:35:22.8270146Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8275913Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8281753Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-04-25T04:35:22.8284865Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8290699Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8296567Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8301717Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8315547Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8320715Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8325992Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8331318Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8336858Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-04-25T04:35:22.8340194Z 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-04-25T04:35:22.8346126Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-04-25T04:35:22.8358528Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8363912Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:35:22.8368811Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8374750Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-04-25T04:35:22.8377933Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-04-25T04:35:22.8381306Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-04-25T04:35:22.8387034Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-04-25T04:35:22.8392399Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-04-25T04:35:22.8397705Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-04-25T04:35:22.8411958Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8417072Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8420373Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8426471Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8431876Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8450343Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8456627Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-04-25T04:35:22.8461953Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8465426Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8470490Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8475556Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8481038Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8486148Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8491661Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8506547Z 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-04-25T04:35:22.8511589Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8516971Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-04-25T04:35:22.8522030Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8537469Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8543629Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8548898Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8558573Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8564088Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8567382Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8572607Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8577793Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8582984Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8597659Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8602826Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8608718Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8614799Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8620908Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8626057Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8631931Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8637865Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-04-25T04:35:22.8642809Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8648691Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8654240Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8659902Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8665961Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8671364Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8676634Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8681829Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:35:22.8687178Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8692438Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8698097Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-04-25T04:35:22.8710710Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:35:22.8716150Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:35:22.8721461Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-04-25T04:35:22.8724681Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-04-25T04:35:22.8730076Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-04-25T04:35:22.8734936Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:35:22.8749641Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:35:22.8754649Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8759906Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8766022Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8771434Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.8777040Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-04-25T04:35:22.8780175Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.8785654Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-04-25T04:35:22.8788887Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-04-25T04:35:22.8793922Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.8799200Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.8804355Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.8819378Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-04-25T04:35:22.8822647Z 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-04-25T04:35:22.8831930Z 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-04-25T04:35:22.8837327Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-04-25T04:35:22.8840571Z 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-04-25T04:35:22.8846750Z 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-04-25T04:35:22.8851896Z 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-04-25T04:35:22.8856782Z 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-04-25T04:35:22.8861901Z 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-04-25T04:35:22.8875861Z 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-04-25T04:35:22.8880972Z 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-04-25T04:35:22.8886277Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:35:22.8889780Z 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-04-25T04:35:22.8895761Z 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-04-25T04:35:22.8901009Z 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-04-25T04:35:22.8910347Z 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-04-25T04:35:22.8916081Z 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-04-25T04:35:22.8930690Z 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-04-25T04:35:22.8936015Z 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-04-25T04:35:22.8941522Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.8946929Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-04-25T04:35:22.8950212Z 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-04-25T04:35:22.8955575Z 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-04-25T04:35:22.8960886Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-04-25T04:35:22.8964157Z 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-04-25T04:35:22.8969484Z 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-04-25T04:35:22.8974925Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-04-25T04:35:22.8987706Z 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-04-25T04:35:22.8993110Z 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-04-25T04:35:22.8998944Z 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-04-25T04:35:22.9013501Z 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-04-25T04:35:22.9017772Z 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-04-25T04:35:22.9023154Z 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-04-25T04:35:22.9028118Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.9038033Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:35:22.9043088Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-04-25T04:35:22.9046491Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-04-25T04:35:22.9051693Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-04-25T04:35:22.9055636Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-04-25T04:35:22.9060588Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.9066118Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-04-25T04:35:22.9069457Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-04-25T04:35:22.9075693Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-04-25T04:35:22.9087849Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:35:22.9093215Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:35:22.9102597Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:35:22.9106018Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-04-25T04:35:22.9109671Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9115654Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9121155Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9126736Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9147233Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9152457Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9159112Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9164719Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9170445Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9176260Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9181401Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:35:22.9186327Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:35:22.9192517Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-04-25T04:35:22.9195981Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9201286Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9206213Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9211565Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9226376Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9232701Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9238450Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9244935Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9250844Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9256604Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9262053Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9267522Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9273084Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9282484Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9287625Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9292937Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9299468Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9304558Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9309895Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9315417Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9320898Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9326512Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9342739Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9381177Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9386724Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9391938Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9397576Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9403344Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9408714Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9414110Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9419564Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9425316Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9434807Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9440588Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9446013Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9451147Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9456133Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9461299Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9466817Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9472058Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9477408Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9482675Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9488498Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9493898Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9499144Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9513608Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9518832Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9524392Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:35:22.9529998Z creating build\bdist.win-amd64\wheel\torch\export 2025-04-25T04:35:22.9533156Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9538285Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9543738Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9548930Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9582357Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-04-25T04:35:22.9585826Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-04-25T04:35:22.9591061Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9598204Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9604420Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-04-25T04:35:22.9607623Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-04-25T04:35:22.9612930Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9619950Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9625551Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9630925Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9636423Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9642027Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9647672Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9654319Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9659702Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9665468Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9670661Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:35:22.9676703Z creating build\bdist.win-amd64\wheel\torch\fft 2025-04-25T04:35:22.9679814Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-04-25T04:35:22.9686251Z creating build\bdist.win-amd64\wheel\torch\func 2025-04-25T04:35:22.9689358Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-04-25T04:35:22.9694449Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:22.9701156Z creating build\bdist.win-amd64\wheel\torch\futures 2025-04-25T04:35:22.9704433Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-04-25T04:35:22.9710541Z creating build\bdist.win-amd64\wheel\torch\fx 2025-04-25T04:35:22.9714252Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:22.9721069Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:22.9727057Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-04-25T04:35:22.9730216Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9736118Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9741503Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9756999Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9762956Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9768077Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9774335Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:35:22.9777799Z 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-04-25T04:35:22.9783699Z 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-04-25T04:35:22.9789843Z 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-04-25T04:35:22.9894204Z 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-04-25T04:35:22.9899195Z 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-04-25T04:35:22.9904996Z 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-04-25T04:35:22.9910241Z 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-04-25T04:35:22.9915950Z 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-04-25T04:35:22.9920078Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9925600Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9931950Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9937644Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9944329Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9950232Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9955658Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9960977Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9966454Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9975234Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:22.9981713Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-04-25T04:35:22.9985189Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:22.9991038Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:22.9996158Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0001289Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0006828Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:35:23.0019642Z 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-04-25T04:35:23.0025011Z 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-04-25T04:35:23.0030219Z 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-04-25T04:35:23.0035958Z 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-04-25T04:35:23.0041864Z 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-04-25T04:35:23.0056985Z 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-04-25T04:35:23.0062645Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0067705Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0072841Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0078086Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-04-25T04:35:23.0083164Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0088812Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0104553Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0111142Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0116529Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0121908Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0132030Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:35:23.0136355Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0142730Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0158307Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0163579Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0169192Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0179295Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0185639Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-04-25T04:35:23.0188937Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0194553Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-04-25T04:35:23.0197860Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-04-25T04:35:23.0203876Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-04-25T04:35:23.0208278Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-04-25T04:35:23.0211498Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-04-25T04:35:23.0214732Z 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-04-25T04:35:23.0220238Z 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-04-25T04:35:23.0224542Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-04-25T04:35:23.0229237Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0248165Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0249941Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0255233Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0260676Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-04-25T04:35:23.0264455Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-04-25T04:35:23.0269930Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-04-25T04:35:23.0275162Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-04-25T04:35:23.0280489Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-04-25T04:35:23.0295691Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0301804Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0307179Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0312378Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0317580Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0337399Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0343554Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0348738Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0354658Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0360793Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0366444Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-04-25T04:35:23.0369675Z 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-04-25T04:35:23.0375080Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-04-25T04:35:23.0379364Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0384927Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-04-25T04:35:23.0397970Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-04-25T04:35:23.0403103Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-04-25T04:35:23.0408322Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-04-25T04:35:23.0414034Z 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-04-25T04:35:23.0429520Z 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-04-25T04:35:23.0435059Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-04-25T04:35:23.0440023Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0445263Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:35:23.0450098Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0462765Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0468056Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0473211Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0478624Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0484019Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0489751Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0495284Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0500914Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0507006Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0512137Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:35:23.0517450Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:23.0524088Z creating build\bdist.win-amd64\wheel\torch\include 2025-04-25T04:35:23.0527248Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-04-25T04:35:23.0530922Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-04-25T04:35:23.0534472Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0540515Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0545739Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0551235Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0568064Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0575636Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0581428Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0587036Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64utils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0592300Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0597439Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-04-25T04:35:23.0603309Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0608988Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0613788Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0618835Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0633231Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-04-25T04:35:23.0636582Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0642319Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0647416Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0656910Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0672013Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0677841Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0683339Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0689122Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0695313Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0700412Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0705629Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0711351Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0717654Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0723439Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0728698Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0735363Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0741618Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0746903Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0752733Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0758621Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0763923Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0769047Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0776084Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0781243Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0786552Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0792853Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0807879Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0813061Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0819022Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0824268Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0829425Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0834541Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0844100Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0849471Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0854574Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-04-25T04:35:23.0860546Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0867463Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-04-25T04:35:23.0870833Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0876609Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0885795Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0891394Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0909082Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0916232Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0922380Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-04-25T04:35:23.0928585Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:35:23.0936006Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-04-25T04:35:23.0939250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0944569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0949360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0954538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0960391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0975189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0980398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0985724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0990811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.0995973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1001293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1007011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1012661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1018931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1024815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1031542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1040597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1047417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1053385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1067920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1073190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.1080437Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-04-25T04:35:23.1084143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1094328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1099782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1104055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1146707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1152034Z 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-04-25T04:35:23.1173087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1178719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1183556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1189165Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-04-25T04:35:23.1192549Z 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-04-25T04:35:23.1198780Z 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-04-25T04:35:23.1204271Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-04-25T04:35:23.1207596Z 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-04-25T04:35:23.1213280Z 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-04-25T04:35:23.1219823Z 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-04-25T04:35:23.1225812Z 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-04-25T04:35:23.1241453Z 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-04-25T04:35:23.1246919Z 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-04-25T04:35:23.1262761Z 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-04-25T04:35:23.1268256Z 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-04-25T04:35:23.1273897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1279386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1285275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1290555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1295988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1301607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1307224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1312680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1318175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1323285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1328377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1333729Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-04-25T04:35:23.1336961Z 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-04-25T04:35:23.1342407Z 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-04-25T04:35:23.1348434Z 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-04-25T04:35:23.1353737Z 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-04-25T04:35:23.1369582Z 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-04-25T04:35:23.1375133Z 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-04-25T04:35:23.1380495Z 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-04-25T04:35:23.1385835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1400934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1406363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1411970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1417314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1422863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1427976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1433320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1439334Z 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-04-25T04:35:23.1444646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1450057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1460689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1475587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1481334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1487007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1492523Z 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-04-25T04:35:23.1498211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1504706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1511818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1519527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.1529102Z 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-04-25T04:35:23.1539023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2558429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2564286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2570154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2575877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2581391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2586866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2592933Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-04-25T04:35:23.2596644Z 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-04-25T04:35:23.2602144Z 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-04-25T04:35:23.2607569Z 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-04-25T04:35:23.2612872Z 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-04-25T04:35:23.2718789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2724484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2730236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2735676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2879460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2888549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2893503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2898755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2904199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2909116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2914124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2919348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2924920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2930136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2935511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2941475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2968142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2973543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2978857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2983849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2989118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2994670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.2999641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.3005101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.3010447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.3015634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-04-25T04:35:23.3021258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3027059Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-04-25T04:35:23.3030289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-04-25T04:35:23.3035239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-04-25T04:35:23.3040988Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-04-25T04:35:23.3044209Z 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-04-25T04:35:23.3049206Z 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-04-25T04:35:23.3054560Z 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-04-25T04:35:23.3060338Z 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-04-25T04:35:23.3075624Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-04-25T04:35:23.3078860Z 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-04-25T04:35:23.3088506Z 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-04-25T04:35:23.3093909Z 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-04-25T04:35:23.3099665Z 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-04-25T04:35:23.3115169Z 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-04-25T04:35:23.3120822Z 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-04-25T04:35:23.3126496Z 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-04-25T04:35:23.3148575Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:35:23.3152098Z 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-04-25T04:35:23.3157360Z 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-04-25T04:35:23.3163193Z 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-04-25T04:35:23.3173557Z 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-04-25T04:35:23.3187856Z 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-04-25T04:35:23.3194110Z 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-04-25T04:35:23.3200108Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:35:23.3203488Z 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-04-25T04:35:23.3209004Z 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-04-25T04:35:23.3214021Z 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-04-25T04:35:23.3219418Z 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-04-25T04:35:23.3235385Z 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-04-25T04:35:23.3242834Z 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-04-25T04:35:23.3249116Z 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-04-25T04:35:23.3255279Z 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-04-25T04:35:23.3260943Z 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-04-25T04:35:23.3272713Z 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-04-25T04:35:23.3279147Z 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-04-25T04:35:23.3284570Z 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-04-25T04:35:23.3291134Z 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-04-25T04:35:23.3296698Z 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-04-25T04:35:23.3303329Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-04-25T04:35:23.3306574Z 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-04-25T04:35:23.3312113Z 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-04-25T04:35:23.3318472Z 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-04-25T04:35:23.3334361Z 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-04-25T04:35:23.3339972Z 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-04-25T04:35:23.3345683Z 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-04-25T04:35:23.3351821Z 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-04-25T04:35:23.3357537Z 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-04-25T04:35:23.3363141Z 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-04-25T04:35:23.3368583Z 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-04-25T04:35:23.3373960Z 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-04-25T04:35:23.3379798Z 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-04-25T04:35:23.3389658Z 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-04-25T04:35:23.3395745Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-04-25T04:35:23.3399126Z 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-04-25T04:35:23.3405977Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:35:23.3409471Z 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-04-25T04:35:23.3414837Z 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-04-25T04:35:23.3420929Z 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-04-25T04:35:23.3426697Z 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-04-25T04:35:23.3441934Z 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-04-25T04:35:23.3447839Z 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-04-25T04:35:23.3453465Z 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-04-25T04:35:23.3459333Z 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-04-25T04:35:23.3465677Z 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-04-25T04:35:23.3476320Z 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-04-25T04:35:23.3482345Z 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-04-25T04:35:23.3488315Z 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-04-25T04:35:23.3493700Z 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-04-25T04:35:23.3498894Z 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-04-25T04:35:23.3504044Z 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-04-25T04:35:23.3509250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-04-25T04:35:23.3514652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3520200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3525678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3531047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3536832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3546930Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-04-25T04:35:23.3550191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3555521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3560700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3565674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3571608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3586474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3592344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3598088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3603653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3608839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3614583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3624083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3629157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3634842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3640052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3645297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3650572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3656675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3662061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3667325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3672619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3687736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3693239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3698930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3705116Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-04-25T04:35:23.3708455Z 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-04-25T04:35:23.3713977Z 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-04-25T04:35:23.3720466Z 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-04-25T04:35:23.3725707Z 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-04-25T04:35:23.3744937Z 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-04-25T04:35:23.3750833Z 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-04-25T04:35:23.3756539Z 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-04-25T04:35:23.3762967Z 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-04-25T04:35:23.3768874Z 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-04-25T04:35:23.3775161Z 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-04-25T04:35:23.3780549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3785961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3791429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3797102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3802566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3807882Z 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-04-25T04:35:23.3826459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3831879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3837071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3842110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3847566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3852889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3858574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3863604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:35:23.3869043Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-04-25T04:35:23.3872285Z 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-04-25T04:35:23.3878337Z 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-04-25T04:35:23.3883933Z 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-04-25T04:35:23.3889134Z 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-04-25T04:35:23.3904183Z 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-04-25T04:35:23.3909445Z 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-04-25T04:35:23.3914980Z 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-04-25T04:35:23.3920562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3935412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.3941416Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-04-25T04:35:23.3944875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3949970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3955745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3960665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3965501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3985725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-04-25T04:35:23.3991136Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-04-25T04:35:23.3994708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4000291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4005598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4020199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4029708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4035369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4040741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4046093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4051509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4057220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4062815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-04-25T04:35:23.4068140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4073277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4078796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4084843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4089861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4128653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4134368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4140051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4145670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4151353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4160575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4166546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4171968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4177487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4183335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4188651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4194342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4202878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4209555Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-04-25T04:35:23.4213416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4219387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4225592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4241682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4246095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4253065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4259004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4263478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4269079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4274301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4279689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4284867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4290216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-04-25T04:35:23.4296763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4312216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4317505Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-04-25T04:35:23.4320622Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-04-25T04:35:23.4324683Z 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-04-25T04:35:23.4330332Z 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-04-25T04:35:23.4335370Z 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-04-25T04:35:23.4350513Z 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-04-25T04:35:23.4355830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4361203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4366935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4372471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4377578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4382758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4388698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4394307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4418116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4423463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4435320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4440612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4446112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4451406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4456729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4462305Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-04-25T04:35:23.4465421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-04-25T04:35:23.4470609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4476327Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-04-25T04:35:23.4488944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4494145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4499285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4508563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4523325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4532652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-04-25T04:35:23.4534961Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-04-25T04:35:23.4538356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4543740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4548644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4554699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4569952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4574893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4580164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4585355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4590834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4595946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4601508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-04-25T04:35:23.4606842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4611974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.4618788Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-04-25T04:35:23.4622040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4627387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4633381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4638277Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-04-25T04:35:23.4651531Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-04-25T04:35:23.4655223Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-04-25T04:35:23.4659010Z 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-04-25T04:35:23.4664695Z 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-04-25T04:35:23.4670088Z 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-04-25T04:35:23.4678424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4683930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4689201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4695092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4700669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4705718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4732095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4737825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4743563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4751177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4759383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.4765568Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-04-25T04:35:23.4769270Z 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-04-25T04:35:23.4774995Z 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-04-25T04:35:23.4780517Z 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-04-25T04:35:23.4785853Z 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-04-25T04:35:23.4874796Z 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-04-25T04:35:23.4883864Z 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-04-25T04:35:23.4888855Z 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-04-25T04:35:23.4894650Z 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-04-25T04:35:23.4900050Z 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-04-25T04:35:23.4905423Z 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-04-25T04:35:23.4910698Z 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-04-25T04:35:23.4919986Z 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-04-25T04:35:23.4925243Z 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-04-25T04:35:23.4930444Z 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-04-25T04:35:23.4935660Z 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-04-25T04:35:23.4940972Z 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-04-25T04:35:23.4946105Z 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-04-25T04:35:23.4951554Z 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-04-25T04:35:23.4957202Z 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-04-25T04:35:23.4962655Z 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-04-25T04:35:23.5271433Z 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-04-25T04:35:23.5277254Z 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-04-25T04:35:23.5282396Z 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-04-25T04:35:23.5287922Z 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-04-25T04:35:23.5293105Z 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-04-25T04:35:23.5298547Z 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-04-25T04:35:23.5304032Z 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-04-25T04:35:23.5309416Z 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-04-25T04:35:23.5314703Z 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-04-25T04:35:23.5321239Z 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-04-25T04:35:23.5326757Z 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-04-25T04:35:23.5340921Z 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-04-25T04:35:23.5346279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5352160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5356999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5363964Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-04-25T04:35:23.5367204Z 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-04-25T04:35:23.5372322Z 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-04-25T04:35:23.5377523Z 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-04-25T04:35:23.5382883Z 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-04-25T04:35:23.5397501Z 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-04-25T04:35:23.5402754Z 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-04-25T04:35:23.5408329Z 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-04-25T04:35:23.5414414Z 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-04-25T04:35:23.5420694Z 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-04-25T04:35:23.5426043Z 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-04-25T04:35:23.5431280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\cutlass_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-04-25T04:35:23.5437099Z 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-04-25T04:35:23.5442384Z 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-04-25T04:35:23.5448122Z 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-04-25T04:35:23.5454045Z 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-04-25T04:35:23.5459219Z 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-04-25T04:35:23.5465019Z 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-04-25T04:35:23.5470392Z 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-04-25T04:35:23.5485604Z 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-04-25T04:35:23.5490955Z 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-04-25T04:35:23.5496607Z 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-04-25T04:35:23.5501823Z 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-04-25T04:35:23.5507220Z 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-04-25T04:35:23.5512704Z 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-04-25T04:35:23.5518464Z 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-04-25T04:35:23.5523615Z 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-04-25T04:35:23.5535722Z 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-04-25T04:35:23.5541075Z 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-04-25T04:35:23.5556284Z 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-04-25T04:35:23.5561614Z 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-04-25T04:35:23.5567121Z 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-04-25T04:35:23.5572622Z 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-04-25T04:35:23.5577790Z 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-04-25T04:35:23.5583282Z 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-04-25T04:35:23.5590191Z 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-04-25T04:35:23.5596307Z 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-04-25T04:35:23.5601881Z 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-04-25T04:35:23.5607363Z 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-04-25T04:35:23.5614388Z 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-04-25T04:35:23.5629482Z 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-04-25T04:35:23.5634897Z 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-04-25T04:35:23.5640167Z 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-04-25T04:35:23.5646681Z 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-04-25T04:35:23.5652250Z 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-04-25T04:35:23.5658206Z 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-04-25T04:35:23.5663514Z 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-04-25T04:35:23.5668555Z 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-04-25T04:35:23.5673790Z 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-04-25T04:35:23.5680138Z 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-04-25T04:35:23.5686005Z 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-04-25T04:35:23.5691344Z 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-04-25T04:35:23.5706334Z 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-04-25T04:35:23.5712012Z 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-04-25T04:35:23.5717669Z 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-04-25T04:35:23.5723007Z 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-04-25T04:35:23.5728532Z 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-04-25T04:35:23.5734075Z 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-04-25T04:35:23.5739176Z 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-04-25T04:35:23.5745190Z 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-04-25T04:35:23.5750722Z 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-04-25T04:35:23.5775674Z 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-04-25T04:35:23.5781536Z 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-04-25T04:35:23.5787406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5802472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5809567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5815056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5821073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5826945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5832310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5837806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5843408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5848864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5853979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5859105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5874509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5879364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5884483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5889918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5895704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5901045Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-04-25T04:35:23.5904362Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-04-25T04:35:23.5907960Z 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-04-25T04:35:23.5913241Z 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-04-25T04:35:23.5918516Z 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-04-25T04:35:23.5923452Z 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-04-25T04:35:23.5928546Z 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-04-25T04:35:23.5933674Z 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-04-25T04:35:23.5949456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5955027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5960269Z 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-04-25T04:35:23.5965703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5971605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.5977109Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-04-25T04:35:23.5990320Z 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-04-25T04:35:23.5995798Z 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-04-25T04:35:23.6001023Z 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-04-25T04:35:23.6006267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6011613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6017055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6022254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6028316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6033734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6040886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6046647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6052538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6058191Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-04-25T04:35:23.6061430Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-04-25T04:35:23.6065295Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:35:23.6068860Z 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-04-25T04:35:23.6074797Z 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-04-25T04:35:23.6080363Z 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-04-25T04:35:23.6085464Z 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-04-25T04:35:23.6090999Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-04-25T04:35:23.6094238Z 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-04-25T04:35:23.6099684Z 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-04-25T04:35:23.6105486Z 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-04-25T04:35:23.6110431Z 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-04-25T04:35:23.6126249Z 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-04-25T04:35:23.6132359Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-04-25T04:35:23.6135874Z 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-04-25T04:35:23.6141122Z 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-04-25T04:35:23.6146368Z 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-04-25T04:35:23.6162849Z 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-04-25T04:35:23.6169102Z 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-04-25T04:35:23.6174870Z 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-04-25T04:35:23.6213424Z 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-04-25T04:35:23.6219391Z 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-04-25T04:35:23.6225905Z 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-04-25T04:35:23.6231695Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-04-25T04:35:23.6239895Z 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-04-25T04:35:23.6245262Z 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-04-25T04:35:23.6251593Z 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-04-25T04:35:23.6267499Z 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-04-25T04:35:23.6272978Z 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-04-25T04:35:23.6283243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6289003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6294624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6300369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6305007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6310303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6316147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6321181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6326757Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-04-25T04:35:23.6330119Z 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-04-25T04:35:23.6335463Z 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-04-25T04:35:23.6340748Z 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-04-25T04:35:23.6357089Z 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-04-25T04:35:23.6362328Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-04-25T04:35:23.6365924Z 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-04-25T04:35:23.6372080Z 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-04-25T04:35:23.6377023Z 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-04-25T04:35:23.6382404Z 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-04-25T04:35:23.6397344Z 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-04-25T04:35:23.6402717Z 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-04-25T04:35:23.6408231Z 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-04-25T04:35:23.6414179Z 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-04-25T04:35:23.6419472Z 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-04-25T04:35:23.6424700Z 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-04-25T04:35:23.6429741Z 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-04-25T04:35:23.6436044Z 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-04-25T04:35:23.6441802Z 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-04-25T04:35:23.6447272Z 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-04-25T04:35:23.6452664Z 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-04-25T04:35:23.6457704Z 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-04-25T04:35:23.6463601Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:35:23.6466914Z 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-04-25T04:35:23.6472271Z 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-04-25T04:35:23.6477661Z 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-04-25T04:35:23.6482726Z 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-04-25T04:35:23.6488721Z 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-04-25T04:35:23.6493874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6498901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6525043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6530327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6535760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6541576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6546844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6552790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6557978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6563446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6569339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6575102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6580493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6596420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6601689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6606704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6612094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6617521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6622903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6628319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6633773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6639436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6644838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6660349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6665895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6671348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6676765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6682308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6687567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6693410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6698894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6704541Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-04-25T04:35:23.6708264Z 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-04-25T04:35:23.6713885Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-04-25T04:35:23.6719450Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-04-25T04:35:23.6722971Z 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-04-25T04:35:23.6728549Z 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-04-25T04:35:23.6734754Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-04-25T04:35:23.6738414Z 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-04-25T04:35:23.6743829Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-04-25T04:35:23.6747390Z 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-04-25T04:35:23.6753606Z 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-04-25T04:35:23.6759673Z 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-04-25T04:35:23.6775352Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-04-25T04:35:23.6779198Z 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-04-25T04:35:23.6785240Z 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-04-25T04:35:23.6790780Z 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-04-25T04:35:23.6796979Z 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-04-25T04:35:23.6812365Z 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-04-25T04:35:23.6818263Z 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-04-25T04:35:23.6823708Z 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-04-25T04:35:23.6830331Z 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-04-25T04:35:23.6846685Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-04-25T04:35:23.6850371Z 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-04-25T04:35:23.6856281Z 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-04-25T04:35:23.6862160Z 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-04-25T04:35:23.6877746Z 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-04-25T04:35:23.6884464Z 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-04-25T04:35:23.6891028Z 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-04-25T04:35:23.6896209Z 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-04-25T04:35:23.6901631Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-04-25T04:35:23.6905082Z 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-04-25T04:35:23.6911498Z 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-04-25T04:35:23.6917597Z 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-04-25T04:35:23.6924186Z 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-04-25T04:35:23.6930695Z 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-04-25T04:35:23.6936198Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-04-25T04:35:23.6939819Z 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-04-25T04:35:23.6945134Z 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-04-25T04:35:23.6950448Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-04-25T04:35:23.6953811Z 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-04-25T04:35:23.6959410Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-04-25T04:35:23.6962689Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-04-25T04:35:23.6966057Z 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-04-25T04:35:23.6971531Z 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-04-25T04:35:23.6977216Z 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-04-25T04:35:23.6992772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.6998131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7003453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7008866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7014076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7019265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7024598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7030244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7036190Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-04-25T04:35:23.7039507Z 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-04-25T04:35:23.7044732Z 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-04-25T04:35:23.7049973Z 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-04-25T04:35:23.7055427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7060088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-04-25T04:35:23.7065985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7085411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7086489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7087548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7089579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7095062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7101311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:23.7262576Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-04-25T04:35:23.7265957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7271476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7277646Z 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-04-25T04:35:23.7283393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7299367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7305576Z 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-04-25T04:35:23.7311360Z 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-04-25T04:35:23.7316852Z 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-04-25T04:35:23.7322144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7327579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7333014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7338138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7343907Z 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-04-25T04:35:23.7349074Z 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-04-25T04:35:23.7354961Z 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-04-25T04:35:23.7360464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7365674Z 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-04-25T04:35:23.7371074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7376437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7382290Z 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-04-25T04:35:23.7397116Z 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-04-25T04:35:23.7402635Z 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-04-25T04:35:23.7407908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7413326Z 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-04-25T04:35:23.7418618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7424290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7429264Z 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-04-25T04:35:23.7434763Z 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-04-25T04:35:23.7440335Z 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-04-25T04:35:23.7455691Z 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-04-25T04:35:23.7461103Z 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-04-25T04:35:23.7466989Z 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-04-25T04:35:23.7472521Z 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-04-25T04:35:23.7478368Z 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-04-25T04:35:23.7484738Z 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-04-25T04:35:23.7490898Z 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-04-25T04:35:23.7496210Z 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-04-25T04:35:23.7511530Z 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-04-25T04:35:23.7517245Z 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-04-25T04:35:23.7522834Z 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-04-25T04:35:23.7528405Z 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-04-25T04:35:23.7534167Z 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-04-25T04:35:23.7539835Z 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-04-25T04:35:23.7546116Z 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-04-25T04:35:23.7550935Z 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-04-25T04:35:23.7556697Z 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-04-25T04:35:23.7562371Z 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-04-25T04:35:23.7568759Z 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-04-25T04:35:23.7593057Z 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-04-25T04:35:23.7599042Z 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-04-25T04:35:23.7604412Z 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-04-25T04:35:23.7614423Z 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-04-25T04:35:23.7620078Z 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-04-25T04:35:23.7625947Z 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-04-25T04:35:23.7637335Z 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-04-25T04:35:23.7642890Z 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-04-25T04:35:23.7648556Z 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-04-25T04:35:23.7654744Z 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-04-25T04:35:23.7660678Z 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-04-25T04:35:23.7676289Z 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-04-25T04:35:23.7681938Z 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-04-25T04:35:23.7687887Z 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-04-25T04:35:23.7693414Z 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-04-25T04:35:23.7699371Z 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-04-25T04:35:23.7705254Z 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-04-25T04:35:23.7711073Z 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-04-25T04:35:23.7726656Z 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-04-25T04:35:23.7732303Z 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-04-25T04:35:23.7737952Z 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-04-25T04:35:23.7743756Z 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-04-25T04:35:23.7749859Z 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-04-25T04:35:23.7765956Z 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-04-25T04:35:23.7771670Z 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-04-25T04:35:23.7778013Z 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-04-25T04:35:23.7783955Z 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-04-25T04:35:23.7789772Z 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-04-25T04:35:23.7795640Z 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-04-25T04:35:23.7801734Z 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-04-25T04:35:23.7807236Z 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-04-25T04:35:23.7812917Z 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-04-25T04:35:23.7818620Z 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-04-25T04:35:23.7824521Z 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-04-25T04:35:23.7830159Z 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-04-25T04:35:23.7835799Z 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-04-25T04:35:23.7841201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7846306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7851640Z 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-04-25T04:35:23.7857031Z 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-04-25T04:35:23.7862320Z 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-04-25T04:35:23.7867903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7873227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7879192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7884828Z 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-04-25T04:35:23.7890050Z 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-04-25T04:35:23.7895430Z 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-04-25T04:35:23.7910742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7916913Z 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-04-25T04:35:23.7922796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7928474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7934033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7939979Z 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-04-25T04:35:23.7945405Z 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-04-25T04:35:23.7950831Z 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-04-25T04:35:23.7956564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7962425Z 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-04-25T04:35:23.7968222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7973852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7979749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.7985491Z 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-04-25T04:35:23.7990722Z 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-04-25T04:35:23.7997701Z 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-04-25T04:35:23.8003941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8009704Z 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-04-25T04:35:23.8048578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8054174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8059767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8065846Z 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-04-25T04:35:23.8077219Z 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-04-25T04:35:23.8082735Z 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-04-25T04:35:23.8088274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8094340Z 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-04-25T04:35:23.8100324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8105881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8111739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8117461Z 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-04-25T04:35:23.8122956Z 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-04-25T04:35:23.8128929Z 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-04-25T04:35:23.8134537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8140316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8146283Z 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-04-25T04:35:23.8152236Z 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-04-25T04:35:23.8157845Z 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-04-25T04:35:23.8163323Z 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-04-25T04:35:23.8168810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8173786Z 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-04-25T04:35:23.8179676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8185033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8190375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8195813Z 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-04-25T04:35:23.8201359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8206576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8212103Z 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-04-25T04:35:23.8217546Z 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-04-25T04:35:23.8223659Z 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-04-25T04:35:23.8229119Z 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-04-25T04:35:23.8234753Z 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-04-25T04:35:23.8240615Z 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-04-25T04:35:23.8256639Z 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-04-25T04:35:23.8262429Z 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-04-25T04:35:23.8268737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8274107Z 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-04-25T04:35:23.8279373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8285097Z 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-04-25T04:35:23.8291039Z 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-04-25T04:35:23.8296457Z 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-04-25T04:35:23.8301945Z 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-04-25T04:35:23.8307461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8312989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8318500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8323750Z 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-04-25T04:35:23.8329346Z 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-04-25T04:35:23.8334592Z 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-04-25T04:35:23.8339983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8345961Z 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-04-25T04:35:23.8351257Z 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-04-25T04:35:23.8356700Z 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-04-25T04:35:23.8362114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8367282Z 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-04-25T04:35:23.8372676Z 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-04-25T04:35:23.8378107Z 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-04-25T04:35:23.8383738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8388927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8394439Z 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-04-25T04:35:23.8399759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8404897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8410697Z 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-04-25T04:35:23.8416253Z 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-04-25T04:35:23.8421930Z 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-04-25T04:35:23.8427599Z 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-04-25T04:35:23.8433249Z 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-04-25T04:35:23.8438747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8444553Z 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-04-25T04:35:23.8450145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8455561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8460995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8467272Z 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-04-25T04:35:23.8473091Z 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-04-25T04:35:23.8490075Z 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-04-25T04:35:23.8495500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8501547Z 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-04-25T04:35:23.8507009Z 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-04-25T04:35:23.8512635Z 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-04-25T04:35:23.8518310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8524270Z 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-04-25T04:35:23.8529778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8535276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8540620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8546025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8551895Z 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-04-25T04:35:23.8557473Z 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-04-25T04:35:23.8562983Z 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-04-25T04:35:23.8568887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8574529Z 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-04-25T04:35:23.8584342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8589979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8596185Z 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-04-25T04:35:23.8601887Z 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-04-25T04:35:23.8607989Z 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-04-25T04:35:23.8613716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8619276Z 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-04-25T04:35:23.8629030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8634984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8639819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8645506Z 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-04-25T04:35:23.8650947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8656468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8661803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8667431Z 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-04-25T04:35:23.8673061Z 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-04-25T04:35:23.8678914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8684408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8689866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8695557Z 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-04-25T04:35:23.8701393Z 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-04-25T04:35:23.8707548Z 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-04-25T04:35:23.8713536Z 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-04-25T04:35:23.8719092Z 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-04-25T04:35:23.8738069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8743495Z 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-04-25T04:35:23.8749032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8755043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8760586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8766178Z 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-04-25T04:35:23.8772023Z 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-04-25T04:35:23.8778011Z 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-04-25T04:35:23.8783969Z 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-04-25T04:35:23.8789402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8795047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8800693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8805945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8811435Z 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-04-25T04:35:23.8817563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8822965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8828839Z 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-04-25T04:35:23.8834351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8839956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8845482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8850814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8856285Z 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-04-25T04:35:23.8861994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8868576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8874400Z 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-04-25T04:35:23.8879899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8885418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8890854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8896223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8902194Z 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-04-25T04:35:23.8907394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8912948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8918743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8924382Z 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-04-25T04:35:23.8929804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8935226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8941278Z 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-04-25T04:35:23.8947151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8952463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8957977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8963654Z 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-04-25T04:35:23.8969012Z 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-04-25T04:35:23.8974724Z 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-04-25T04:35:23.8980309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8986270Z 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-04-25T04:35:23.8991856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.8997704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9003246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9008928Z 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-04-25T04:35:23.9014342Z 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-04-25T04:35:23.9020069Z 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-04-25T04:35:23.9025632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9031602Z 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-04-25T04:35:23.9037346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9043122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9050007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9055559Z 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-04-25T04:35:23.9061241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9066765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9072696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9078256Z 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-04-25T04:35:23.9083708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9089363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9094947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9100157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9106140Z 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-04-25T04:35:23.9111631Z 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-04-25T04:35:23.9117681Z 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-04-25T04:35:23.9123423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9128806Z 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-04-25T04:35:23.9134404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9140014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9158420Z 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-04-25T04:35:23.9163606Z 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-04-25T04:35:23.9169209Z 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-04-25T04:35:23.9175115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9180991Z 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-04-25T04:35:23.9186352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9191813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9197239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9203191Z 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-04-25T04:35:23.9208613Z 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-04-25T04:35:23.9214619Z 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-04-25T04:35:23.9220743Z 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-04-25T04:35:23.9226309Z 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-04-25T04:35:23.9243817Z 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-04-25T04:35:23.9249382Z 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-04-25T04:35:23.9254937Z 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-04-25T04:35:23.9260568Z 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-04-25T04:35:23.9266945Z 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-04-25T04:35:23.9273940Z 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-04-25T04:35:23.9280111Z 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-04-25T04:35:23.9286775Z 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-04-25T04:35:23.9292978Z 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-04-25T04:35:23.9299964Z 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-04-25T04:35:23.9305956Z 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-04-25T04:35:23.9311498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9316983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9322602Z 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-04-25T04:35:23.9328028Z 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-04-25T04:35:23.9333566Z 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-04-25T04:35:23.9338957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9344782Z 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-04-25T04:35:23.9362549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9368083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9373548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9379187Z 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-04-25T04:35:23.9384513Z 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-04-25T04:35:23.9389976Z 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-04-25T04:35:23.9395570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9401049Z 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-04-25T04:35:23.9406396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9412099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9417974Z 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-04-25T04:35:23.9423285Z 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-04-25T04:35:23.9428803Z 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-04-25T04:35:23.9434683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9439978Z 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-04-25T04:35:23.9446165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9451663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9456955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9462699Z 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-04-25T04:35:23.9468385Z 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-04-25T04:35:23.9473698Z 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-04-25T04:35:23.9479158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9485494Z 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-04-25T04:35:23.9491264Z 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-04-25T04:35:23.9496699Z 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-04-25T04:35:23.9502322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9508557Z 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-04-25T04:35:23.9514167Z 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-04-25T04:35:23.9519520Z 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-04-25T04:35:23.9525128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9555174Z 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-04-25T04:35:23.9560947Z 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-04-25T04:35:23.9566323Z 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-04-25T04:35:23.9573005Z 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-04-25T04:35:23.9579390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9585163Z 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-04-25T04:35:23.9591194Z 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-04-25T04:35:23.9597378Z 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-04-25T04:35:23.9603239Z 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-04-25T04:35:23.9643136Z 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-04-25T04:35:23.9649058Z 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-04-25T04:35:23.9654604Z 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-04-25T04:35:23.9660316Z 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-04-25T04:35:23.9666957Z 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-04-25T04:35:23.9672382Z 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-04-25T04:35:23.9678257Z 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-04-25T04:35:23.9684032Z 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-04-25T04:35:23.9689967Z 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-04-25T04:35:23.9695615Z 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-04-25T04:35:23.9701402Z 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-04-25T04:35:23.9707184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9712852Z 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-04-25T04:35:23.9719017Z 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-04-25T04:35:23.9725210Z 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-04-25T04:35:23.9731008Z 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-04-25T04:35:23.9736720Z 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-04-25T04:35:23.9742634Z 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-04-25T04:35:23.9748536Z 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-04-25T04:35:23.9761667Z 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-04-25T04:35:23.9767747Z 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-04-25T04:35:23.9773317Z 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-04-25T04:35:23.9779012Z 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-04-25T04:35:23.9784836Z 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-04-25T04:35:23.9790582Z 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-04-25T04:35:23.9796222Z 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-04-25T04:35:23.9818385Z 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-04-25T04:35:23.9823862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9829528Z 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-04-25T04:35:23.9834803Z 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-04-25T04:35:23.9840519Z 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-04-25T04:35:23.9846331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9852059Z 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-04-25T04:35:23.9857419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9862805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9868451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9874560Z 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-04-25T04:35:23.9879937Z 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-04-25T04:35:23.9885570Z 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-04-25T04:35:23.9891136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:23.9896696Z 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-04-25T04:35:23.9902339Z 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-04-25T04:35:23.9907849Z 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-04-25T04:35:23.9913305Z 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-04-25T04:35:23.9919443Z 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-04-25T04:35:23.9925344Z 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-04-25T04:35:23.9930861Z 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-04-25T04:35:23.9936303Z 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-04-25T04:35:23.9957195Z 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-04-25T04:35:23.9962759Z 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-04-25T04:35:23.9968403Z 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-04-25T04:35:23.9975420Z 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-04-25T04:35:23.9980764Z 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-04-25T04:35:23.9986299Z 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-04-25T04:35:23.9991889Z 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-04-25T04:35:23.9997932Z 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-04-25T04:35:24.0003465Z 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-04-25T04:35:24.0009297Z 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-04-25T04:35:24.0014835Z 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-04-25T04:35:24.0020342Z 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-04-25T04:35:24.0026323Z 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-04-25T04:35:24.0032233Z 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-04-25T04:35:24.0037895Z 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-04-25T04:35:24.0047826Z 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-04-25T04:35:24.0053555Z 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-04-25T04:35:24.0059384Z 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-04-25T04:35:24.0065548Z 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-04-25T04:35:24.0071842Z 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-04-25T04:35:24.0079330Z 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-04-25T04:35:24.0085308Z 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-04-25T04:35:24.0090571Z 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-04-25T04:35:24.0096052Z 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-04-25T04:35:24.0101835Z 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-04-25T04:35:24.0107833Z 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-04-25T04:35:24.0113625Z 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-04-25T04:35:24.0119448Z 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-04-25T04:35:24.0125104Z 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-04-25T04:35:24.0130760Z 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-04-25T04:35:24.0137145Z 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-04-25T04:35:24.0142906Z 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-04-25T04:35:24.0148682Z 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-04-25T04:35:24.0154561Z 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-04-25T04:35:24.0160334Z 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-04-25T04:35:24.0165798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0171716Z 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-04-25T04:35:24.0177273Z 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-04-25T04:35:24.0183084Z 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-04-25T04:35:24.0189002Z 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-04-25T04:35:24.0209630Z 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-04-25T04:35:24.0215153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0220702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0226359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0232121Z 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-04-25T04:35:24.0237692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0243242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0249093Z 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-04-25T04:35:24.0255039Z 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-04-25T04:35:24.0260793Z 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-04-25T04:35:24.0266529Z 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-04-25T04:35:24.0272301Z 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-04-25T04:35:24.0278434Z 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-04-25T04:35:24.0284712Z 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-04-25T04:35:24.0291223Z 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-04-25T04:35:24.0297387Z 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-04-25T04:35:24.0303148Z 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-04-25T04:35:24.0309814Z 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-04-25T04:35:24.0315669Z 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-04-25T04:35:24.0321632Z 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-04-25T04:35:24.0327164Z 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-04-25T04:35:24.0332613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0338273Z 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-04-25T04:35:24.0343655Z 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-04-25T04:35:24.0349122Z 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-04-25T04:35:24.0355034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0361102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0366561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0372577Z 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-04-25T04:35:24.0385207Z 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-04-25T04:35:24.0391173Z 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-04-25T04:35:24.0396925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0402511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0408241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0414495Z 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-04-25T04:35:24.0420234Z 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-04-25T04:35:24.0425883Z 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-04-25T04:35:24.0431528Z 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-04-25T04:35:24.0437440Z 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-04-25T04:35:24.0443049Z 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-04-25T04:35:24.0449291Z 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-04-25T04:35:24.0454861Z 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-04-25T04:35:24.0460453Z 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-04-25T04:35:24.0466400Z 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-04-25T04:35:24.0472184Z 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-04-25T04:35:24.0477918Z 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-04-25T04:35:24.0483813Z 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-04-25T04:35:24.0489390Z 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-04-25T04:35:24.0495073Z 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-04-25T04:35:24.0500708Z 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-04-25T04:35:24.0506490Z 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-04-25T04:35:24.0512176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0518184Z 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-04-25T04:35:24.0524216Z 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-04-25T04:35:24.0529736Z 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-04-25T04:35:24.0535681Z 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-04-25T04:35:24.0541200Z 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-04-25T04:35:24.0546749Z 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-04-25T04:35:24.0552339Z 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-04-25T04:35:24.0558137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0563971Z 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-04-25T04:35:24.0569790Z 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-04-25T04:35:24.0575404Z 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-04-25T04:35:24.0581409Z 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-04-25T04:35:24.0587535Z 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-04-25T04:35:24.0594373Z 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-04-25T04:35:24.0600687Z 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-04-25T04:35:24.0606776Z 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-04-25T04:35:24.0612693Z 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-04-25T04:35:24.0619189Z 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-04-25T04:35:24.0625101Z 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-04-25T04:35:24.0630874Z 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-04-25T04:35:24.0636992Z 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-04-25T04:35:24.0642690Z 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-04-25T04:35:24.0648567Z 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-04-25T04:35:24.0654376Z 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-04-25T04:35:24.0660270Z 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-04-25T04:35:24.0665971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0672099Z 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-04-25T04:35:24.0678378Z 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-04-25T04:35:24.0684923Z 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-04-25T04:35:24.0691015Z 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-04-25T04:35:24.0696951Z 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-04-25T04:35:24.0702638Z 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-04-25T04:35:24.0709132Z 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-04-25T04:35:24.0714923Z 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-04-25T04:35:24.0720666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0726422Z 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-04-25T04:35:24.0731732Z 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-04-25T04:35:24.0748601Z 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-04-25T04:35:24.0754361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0760207Z 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-04-25T04:35:24.0765932Z 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-04-25T04:35:24.0771138Z 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-04-25T04:35:24.0776879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0782402Z 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-04-25T04:35:24.0787894Z 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-04-25T04:35:24.0793304Z 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-04-25T04:35:24.0798822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0804379Z 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-04-25T04:35:24.0810796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0816462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0821784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0827451Z 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-04-25T04:35:24.0832855Z 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-04-25T04:35:24.0849106Z 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-04-25T04:35:24.0854698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0860868Z 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-04-25T04:35:24.0866391Z 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-04-25T04:35:24.0871740Z 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-04-25T04:35:24.0877353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0883071Z 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-04-25T04:35:24.0888559Z 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-04-25T04:35:24.0894255Z 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-04-25T04:35:24.0899860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0905354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0911700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0917322Z 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-04-25T04:35:24.0922928Z 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-04-25T04:35:24.0929107Z 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-04-25T04:35:24.0934772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0940637Z 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-04-25T04:35:24.0946466Z 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-04-25T04:35:24.0951935Z 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-04-25T04:35:24.0957845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0963627Z 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-04-25T04:35:24.0969278Z 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-04-25T04:35:24.0975003Z 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-04-25T04:35:24.0981080Z 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-04-25T04:35:24.0986457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.0991906Z 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-04-25T04:35:24.0997583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1003134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1008459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1014131Z 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-04-25T04:35:24.1019672Z 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-04-25T04:35:24.1025395Z 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-04-25T04:35:24.1032150Z 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-04-25T04:35:24.1051724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1057487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1063447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1068986Z 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-04-25T04:35:24.1075138Z 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-04-25T04:35:24.1081257Z 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-04-25T04:35:24.1087295Z 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-04-25T04:35:24.1092946Z 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-04-25T04:35:24.1099086Z 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-04-25T04:35:24.1105144Z 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-04-25T04:35:24.1110503Z 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-04-25T04:35:24.1116141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1121800Z 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-04-25T04:35:24.1127910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1133239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1138794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1144567Z 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-04-25T04:35:24.1175850Z 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-04-25T04:35:24.1181557Z 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-04-25T04:35:24.1187265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1192946Z 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-04-25T04:35:24.1199245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1204791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1210073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1215606Z 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-04-25T04:35:24.1221097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1226495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1231700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1237618Z 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-04-25T04:35:24.1243417Z 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-04-25T04:35:24.1280503Z 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-04-25T04:35:24.1285831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1291130Z 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-04-25T04:35:24.1296500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1301581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1306993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1312900Z 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-04-25T04:35:24.1318577Z 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-04-25T04:35:24.1324894Z 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-04-25T04:35:24.1330949Z 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-04-25T04:35:24.1337033Z 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-04-25T04:35:24.1343419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1348919Z 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-04-25T04:35:24.1355363Z 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-04-25T04:35:24.1361525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1367873Z 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-04-25T04:35:24.1374195Z 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-04-25T04:35:24.1380295Z 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-04-25T04:35:24.1386006Z 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-04-25T04:35:24.1391839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1397824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1403495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1409288Z 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-04-25T04:35:24.1415203Z 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-04-25T04:35:24.1420697Z 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-04-25T04:35:24.1426204Z 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-04-25T04:35:24.1432091Z 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-04-25T04:35:24.1438693Z 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-04-25T04:35:24.1444255Z 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-04-25T04:35:24.1449640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1455111Z 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-04-25T04:35:24.1460754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1466049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1471370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1477081Z 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-04-25T04:35:24.1482621Z 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-04-25T04:35:24.1488410Z 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-04-25T04:35:24.1494008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1499817Z 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-04-25T04:35:24.1505208Z 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-04-25T04:35:24.1510912Z 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-04-25T04:35:24.1516898Z 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-04-25T04:35:24.1522398Z 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-04-25T04:35:24.1527785Z 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-04-25T04:35:24.1533208Z 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-04-25T04:35:24.1538652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1544295Z 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-04-25T04:35:24.1549758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1555803Z 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-04-25T04:35:24.1561763Z 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-04-25T04:35:24.1567326Z 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-04-25T04:35:24.1572714Z 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-04-25T04:35:24.1578393Z 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-04-25T04:35:24.1584691Z 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-04-25T04:35:24.1590537Z 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-04-25T04:35:24.1596306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1602074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1607690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1613320Z 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-04-25T04:35:24.1618975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1625258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1630479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1635994Z 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-04-25T04:35:24.1641216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1646922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1652271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1657471Z 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-04-25T04:35:24.1662688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1667913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1673339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1678747Z 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-04-25T04:35:24.1684275Z 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-04-25T04:35:24.1689701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1695624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1701174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1706804Z 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-04-25T04:35:24.1712540Z 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-04-25T04:35:24.1718036Z 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-04-25T04:35:24.1723672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1729599Z 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-04-25T04:35:24.1735113Z 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-04-25T04:35:24.1741252Z 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-04-25T04:35:24.1747046Z 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-04-25T04:35:24.1752512Z 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-04-25T04:35:24.1758439Z 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-04-25T04:35:24.1764311Z 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-04-25T04:35:24.1769922Z 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-04-25T04:35:24.1775592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1781928Z 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-04-25T04:35:24.1787987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1794056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1799915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1806116Z 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-04-25T04:35:24.1811656Z 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-04-25T04:35:24.1817630Z 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-04-25T04:35:24.1823251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1828870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1834574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1840040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1845764Z 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-04-25T04:35:24.1851308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1856698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1862812Z 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-04-25T04:35:24.1868071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1873616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1879097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1884521Z 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-04-25T04:35:24.1889906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1895104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1900268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1906151Z 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-04-25T04:35:24.1912061Z 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-04-25T04:35:24.1917569Z 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-04-25T04:35:24.1923151Z 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-04-25T04:35:24.1928628Z 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-04-25T04:35:24.1934441Z 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-04-25T04:35:24.1940167Z 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-04-25T04:35:24.1946553Z 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-04-25T04:35:24.1951967Z 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-04-25T04:35:24.1957449Z 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-04-25T04:35:24.1964444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1978688Z 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-04-25T04:35:24.1984209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1989990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.1995637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2001173Z 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-04-25T04:35:24.2006610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2011960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2017489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2023055Z 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-04-25T04:35:24.2028623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2034279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2039679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2045116Z 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-04-25T04:35:24.2050601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2055979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2061430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2067004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2073016Z 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-04-25T04:35:24.2078651Z 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-04-25T04:35:24.2084926Z 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-04-25T04:35:24.2090751Z 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-04-25T04:35:24.2096461Z 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-04-25T04:35:24.2102408Z 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-04-25T04:35:24.2108325Z 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-04-25T04:35:24.2114028Z 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-04-25T04:35:24.2119834Z 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-04-25T04:35:24.2125323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2131282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2137017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2143095Z 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-04-25T04:35:24.2148829Z 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-04-25T04:35:24.2154716Z 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-04-25T04:35:24.2160406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2166199Z 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-04-25T04:35:24.2171658Z 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-04-25T04:35:24.2177374Z 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-04-25T04:35:24.2182875Z 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-04-25T04:35:24.2188484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2193823Z 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-04-25T04:35:24.2199658Z 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-04-25T04:35:24.2205221Z 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-04-25T04:35:24.2210881Z 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-04-25T04:35:24.2216777Z 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-04-25T04:35:24.2222482Z 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-04-25T04:35:24.2228360Z 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-04-25T04:35:24.2234128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2240636Z 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-04-25T04:35:24.2245901Z 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-04-25T04:35:24.2251560Z 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-04-25T04:35:24.2257472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2263546Z 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-04-25T04:35:24.2269244Z 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-04-25T04:35:24.2275036Z 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-04-25T04:35:24.2281363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2287474Z 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-04-25T04:35:24.2294267Z 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-04-25T04:35:24.2300489Z 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-04-25T04:35:24.2306231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2312320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2318401Z 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-04-25T04:35:24.2324229Z 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-04-25T04:35:24.2330182Z 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-04-25T04:35:24.2336123Z 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-04-25T04:35:24.2341850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2361943Z 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-04-25T04:35:24.2363083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2364039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2365199Z 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-04-25T04:35:24.2370757Z 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-04-25T04:35:24.2376414Z 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-04-25T04:35:24.2381914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2387226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2392479Z 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-04-25T04:35:24.2399141Z 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-04-25T04:35:24.2404875Z 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-04-25T04:35:24.2410438Z 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-04-25T04:35:24.2416372Z 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-04-25T04:35:24.2421956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2427259Z 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-04-25T04:35:24.2432719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2438131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2456598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2461889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2467562Z 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-04-25T04:35:24.2473059Z 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-04-25T04:35:24.2478774Z 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-04-25T04:35:24.2484387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2489673Z 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-04-25T04:35:24.2495101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2500490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2505743Z 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-04-25T04:35:24.2511609Z 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-04-25T04:35:24.2517360Z 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-04-25T04:35:24.2522919Z 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-04-25T04:35:24.2528422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2534663Z 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-04-25T04:35:24.2540348Z 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-04-25T04:35:24.2545688Z 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-04-25T04:35:24.2551768Z 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-04-25T04:35:24.2557583Z 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-04-25T04:35:24.2563140Z 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-04-25T04:35:24.2568666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2573789Z 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-04-25T04:35:24.2579412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2585225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2590637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2596866Z 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-04-25T04:35:24.2602615Z 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-04-25T04:35:24.2608299Z 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-04-25T04:35:24.2613908Z 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-04-25T04:35:24.2619666Z 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-04-25T04:35:24.2625311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2631025Z 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-04-25T04:35:24.2636975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2642478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2647872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2653590Z 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-04-25T04:35:24.2659277Z 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-04-25T04:35:24.2665264Z 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-04-25T04:35:24.2670835Z 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-04-25T04:35:24.2677189Z 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-04-25T04:35:24.2682852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2688543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2694548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2700532Z 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-04-25T04:35:24.2706023Z 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-04-25T04:35:24.2712218Z 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-04-25T04:35:24.2718364Z 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-04-25T04:35:24.2724062Z 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-04-25T04:35:24.2729731Z 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-04-25T04:35:24.2735450Z 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-04-25T04:35:24.2741209Z 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-04-25T04:35:24.2746888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2752545Z 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-04-25T04:35:24.2758359Z 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-04-25T04:35:24.2797120Z 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-04-25T04:35:24.2803441Z 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-04-25T04:35:24.2826121Z 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-04-25T04:35:24.2832033Z 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-04-25T04:35:24.2837983Z 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-04-25T04:35:24.2843948Z 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-04-25T04:35:24.2849511Z 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-04-25T04:35:24.2855945Z 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-04-25T04:35:24.2861649Z 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-04-25T04:35:24.2867542Z 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-04-25T04:35:24.2873389Z 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-04-25T04:35:24.2879118Z 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-04-25T04:35:24.2885075Z 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-04-25T04:35:24.2890943Z 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-04-25T04:35:24.2896643Z 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-04-25T04:35:24.2902438Z 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-04-25T04:35:24.2908379Z 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-04-25T04:35:24.2914329Z 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-04-25T04:35:24.2920036Z 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-04-25T04:35:24.2926328Z 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-04-25T04:35:24.2932074Z 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-04-25T04:35:24.2937606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.2944009Z 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-04-25T04:35:24.2950282Z 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-04-25T04:35:24.2956026Z 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-04-25T04:35:24.2961626Z 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-04-25T04:35:24.2967289Z 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-04-25T04:35:24.2978977Z 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-04-25T04:35:24.2984602Z 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-04-25T04:35:24.2990564Z 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-04-25T04:35:24.2996738Z 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-04-25T04:35:24.3002837Z 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-04-25T04:35:24.3008848Z 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-04-25T04:35:24.3014473Z 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-04-25T04:35:24.3020454Z 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-04-25T04:35:24.3026272Z 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-04-25T04:35:24.3032471Z 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-04-25T04:35:24.3038221Z 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-04-25T04:35:24.3044926Z 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-04-25T04:35:24.3051954Z 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-04-25T04:35:24.3057976Z 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-04-25T04:35:24.3064062Z 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-04-25T04:35:24.3070310Z 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-04-25T04:35:24.3076365Z 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-04-25T04:35:24.3082311Z 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-04-25T04:35:24.3088436Z 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-04-25T04:35:24.3095078Z 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-04-25T04:35:24.3101080Z 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-04-25T04:35:24.3106972Z 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-04-25T04:35:24.3112990Z 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-04-25T04:35:24.3118667Z 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-04-25T04:35:24.3124956Z 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-04-25T04:35:24.3130683Z 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-04-25T04:35:24.3136884Z 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-04-25T04:35:24.3142542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3148102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3154221Z 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-04-25T04:35:24.3160219Z 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-04-25T04:35:24.3166042Z 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-04-25T04:35:24.3171870Z 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-04-25T04:35:24.3178077Z 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-04-25T04:35:24.3184050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3189722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3195503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3201114Z 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-04-25T04:35:24.3207156Z 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-04-25T04:35:24.3212663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3218281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3223861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3229273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3235429Z 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-04-25T04:35:24.3241187Z 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-04-25T04:35:24.3246629Z 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-04-25T04:35:24.3252943Z 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-04-25T04:35:24.3259001Z 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-04-25T04:35:24.3264613Z 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-04-25T04:35:24.3270781Z 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-04-25T04:35:24.3276587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3282555Z 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-04-25T04:35:24.3288530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3294361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3300085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3306060Z 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-04-25T04:35:24.3311785Z 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-04-25T04:35:24.3317623Z 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-04-25T04:35:24.3323320Z 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-04-25T04:35:24.3329278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3334907Z 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-04-25T04:35:24.3340544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3346232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3352233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3358230Z 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-04-25T04:35:24.3364039Z 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-04-25T04:35:24.3369989Z 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-04-25T04:35:24.3375787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3381181Z 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-04-25T04:35:24.3386453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3391895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3397238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3402996Z 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-04-25T04:35:24.3408661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3414017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3419498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3425085Z 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-04-25T04:35:24.3430523Z 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-04-25T04:35:24.3436058Z 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-04-25T04:35:24.3441646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3447704Z 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-04-25T04:35:24.3453369Z 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-04-25T04:35:24.3458883Z 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-04-25T04:35:24.3464346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3490226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3495803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3500752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3506185Z 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-04-25T04:35:24.3511736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3517655Z 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-04-25T04:35:24.3523181Z 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-04-25T04:35:24.3528665Z 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-04-25T04:35:24.3534090Z 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-04-25T04:35:24.3539653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3544903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3551028Z 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-04-25T04:35:24.3556782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3562086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3567207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3572320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3584461Z 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-04-25T04:35:24.3589860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3595126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3600910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3606206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3612065Z 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-04-25T04:35:24.3622040Z 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-04-25T04:35:24.3627708Z 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-04-25T04:35:24.3633605Z 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-04-25T04:35:24.3639675Z 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-04-25T04:35:24.3645341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3651309Z 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-04-25T04:35:24.3657376Z 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-04-25T04:35:24.3662922Z 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-04-25T04:35:24.3668488Z 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-04-25T04:35:24.3674302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3680166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3685665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3691632Z 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-04-25T04:35:24.3697414Z 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-04-25T04:35:24.3703027Z 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-04-25T04:35:24.3708886Z 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-04-25T04:35:24.3715044Z 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-04-25T04:35:24.3720812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3726891Z 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-04-25T04:35:24.3732700Z 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-04-25T04:35:24.3738529Z 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-04-25T04:35:24.3744119Z 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-04-25T04:35:24.3749768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3755599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3761061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3766700Z 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-04-25T04:35:24.3772429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3777949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3783360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3789558Z 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-04-25T04:35:24.3795989Z 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-04-25T04:35:24.3803800Z 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-04-25T04:35:24.3809913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3815689Z 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-04-25T04:35:24.3821311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3826975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3832551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3838512Z 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-04-25T04:35:24.3844026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3849714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3854868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3860535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3866271Z 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-04-25T04:35:24.3871754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3877195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3883095Z 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-04-25T04:35:24.3889251Z 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-04-25T04:35:24.3895087Z 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-04-25T04:35:24.3900607Z 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-04-25T04:35:24.3906019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3911367Z 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-04-25T04:35:24.3916909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3922286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3927725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3933323Z 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-04-25T04:35:24.3938865Z 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-04-25T04:35:24.3944331Z 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-04-25T04:35:24.3949771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3955261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3960461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3965965Z 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-04-25T04:35:24.3971328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3976884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3982252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3987843Z 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-04-25T04:35:24.3993118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.3998637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4004029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4009589Z 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-04-25T04:35:24.4014941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4020423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4025990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4031590Z 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-04-25T04:35:24.4037080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4042504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4047912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4053157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4059000Z 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-04-25T04:35:24.4064922Z 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-04-25T04:35:24.4070500Z 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-04-25T04:35:24.4076167Z 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-04-25T04:35:24.4088345Z 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-04-25T04:35:24.4094416Z 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-04-25T04:35:24.4100154Z 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-04-25T04:35:24.4106231Z 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-04-25T04:35:24.4111598Z 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-04-25T04:35:24.4119752Z 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-04-25T04:35:24.4125137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4130242Z 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-04-25T04:35:24.4135944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4141484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4146801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4152308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4158897Z 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-04-25T04:35:24.4164657Z 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-04-25T04:35:24.4170147Z 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-04-25T04:35:24.4175666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4181525Z 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-04-25T04:35:24.4187218Z 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-04-25T04:35:24.4193046Z 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-04-25T04:35:24.4199011Z 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-04-25T04:35:24.4204614Z 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-04-25T04:35:24.4210756Z 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-04-25T04:35:24.4216347Z 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-04-25T04:35:24.4221976Z 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-04-25T04:35:24.4227986Z 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-04-25T04:35:24.4233920Z 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-04-25T04:35:24.4239652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4245617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4251253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4257611Z 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-04-25T04:35:24.4263231Z 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-04-25T04:35:24.4269112Z 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-04-25T04:35:24.4275105Z 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-04-25T04:35:24.4281032Z 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-04-25T04:35:24.4286681Z 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-04-25T04:35:24.4292296Z 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-04-25T04:35:24.4298349Z 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-04-25T04:35:24.4304997Z 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-04-25T04:35:24.4312728Z 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-04-25T04:35:24.4319910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4326193Z 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-04-25T04:35:24.4364807Z 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-04-25T04:35:24.4370525Z 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-04-25T04:35:24.4376304Z 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-04-25T04:35:24.4382079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4388186Z 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-04-25T04:35:24.4393685Z 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-04-25T04:35:24.4399691Z 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-04-25T04:35:24.4405233Z 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-04-25T04:35:24.4410798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4416302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4422132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4428369Z 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-04-25T04:35:24.4433913Z 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-04-25T04:35:24.4439552Z 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-04-25T04:35:24.4445244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4452069Z 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-04-25T04:35:24.4458036Z 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-04-25T04:35:24.4464245Z 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-04-25T04:35:24.4470048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4476111Z 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-04-25T04:35:24.4481761Z 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-04-25T04:35:24.4487510Z 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-04-25T04:35:24.4493602Z 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-04-25T04:35:24.4499564Z 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-04-25T04:35:24.4505376Z 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-04-25T04:35:24.4510954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4516331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4521463Z 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-04-25T04:35:24.4526964Z 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-04-25T04:35:24.4533064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4538286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4544086Z 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-04-25T04:35:24.4549595Z 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-04-25T04:35:24.4555237Z 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-04-25T04:35:24.4560737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4565959Z 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-04-25T04:35:24.4571343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4576766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4582042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4587429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4593180Z 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-04-25T04:35:24.4614371Z 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-04-25T04:35:24.4619848Z 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-04-25T04:35:24.4625283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4630643Z 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-04-25T04:35:24.4636267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4641769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4647058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4652798Z 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-04-25T04:35:24.4658472Z 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-04-25T04:35:24.4664309Z 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-04-25T04:35:24.4669996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4675564Z 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-04-25T04:35:24.4681176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4686818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4714974Z 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-04-25T04:35:24.4720672Z 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-04-25T04:35:24.4726314Z 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-04-25T04:35:24.4731936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4737186Z 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-04-25T04:35:24.4742876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4748694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4754086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4759378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4765117Z 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-04-25T04:35:24.4771115Z 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-04-25T04:35:24.4776653Z 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-04-25T04:35:24.4782176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4787545Z 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-04-25T04:35:24.4793943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4799872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4805924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4811158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4817082Z 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-04-25T04:35:24.4822552Z 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-04-25T04:35:24.4828036Z 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-04-25T04:35:24.4833995Z 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-04-25T04:35:24.4839638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4845583Z 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-04-25T04:35:24.4852019Z 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-04-25T04:35:24.4857531Z 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-04-25T04:35:24.4863423Z 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-04-25T04:35:24.4869225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4874481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4879915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4885589Z 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-04-25T04:35:24.4891348Z 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-04-25T04:35:24.4896937Z 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-04-25T04:35:24.4902449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4907704Z 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-04-25T04:35:24.4913217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4918767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4924347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4930054Z 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-04-25T04:35:24.4935895Z 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-04-25T04:35:24.4941475Z 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-04-25T04:35:24.4947081Z 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-04-25T04:35:24.4952759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4959172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4965266Z 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-04-25T04:35:24.4970718Z 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-04-25T04:35:24.4976512Z 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-04-25T04:35:24.4982175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4987310Z 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-04-25T04:35:24.4993016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.4998538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5003740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5009398Z 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-04-25T04:35:24.5014831Z 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-04-25T04:35:24.5020949Z 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-04-25T04:35:24.5026613Z 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-04-25T04:35:24.5032155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5038021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5043674Z 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-04-25T04:35:24.5049393Z 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-04-25T04:35:24.5063914Z 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-04-25T04:35:24.5070803Z 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-04-25T04:35:24.5077010Z 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-04-25T04:35:24.5083183Z 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-04-25T04:35:24.5089329Z 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-04-25T04:35:24.5095453Z 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-04-25T04:35:24.5101487Z 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-04-25T04:35:24.5107371Z 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-04-25T04:35:24.5113258Z 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-04-25T04:35:24.5119783Z 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-04-25T04:35:24.5125841Z 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-04-25T04:35:24.5131681Z 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-04-25T04:35:24.5137586Z 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-04-25T04:35:24.5143652Z 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-04-25T04:35:24.5149478Z 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-04-25T04:35:24.5163176Z 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-04-25T04:35:24.5169157Z 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-04-25T04:35:24.5175200Z 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-04-25T04:35:24.5181652Z 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-04-25T04:35:24.5187753Z 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-04-25T04:35:24.5193693Z 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-04-25T04:35:24.5199764Z 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-04-25T04:35:24.5205770Z 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-04-25T04:35:24.5211861Z 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-04-25T04:35:24.5217941Z 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-04-25T04:35:24.5224096Z 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-04-25T04:35:24.5230214Z 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-04-25T04:35:24.5236368Z 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-04-25T04:35:24.5242268Z 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-04-25T04:35:24.5248752Z 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-04-25T04:35:24.5254764Z 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-04-25T04:35:24.5261123Z 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-04-25T04:35:24.5267015Z 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-04-25T04:35:24.5272987Z 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-04-25T04:35:24.5279131Z 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-04-25T04:35:24.5285302Z 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-04-25T04:35:24.5291269Z 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-04-25T04:35:24.5297788Z 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-04-25T04:35:24.5303570Z 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-04-25T04:35:24.5310218Z 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-04-25T04:35:24.5316193Z 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-04-25T04:35:24.5322293Z 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-04-25T04:35:24.5328257Z 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-04-25T04:35:24.5334508Z 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-04-25T04:35:24.5340429Z 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-04-25T04:35:24.5346485Z 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-04-25T04:35:24.5352552Z 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-04-25T04:35:24.5358900Z 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-04-25T04:35:24.5364613Z 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-04-25T04:35:24.5370168Z 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-04-25T04:35:24.5376139Z 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-04-25T04:35:24.5382190Z 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-04-25T04:35:24.5387839Z 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-04-25T04:35:24.5393915Z 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-04-25T04:35:24.5399814Z 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-04-25T04:35:24.5405737Z 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-04-25T04:35:24.5411815Z 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-04-25T04:35:24.5417484Z 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-04-25T04:35:24.5423315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5429161Z 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-04-25T04:35:24.5434823Z 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-04-25T04:35:24.5440450Z 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-04-25T04:35:24.5446298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5452418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5458027Z 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-04-25T04:35:24.5463446Z 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-04-25T04:35:24.5468958Z 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-04-25T04:35:24.5474818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5480604Z 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-04-25T04:35:24.5486465Z 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-04-25T04:35:24.5492042Z 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-04-25T04:35:24.5497720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5503289Z 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-04-25T04:35:24.5508949Z 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-04-25T04:35:24.5514610Z 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-04-25T04:35:24.5520236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5526327Z 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-04-25T04:35:24.5532267Z 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-04-25T04:35:24.5537939Z 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-04-25T04:35:24.5543364Z 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-04-25T04:35:24.5549125Z 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-04-25T04:35:24.5554748Z 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-04-25T04:35:24.5560252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5565436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5571299Z 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-04-25T04:35:24.5576930Z 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-04-25T04:35:24.5582520Z 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-04-25T04:35:24.5588002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5593985Z 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-04-25T04:35:24.5604277Z 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-04-25T04:35:24.5610273Z 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-04-25T04:35:24.5616093Z 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-04-25T04:35:24.5621764Z 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-04-25T04:35:24.5627361Z 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-04-25T04:35:24.5632843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5638148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5644002Z 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-04-25T04:35:24.5649534Z 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-04-25T04:35:24.5654990Z 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-04-25T04:35:24.5660442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5666882Z 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-04-25T04:35:24.5672835Z 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-04-25T04:35:24.5678722Z 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-04-25T04:35:24.5684119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5690017Z 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-04-25T04:35:24.5695552Z 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-04-25T04:35:24.5700791Z 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-04-25T04:35:24.5706941Z 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-04-25T04:35:24.5713111Z 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-04-25T04:35:24.5718699Z 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-04-25T04:35:24.5724166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5735345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5739069Z 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-04-25T04:35:24.5744936Z 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-04-25T04:35:24.5750484Z 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-04-25T04:35:24.5756081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5767020Z 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-04-25T04:35:24.5772471Z 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-04-25T04:35:24.5778031Z 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-04-25T04:35:24.5783726Z 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-04-25T04:35:24.5789358Z 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-04-25T04:35:24.5795432Z 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-04-25T04:35:24.5800814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5806272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5812364Z 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-04-25T04:35:24.5817984Z 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-04-25T04:35:24.5823590Z 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-04-25T04:35:24.5829281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5835425Z 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-04-25T04:35:24.5841279Z 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-04-25T04:35:24.5846833Z 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-04-25T04:35:24.5852600Z 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-04-25T04:35:24.5858043Z 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-04-25T04:35:24.5863566Z 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-04-25T04:35:24.5869139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5874500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5880218Z 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-04-25T04:35:24.5885812Z 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-04-25T04:35:24.5891814Z 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-04-25T04:35:24.5897659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5903488Z 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-04-25T04:35:24.5943362Z 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-04-25T04:35:24.5948834Z 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-04-25T04:35:24.5954360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.5964391Z 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-04-25T04:35:24.5970144Z 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-04-25T04:35:24.5976589Z 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-04-25T04:35:24.5982648Z 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-04-25T04:35:24.5988234Z 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-04-25T04:35:24.5993903Z 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-04-25T04:35:24.5999608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6005460Z 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-04-25T04:35:24.6011466Z 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-04-25T04:35:24.6017019Z 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-04-25T04:35:24.6022789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6028688Z 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-04-25T04:35:24.6034274Z 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-04-25T04:35:24.6039553Z 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-04-25T04:35:24.6045349Z 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-04-25T04:35:24.6050800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6056208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6061409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6067045Z 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-04-25T04:35:24.6072378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6077954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6083442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6089014Z 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-04-25T04:35:24.6094540Z 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-04-25T04:35:24.6100305Z 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-04-25T04:35:24.6120816Z 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-04-25T04:35:24.6125853Z 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-04-25T04:35:24.6131468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6137074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6142702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6148140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6153513Z 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-04-25T04:35:24.6160047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6165155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6170988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6176373Z 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-04-25T04:35:24.6181790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6187128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6193105Z 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-04-25T04:35:24.6198655Z 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-04-25T04:35:24.6204188Z 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-04-25T04:35:24.6210679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6216122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6221502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6227660Z 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-04-25T04:35:24.6233463Z 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-04-25T04:35:24.6239017Z 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-04-25T04:35:24.6244582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6250375Z 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-04-25T04:35:24.6256202Z 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-04-25T04:35:24.6261883Z 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-04-25T04:35:24.6267647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6273600Z 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-04-25T04:35:24.6279507Z 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-04-25T04:35:24.6285485Z 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-04-25T04:35:24.6291180Z 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-04-25T04:35:24.6296848Z 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-04-25T04:35:24.6302609Z 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-04-25T04:35:24.6309970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6316392Z 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-04-25T04:35:24.6323138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6329585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6335407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6341288Z 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-04-25T04:35:24.6347045Z 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-04-25T04:35:24.6352669Z 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-04-25T04:35:24.6358446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6364026Z 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-04-25T04:35:24.6369829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6375322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6380693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6386379Z 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-04-25T04:35:24.6391818Z 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-04-25T04:35:24.6397616Z 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-04-25T04:35:24.6403102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6426303Z 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-04-25T04:35:24.6431877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6437282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6442579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6448058Z 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-04-25T04:35:24.6453852Z 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-04-25T04:35:24.6459083Z 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-04-25T04:35:24.6464550Z 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-04-25T04:35:24.6470183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6475729Z 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-04-25T04:35:24.6481550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6486899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6492110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6497445Z 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-04-25T04:35:24.6503037Z 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-04-25T04:35:24.6509010Z 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-04-25T04:35:24.6514796Z 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-04-25T04:35:24.6520481Z 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-04-25T04:35:24.6526449Z 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-04-25T04:35:24.6532199Z 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-04-25T04:35:24.6537899Z 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-04-25T04:35:24.6544020Z 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-04-25T04:35:24.6550059Z 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-04-25T04:35:24.6555814Z 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-04-25T04:35:24.6561579Z 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-04-25T04:35:24.6567359Z 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-04-25T04:35:24.6573884Z 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-04-25T04:35:24.6584457Z 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-04-25T04:35:24.6590133Z 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-04-25T04:35:24.6595998Z 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-04-25T04:35:24.6601718Z 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-04-25T04:35:24.6607525Z 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-04-25T04:35:24.6613294Z 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-04-25T04:35:24.6620044Z 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-04-25T04:35:24.6625701Z 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-04-25T04:35:24.6631751Z 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-04-25T04:35:24.6637529Z 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-04-25T04:35:24.6643412Z 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-04-25T04:35:24.6649309Z 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-04-25T04:35:24.6655123Z 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-04-25T04:35:24.6660804Z 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-04-25T04:35:24.6666472Z 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-04-25T04:35:24.6672559Z 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-04-25T04:35:24.6678013Z 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-04-25T04:35:24.6683646Z 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-04-25T04:35:24.6689283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6694532Z 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-04-25T04:35:24.6700122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6705473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6710517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6716172Z 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-04-25T04:35:24.6721829Z 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-04-25T04:35:24.6727546Z 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-04-25T04:35:24.6732885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6738439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6743898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6749574Z 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-04-25T04:35:24.6756121Z 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-04-25T04:35:24.6761726Z 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-04-25T04:35:24.6767825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6773414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6779043Z 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-04-25T04:35:24.6784473Z 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-04-25T04:35:24.6805005Z 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-04-25T04:35:24.6810521Z 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-04-25T04:35:24.6816314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6822980Z 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-04-25T04:35:24.6829510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6835874Z 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-04-25T04:35:24.6841813Z 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-04-25T04:35:24.6847861Z 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-04-25T04:35:24.6854070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6859706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6865394Z 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-04-25T04:35:24.6871475Z 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-04-25T04:35:24.6877683Z 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-04-25T04:35:24.6883658Z 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-04-25T04:35:24.6889151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6894825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6900584Z 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-04-25T04:35:24.6906147Z 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-04-25T04:35:24.6913078Z 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-04-25T04:35:24.6919060Z 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-04-25T04:35:24.6924859Z 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-04-25T04:35:24.6930592Z 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-04-25T04:35:24.6936201Z 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-04-25T04:35:24.6941937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6947674Z 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-04-25T04:35:24.6953541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6959191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6964952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6970520Z 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-04-25T04:35:24.6975881Z 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-04-25T04:35:24.6981493Z 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-04-25T04:35:24.6986998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.6992422Z 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-04-25T04:35:24.6999162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7004456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7009667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7016070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7021510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7027555Z 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-04-25T04:35:24.7033148Z 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-04-25T04:35:24.7039120Z 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-04-25T04:35:24.7045059Z 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-04-25T04:35:24.7050990Z 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-04-25T04:35:24.7056656Z 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-04-25T04:35:24.7062408Z 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-04-25T04:35:24.7068432Z 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-04-25T04:35:24.7073917Z 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-04-25T04:35:24.7079593Z 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-04-25T04:35:24.7085242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7091269Z 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-04-25T04:35:24.7097133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7102867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7108667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7114623Z 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-04-25T04:35:24.7120254Z 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-04-25T04:35:24.7126090Z 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-04-25T04:35:24.7132173Z 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-04-25T04:35:24.7138171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7143691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7149385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7155018Z 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-04-25T04:35:24.7160781Z 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-04-25T04:35:24.7166770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7172346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7178269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7184097Z 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-04-25T04:35:24.7189697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7195544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7201311Z 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-04-25T04:35:24.7206875Z 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-04-25T04:35:24.7212641Z 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-04-25T04:35:24.7218836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7224506Z 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-04-25T04:35:24.7230177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7235817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7241608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7247151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7252766Z 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-04-25T04:35:24.7258765Z 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-04-25T04:35:24.7265337Z 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-04-25T04:35:24.7271827Z 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-04-25T04:35:24.7277832Z 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-04-25T04:35:24.7283637Z 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-04-25T04:35:24.7289598Z 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-04-25T04:35:24.7295299Z 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-04-25T04:35:24.7301096Z 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-04-25T04:35:24.7306812Z 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-04-25T04:35:24.7313469Z 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-04-25T04:35:24.7322472Z 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-04-25T04:35:24.7325760Z 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-04-25T04:35:24.7331354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7337275Z 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-04-25T04:35:24.7342656Z 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-04-25T04:35:24.7348294Z 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-04-25T04:35:24.7354005Z 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-04-25T04:35:24.7364389Z 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-04-25T04:35:24.7369704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7375087Z 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-04-25T04:35:24.7380599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7386160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7391706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7397209Z 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-04-25T04:35:24.7403262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7408610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7414223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7419651Z 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-04-25T04:35:24.7424951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7430714Z 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-04-25T04:35:24.7436520Z 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-04-25T04:35:24.7442475Z 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-04-25T04:35:24.7448868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7454774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7461361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7466710Z 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-04-25T04:35:24.7472219Z 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-04-25T04:35:24.7510693Z 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-04-25T04:35:24.7516783Z 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-04-25T04:35:24.7522723Z 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-04-25T04:35:24.7528370Z 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-04-25T04:35:24.7535209Z 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-04-25T04:35:24.7541890Z 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-04-25T04:35:24.7547523Z 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-04-25T04:35:24.7561841Z 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-04-25T04:35:24.7568025Z 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-04-25T04:35:24.7573642Z 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-04-25T04:35:24.7579241Z 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-04-25T04:35:24.7589974Z 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-04-25T04:35:24.7596235Z 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-04-25T04:35:24.7601921Z 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-04-25T04:35:24.7607796Z 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-04-25T04:35:24.7613911Z 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-04-25T04:35:24.7619772Z 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-04-25T04:35:24.7625844Z 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-04-25T04:35:24.7631790Z 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-04-25T04:35:24.7637659Z 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-04-25T04:35:24.7643708Z 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-04-25T04:35:24.7649990Z 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-04-25T04:35:24.7655915Z 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-04-25T04:35:24.7661641Z 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-04-25T04:35:24.7667412Z 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-04-25T04:35:24.7673147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7679063Z 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-04-25T04:35:24.7684881Z 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-04-25T04:35:24.7691203Z 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-04-25T04:35:24.7696882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7702454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7708316Z 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-04-25T04:35:24.7713994Z 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-04-25T04:35:24.7719579Z 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-04-25T04:35:24.7725447Z 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-04-25T04:35:24.7735156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7740785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7746061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7751784Z 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-04-25T04:35:24.7757409Z 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-04-25T04:35:24.7762962Z 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-04-25T04:35:24.7768611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7774233Z 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-04-25T04:35:24.7780014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7785850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7790949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7796937Z 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-04-25T04:35:24.7802710Z 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-04-25T04:35:24.7808438Z 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-04-25T04:35:24.7829324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7835131Z 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-04-25T04:35:24.7841118Z 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-04-25T04:35:24.7846786Z 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-04-25T04:35:24.7852535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7858038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7864017Z 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-04-25T04:35:24.7869605Z 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-04-25T04:35:24.7875569Z 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-04-25T04:35:24.7881141Z 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-04-25T04:35:24.7891868Z 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-04-25T04:35:24.7897328Z 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-04-25T04:35:24.7903032Z 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-04-25T04:35:24.7908986Z 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-04-25T04:35:24.7914816Z 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-04-25T04:35:24.7920503Z 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-04-25T04:35:24.7926077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7931699Z 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-04-25T04:35:24.7937416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7943015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7948537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7954300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.7960558Z 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-04-25T04:35:24.7966223Z 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-04-25T04:35:24.7971988Z 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-04-25T04:35:24.7977613Z 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-04-25T04:35:24.7983343Z 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-04-25T04:35:24.7988990Z 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-04-25T04:35:24.7994980Z 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-04-25T04:35:24.8001076Z 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-04-25T04:35:24.8006547Z 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-04-25T04:35:24.8012185Z 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-04-25T04:35:24.8017732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8023459Z 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-04-25T04:35:24.8029793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8035690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8041252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8047199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8052676Z 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-04-25T04:35:24.8058460Z 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-04-25T04:35:24.8064128Z 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-04-25T04:35:24.8069825Z 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-04-25T04:35:24.8075681Z 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-04-25T04:35:24.8086112Z 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-04-25T04:35:24.8091889Z 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-04-25T04:35:24.8097945Z 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-04-25T04:35:24.8103320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8108843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8114854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8120305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8126515Z 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-04-25T04:35:24.8132046Z 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-04-25T04:35:24.8137768Z 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-04-25T04:35:24.8143360Z 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-04-25T04:35:24.8149498Z 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-04-25T04:35:24.8155464Z 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-04-25T04:35:24.8161391Z 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-04-25T04:35:24.8167130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8172865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8178532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8184774Z 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-04-25T04:35:24.8217261Z 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-04-25T04:35:24.8222843Z 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-04-25T04:35:24.8228618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8234439Z 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-04-25T04:35:24.8240189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8246431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8251961Z 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-04-25T04:35:24.8257851Z 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-04-25T04:35:24.8263618Z 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-04-25T04:35:24.8270369Z 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-04-25T04:35:24.8276621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8282133Z 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-04-25T04:35:24.8294973Z 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-04-25T04:35:24.8301539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8307088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8312961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8318743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8330093Z 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-04-25T04:35:24.8336212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8341954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8347586Z 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-04-25T04:35:24.8353463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8795645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8796766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8797841Z 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-04-25T04:35:24.8799030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8799972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8800872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8801786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8802709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8803603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8804742Z 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-04-25T04:35:24.8805820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8806746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8807656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8808593Z 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-04-25T04:35:24.8809784Z 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-04-25T04:35:24.8811014Z 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-04-25T04:35:24.8812097Z 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-04-25T04:35:24.8813282Z 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-04-25T04:35:24.8814304Z 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-04-25T04:35:24.8815374Z 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-04-25T04:35:24.8816547Z 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-04-25T04:35:24.8817586Z 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-04-25T04:35:24.8818534Z 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-04-25T04:35:24.8819448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8820564Z 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-04-25T04:35:24.8821886Z 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-04-25T04:35:24.8823030Z 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-04-25T04:35:24.8824107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8825231Z 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-04-25T04:35:24.8826319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8827400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8828412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8829669Z 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-04-25T04:35:24.8830987Z 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-04-25T04:35:24.8832098Z 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-04-25T04:35:24.8833138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8834287Z 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-04-25T04:35:24.8838309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8843787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8849318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8854620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8860426Z 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-04-25T04:35:24.8866038Z 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-04-25T04:35:24.8871693Z 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-04-25T04:35:24.8877326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8883016Z 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-04-25T04:35:24.8888575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8894540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8900458Z 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-04-25T04:35:24.8906045Z 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-04-25T04:35:24.8911580Z 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-04-25T04:35:24.8917368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8922972Z 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-04-25T04:35:24.8928700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8934174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8940283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8945822Z 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-04-25T04:35:24.8951472Z 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-04-25T04:35:24.8956991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8962448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8968017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8973294Z 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-04-25T04:35:24.8978726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8983927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8989407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.8994828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9000915Z 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-04-25T04:35:24.9006809Z 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-04-25T04:35:24.9012263Z 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-04-25T04:35:24.9017837Z 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-04-25T04:35:24.9023418Z 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-04-25T04:35:24.9029372Z 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-04-25T04:35:24.9035314Z 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-04-25T04:35:24.9040829Z 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-04-25T04:35:24.9046769Z 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-04-25T04:35:24.9052297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9058260Z 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-04-25T04:35:24.9063915Z 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-04-25T04:35:24.9069650Z 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-04-25T04:35:24.9075333Z 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-04-25T04:35:24.9081183Z 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-04-25T04:35:24.9086876Z 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-04-25T04:35:24.9092469Z 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-04-25T04:35:24.9098035Z 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-04-25T04:35:24.9103806Z 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-04-25T04:35:24.9109555Z 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-04-25T04:35:24.9115374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9121244Z 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-04-25T04:35:24.9127304Z 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-04-25T04:35:24.9132871Z 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-04-25T04:35:24.9138627Z 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-04-25T04:35:24.9144481Z 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-04-25T04:35:24.9150166Z 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-04-25T04:35:24.9156229Z 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-04-25T04:35:24.9161877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9167855Z 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-04-25T04:35:24.9173556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9179345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9185091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9191050Z 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-04-25T04:35:24.9196826Z 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-04-25T04:35:24.9202745Z 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-04-25T04:35:24.9208456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9214994Z 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-04-25T04:35:24.9220826Z 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-04-25T04:35:24.9226520Z 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-04-25T04:35:24.9232363Z 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-04-25T04:35:24.9238260Z 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-04-25T04:35:24.9244719Z 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-04-25T04:35:24.9250443Z 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-04-25T04:35:24.9256202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9261923Z 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-04-25T04:35:24.9268018Z 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-04-25T04:35:24.9274106Z 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-04-25T04:35:24.9280060Z 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-04-25T04:35:24.9286283Z 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-04-25T04:35:24.9292453Z 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-04-25T04:35:24.9298193Z 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-04-25T04:35:24.9304230Z 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-04-25T04:35:24.9309949Z 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-04-25T04:35:24.9315744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9321090Z 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-04-25T04:35:24.9326979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9334158Z 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-04-25T04:35:24.9369229Z 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-04-25T04:35:24.9375017Z 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-04-25T04:35:24.9381031Z 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-04-25T04:35:24.9386777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9392535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9398400Z 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-04-25T04:35:24.9404260Z 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-04-25T04:35:24.9409800Z 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-04-25T04:35:24.9415454Z 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-04-25T04:35:24.9421086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9426733Z 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-04-25T04:35:24.9432631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9437823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9443320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9449039Z 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-04-25T04:35:24.9454558Z 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-04-25T04:35:24.9460086Z 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-04-25T04:35:24.9465844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9471390Z 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-04-25T04:35:24.9476932Z 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-04-25T04:35:24.9482550Z 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-04-25T04:35:24.9488147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9493861Z 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-04-25T04:35:24.9499196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9504641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9514943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9540434Z 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-04-25T04:35:24.9545780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9551263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9556834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9562075Z 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-04-25T04:35:24.9580240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9585811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9591912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9597302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9603116Z 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-04-25T04:35:24.9608551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9614130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9620086Z 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-04-25T04:35:24.9625725Z 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-04-25T04:35:24.9631528Z 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-04-25T04:35:24.9637300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9643011Z 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-04-25T04:35:24.9648618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9654052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9659317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9664917Z 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-04-25T04:35:24.9670423Z 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-04-25T04:35:24.9676610Z 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-04-25T04:35:24.9682187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9687729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9693476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9699261Z 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-04-25T04:35:24.9704927Z 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-04-25T04:35:24.9710545Z 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-04-25T04:35:24.9716286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9721923Z 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-04-25T04:35:24.9727587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9733407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9739103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9744902Z 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-04-25T04:35:24.9750435Z 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-04-25T04:35:24.9756158Z 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-04-25T04:35:24.9762105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9767637Z 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-04-25T04:35:24.9773505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9779103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9784752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9790230Z 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-04-25T04:35:24.9796043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9801396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9807163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9812732Z 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-04-25T04:35:24.9818185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9823875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9830232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9836249Z 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-04-25T04:35:24.9841797Z 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-04-25T04:35:24.9847365Z 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-04-25T04:35:24.9853013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9858949Z 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-04-25T04:35:24.9864396Z 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-04-25T04:35:24.9869824Z 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-04-25T04:35:24.9875610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9880826Z 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-04-25T04:35:24.9886344Z 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-04-25T04:35:24.9891780Z 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-04-25T04:35:24.9897211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9903045Z 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-04-25T04:35:24.9908398Z 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-04-25T04:35:24.9913806Z 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-04-25T04:35:24.9920052Z 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-04-25T04:35:24.9926531Z 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-04-25T04:35:24.9932694Z 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-04-25T04:35:24.9939086Z 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-04-25T04:35:24.9945206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9951652Z 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-04-25T04:35:24.9957990Z 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-04-25T04:35:24.9964404Z 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-04-25T04:35:24.9970845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9976524Z 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-04-25T04:35:24.9982179Z 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-04-25T04:35:24.9987523Z 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-04-25T04:35:24.9992960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:24.9998470Z 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-04-25T04:35:25.0003922Z 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-04-25T04:35:25.0009101Z 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-04-25T04:35:25.0014551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0041178Z 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-04-25T04:35:25.0046666Z 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-04-25T04:35:25.0052068Z 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-04-25T04:35:25.0057947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0063389Z 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-04-25T04:35:25.0068788Z 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-04-25T04:35:25.0074289Z 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-04-25T04:35:25.0080328Z 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-04-25T04:35:25.0086089Z 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-04-25T04:35:25.0092092Z 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-04-25T04:35:25.0097654Z 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-04-25T04:35:25.0103502Z 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-04-25T04:35:25.0108956Z 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-04-25T04:35:25.0114561Z 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-04-25T04:35:25.0120045Z 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-04-25T04:35:25.0125574Z 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-04-25T04:35:25.0131226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0136924Z 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-04-25T04:35:25.0142359Z 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-04-25T04:35:25.0147665Z 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-04-25T04:35:25.0153689Z 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-04-25T04:35:25.0164050Z 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-04-25T04:35:25.0169844Z 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-04-25T04:35:25.0175415Z 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-04-25T04:35:25.0180941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0186188Z 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-04-25T04:35:25.0191578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0197194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0202477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0208438Z 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-04-25T04:35:25.0214477Z 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-04-25T04:35:25.0220053Z 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-04-25T04:35:25.0225721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0231255Z 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-04-25T04:35:25.0239319Z 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-04-25T04:35:25.0244509Z 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-04-25T04:35:25.0250066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0256581Z 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-04-25T04:35:25.0262051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0267814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0273232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0278999Z 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-04-25T04:35:25.0285226Z 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-04-25T04:35:25.0290793Z 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-04-25T04:35:25.0296666Z 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-04-25T04:35:25.0302243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0308070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0313662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0319342Z 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-04-25T04:35:25.0324880Z 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-04-25T04:35:25.0330394Z 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-04-25T04:35:25.0336456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0343043Z 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-04-25T04:35:25.0349117Z 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-04-25T04:35:25.0355126Z 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-04-25T04:35:25.0361369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0367219Z 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-04-25T04:35:25.0372917Z 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-04-25T04:35:25.0378537Z 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-04-25T04:35:25.0384169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0389604Z 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-04-25T04:35:25.0395119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0400558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0405993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0412273Z 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-04-25T04:35:25.0417698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0423145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0428449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0437238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0442854Z 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-04-25T04:35:25.0448906Z 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-04-25T04:35:25.0454973Z 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-04-25T04:35:25.0460571Z 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-04-25T04:35:25.0466258Z 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-04-25T04:35:25.0471910Z 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-04-25T04:35:25.0478220Z 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-04-25T04:35:25.0483451Z 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-04-25T04:35:25.0489615Z 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-04-25T04:35:25.0495213Z 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-04-25T04:35:25.0505754Z 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-04-25T04:35:25.0511317Z 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-04-25T04:35:25.0517252Z 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-04-25T04:35:25.0522765Z 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-04-25T04:35:25.0528282Z 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-04-25T04:35:25.0533790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0539839Z 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-04-25T04:35:25.0545270Z 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-04-25T04:35:25.0550766Z 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-04-25T04:35:25.0556371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0562182Z 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-04-25T04:35:25.0567679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0573258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0578508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0584221Z 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-04-25T04:35:25.0589637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0601060Z 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-04-25T04:35:25.0606677Z 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-04-25T04:35:25.0612209Z 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-04-25T04:35:25.0618299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0623890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0629480Z 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-04-25T04:35:25.0635053Z 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-04-25T04:35:25.0640442Z 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-04-25T04:35:25.0645893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0651386Z 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-04-25T04:35:25.0656778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0662156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0667389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0673153Z 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-04-25T04:35:25.0678566Z 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-04-25T04:35:25.0684117Z 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-04-25T04:35:25.0689717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0695664Z 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-04-25T04:35:25.0701332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0707900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0713518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0719176Z 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-04-25T04:35:25.0724667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0730696Z 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-04-25T04:35:25.0736203Z 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-04-25T04:35:25.0743559Z 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-04-25T04:35:25.0749561Z 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-04-25T04:35:25.0755513Z 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-04-25T04:35:25.0761208Z 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-04-25T04:35:25.0767069Z 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-04-25T04:35:25.0772491Z 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-04-25T04:35:25.0778847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0784193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0789880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0796359Z 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-04-25T04:35:25.0801894Z 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-04-25T04:35:25.0808031Z 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-04-25T04:35:25.0814495Z 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-04-25T04:35:25.0820627Z 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-04-25T04:35:25.0826488Z 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-04-25T04:35:25.0832357Z 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-04-25T04:35:25.0838820Z 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-04-25T04:35:25.0844557Z 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-04-25T04:35:25.0851200Z 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-04-25T04:35:25.0857503Z 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-04-25T04:35:25.0863485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0869748Z 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-04-25T04:35:25.0875508Z 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-04-25T04:35:25.0881451Z 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-04-25T04:35:25.0887761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.0894000Z 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-04-25T04:35:25.0899860Z 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-04-25T04:35:25.0905923Z 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-04-25T04:35:25.3376775Z 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-04-25T04:35:25.3394420Z 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-04-25T04:35:25.3400421Z 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-04-25T04:35:25.3406845Z 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-04-25T04:35:25.3413218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3419698Z 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-04-25T04:35:25.3425714Z 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-04-25T04:35:25.3431567Z 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-04-25T04:35:25.3437560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3443639Z 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-04-25T04:35:25.3449219Z 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-04-25T04:35:25.3454680Z 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-04-25T04:35:25.3460432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3466044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3471907Z 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-04-25T04:35:25.3477632Z 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-04-25T04:35:25.3483303Z 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-04-25T04:35:25.3489071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3494687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3500609Z 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-04-25T04:35:25.3506827Z 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-04-25T04:35:25.3512645Z 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-04-25T04:35:25.3518701Z 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-04-25T04:35:25.3524446Z 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-04-25T04:35:25.3530455Z 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-04-25T04:35:25.3536116Z 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-04-25T04:35:25.3541698Z 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-04-25T04:35:25.3552001Z 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-04-25T04:35:25.3557841Z 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-04-25T04:35:25.3563501Z 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-04-25T04:35:25.3569135Z 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-04-25T04:35:25.3575947Z 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-04-25T04:35:25.3582087Z 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-04-25T04:35:25.3588477Z 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-04-25T04:35:25.3595048Z 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-04-25T04:35:25.3601171Z 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-04-25T04:35:25.3606796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3612806Z 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-04-25T04:35:25.3618268Z 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-04-25T04:35:25.3624670Z 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-04-25T04:35:25.3630330Z 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-04-25T04:35:25.3636043Z 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-04-25T04:35:25.3641632Z 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-04-25T04:35:25.3647778Z 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-04-25T04:35:25.3653508Z 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-04-25T04:35:25.3659052Z 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-04-25T04:35:25.3665022Z 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-04-25T04:35:25.3670444Z 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-04-25T04:35:25.3676146Z 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-04-25T04:35:25.3682079Z 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-04-25T04:35:25.3687567Z 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-04-25T04:35:25.3693660Z 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-04-25T04:35:25.3699385Z 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-04-25T04:35:25.3705319Z 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-04-25T04:35:25.3710957Z 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-04-25T04:35:25.3716936Z 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-04-25T04:35:25.3722644Z 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-04-25T04:35:25.3728346Z 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-04-25T04:35:25.3734289Z 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-04-25T04:35:25.3740498Z 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-04-25T04:35:25.3746170Z 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-04-25T04:35:25.3752238Z 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-04-25T04:35:25.3757961Z 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-04-25T04:35:25.3764049Z 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-04-25T04:35:25.3769866Z 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-04-25T04:35:25.3776002Z 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-04-25T04:35:25.3781878Z 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-04-25T04:35:25.3787730Z 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-04-25T04:35:25.3793351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3799375Z 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-04-25T04:35:25.3809539Z 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-04-25T04:35:25.3815463Z 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-04-25T04:35:25.3821424Z 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-04-25T04:35:25.3827196Z 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-04-25T04:35:25.3832823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.3839185Z 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-04-25T04:35:25.3844882Z 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-04-25T04:35:25.3850774Z 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-04-25T04:35:25.3857175Z 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-04-25T04:35:25.3864724Z 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-04-25T04:35:25.3871252Z 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-04-25T04:35:25.3877988Z 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-04-25T04:35:25.3883825Z 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-04-25T04:35:25.3889744Z 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-04-25T04:35:25.3895838Z 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-04-25T04:35:25.3902698Z 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-04-25T04:35:25.3908348Z 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-04-25T04:35:25.3914508Z 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-04-25T04:35:25.3920306Z 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-04-25T04:35:25.3925940Z 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-04-25T04:35:25.3932285Z 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-04-25T04:35:25.3938021Z 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-04-25T04:35:25.3943851Z 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-04-25T04:35:25.3949543Z 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-04-25T04:35:25.3956002Z 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-04-25T04:35:25.3962141Z 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-04-25T04:35:25.3967690Z 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-04-25T04:35:25.3973309Z 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-04-25T04:35:25.3979183Z 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-04-25T04:35:25.3985171Z 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-04-25T04:35:25.3990835Z 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-04-25T04:35:25.3996540Z 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-04-25T04:35:25.4002341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4008773Z 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-04-25T04:35:25.4014137Z 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-04-25T04:35:25.4019713Z 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-04-25T04:35:25.4025855Z 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-04-25T04:35:25.4031789Z 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-04-25T04:35:25.4037665Z 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-04-25T04:35:25.4043235Z 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-04-25T04:35:25.4048870Z 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-04-25T04:35:25.4054505Z 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-04-25T04:35:25.4060128Z 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-04-25T04:35:25.4066391Z 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-04-25T04:35:25.4071902Z 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-04-25T04:35:25.4078010Z 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-04-25T04:35:25.4083846Z 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-04-25T04:35:25.4097217Z 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-04-25T04:35:25.4098471Z 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-04-25T04:35:25.4104561Z 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-04-25T04:35:25.4110933Z 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-04-25T04:35:25.4116911Z 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-04-25T04:35:25.4122481Z 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-04-25T04:35:25.4137197Z 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-04-25T04:35:25.4142928Z 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-04-25T04:35:25.4148776Z 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-04-25T04:35:25.4154643Z 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-04-25T04:35:25.4160579Z 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-04-25T04:35:25.4166092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4172153Z 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-04-25T04:35:25.4177739Z 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-04-25T04:35:25.4184208Z 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-04-25T04:35:25.4189266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4195359Z 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-04-25T04:35:25.4201091Z 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-04-25T04:35:25.4206942Z 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-04-25T04:35:25.4212943Z 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-04-25T04:35:25.4218722Z 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-04-25T04:35:25.4224458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4230669Z 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-04-25T04:35:25.4236624Z 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-04-25T04:35:25.4242330Z 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-04-25T04:35:25.4247901Z 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-04-25T04:35:25.4253663Z 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-04-25T04:35:25.4259465Z 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-04-25T04:35:25.4265085Z 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-04-25T04:35:25.4272152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4283735Z 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-04-25T04:35:25.4289544Z 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-04-25T04:35:25.4295381Z 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-04-25T04:35:25.4301135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4307232Z 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-04-25T04:35:25.4313200Z 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-04-25T04:35:25.4319571Z 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-04-25T04:35:25.4325378Z 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-04-25T04:35:25.4331027Z 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-04-25T04:35:25.4336804Z 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-04-25T04:35:25.4342568Z 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-04-25T04:35:25.4348499Z 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-04-25T04:35:25.4354524Z 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-04-25T04:35:25.4361069Z 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-04-25T04:35:25.4367510Z 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-04-25T04:35:25.4374445Z 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-04-25T04:35:25.4380307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4386166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4392263Z 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-04-25T04:35:25.4398456Z 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-04-25T04:35:25.4404190Z 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-04-25T04:35:25.4410096Z 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-04-25T04:35:25.4415836Z 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-04-25T04:35:25.4421660Z 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-04-25T04:35:25.4427387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4433640Z 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-04-25T04:35:25.4439455Z 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-04-25T04:35:25.4445113Z 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-04-25T04:35:25.4450793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4456967Z 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-04-25T04:35:25.4462822Z 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-04-25T04:35:25.4468474Z 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-04-25T04:35:25.4474189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4480532Z 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-04-25T04:35:25.4486211Z 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-04-25T04:35:25.4491574Z 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-04-25T04:35:25.4497361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4503271Z 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-04-25T04:35:25.4541972Z 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-04-25T04:35:25.4547604Z 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-04-25T04:35:25.4553524Z 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-04-25T04:35:25.4559652Z 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-04-25T04:35:25.4565334Z 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-04-25T04:35:25.4571168Z 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-04-25T04:35:25.4576883Z 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-04-25T04:35:25.4582655Z 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-04-25T04:35:25.4588927Z 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-04-25T04:35:25.4595006Z 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-04-25T04:35:25.4600696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4606192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4612161Z 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-04-25T04:35:25.4617661Z 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-04-25T04:35:25.4623630Z 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-04-25T04:35:25.4630521Z 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-04-25T04:35:25.4636840Z 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-04-25T04:35:25.4642471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4648076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4653798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4659590Z 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-04-25T04:35:25.4665356Z 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-04-25T04:35:25.4671398Z 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-04-25T04:35:25.4677326Z 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-04-25T04:35:25.4683473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4689289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4695052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4700390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4706300Z 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-04-25T04:35:25.4712069Z 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-04-25T04:35:25.4717891Z 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-04-25T04:35:25.4723602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4729349Z 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-04-25T04:35:25.4735176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4740868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4746511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4752284Z 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-04-25T04:35:25.4758526Z 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-04-25T04:35:25.4764207Z 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-04-25T04:35:25.4769804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4775446Z 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-04-25T04:35:25.4781480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4787196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4792994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4798885Z 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-04-25T04:35:25.4804798Z 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-04-25T04:35:25.4810600Z 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-04-25T04:35:25.4816241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4821684Z 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-04-25T04:35:25.4827526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4833535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4838999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4844623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4850799Z 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-04-25T04:35:25.4856771Z 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-04-25T04:35:25.4863080Z 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-04-25T04:35:25.4869411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4875326Z 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-04-25T04:35:25.4881140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4886681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4916467Z 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-04-25T04:35:25.4922535Z 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-04-25T04:35:25.4928203Z 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-04-25T04:35:25.4933882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4943757Z 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-04-25T04:35:25.4949394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4955461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4961153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.4971135Z 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-04-25T04:35:25.4977013Z 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-04-25T04:35:25.4982779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5018017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5023812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5029298Z 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-04-25T04:35:25.5035102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5040532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5046347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5052214Z 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-04-25T04:35:25.5058165Z 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-04-25T04:35:25.5064003Z 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-04-25T04:35:25.5070228Z 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-04-25T04:35:25.5076092Z 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-04-25T04:35:25.5082159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5088244Z 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-04-25T04:35:25.5094028Z 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-04-25T04:35:25.5099895Z 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-04-25T04:35:25.5105660Z 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-04-25T04:35:25.5111608Z 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-04-25T04:35:25.5118201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5124472Z 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-04-25T04:35:25.5130284Z 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-04-25T04:35:25.5136101Z 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-04-25T04:35:25.5141927Z 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-04-25T04:35:25.5147686Z 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-04-25T04:35:25.5153538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5159642Z 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-04-25T04:35:25.5165717Z 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-04-25T04:35:25.5172460Z 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-04-25T04:35:25.5178376Z 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-04-25T04:35:25.5190984Z 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-04-25T04:35:25.5196893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5202531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5208546Z 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-04-25T04:35:25.5214455Z 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-04-25T04:35:25.5220187Z 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-04-25T04:35:25.5226506Z 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-04-25T04:35:25.5236182Z 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-04-25T04:35:25.5242629Z 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-04-25T04:35:25.5248461Z 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-04-25T04:35:25.5254336Z 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-04-25T04:35:25.5260344Z 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-04-25T04:35:25.5266200Z 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-04-25T04:35:25.5272034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5277877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5283663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5290528Z 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-04-25T04:35:25.5296022Z 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-04-25T04:35:25.5301740Z 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-04-25T04:35:25.5307650Z 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-04-25T04:35:25.5313277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5319457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5325240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5331166Z 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-04-25T04:35:25.5336947Z 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-04-25T04:35:25.5349904Z 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-04-25T04:35:25.5355953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5361580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5367543Z 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-04-25T04:35:25.5373001Z 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-04-25T04:35:25.5378504Z 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-04-25T04:35:25.5384184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5389320Z 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-04-25T04:35:25.5395135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5400980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5406828Z 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-04-25T04:35:25.5412564Z 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-04-25T04:35:25.5418692Z 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-04-25T04:35:25.5424260Z 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-04-25T04:35:25.5429921Z 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-04-25T04:35:25.5435869Z 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-04-25T04:35:25.5441847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5447279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5453676Z 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-04-25T04:35:25.5460217Z 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-04-25T04:35:25.5466702Z 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-04-25T04:35:25.5473488Z 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-04-25T04:35:25.5479893Z 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-04-25T04:35:25.5486886Z 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-04-25T04:35:25.5492541Z 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-04-25T04:35:25.5498578Z 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-04-25T04:35:25.5504368Z 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-04-25T04:35:25.5510293Z 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-04-25T04:35:25.5516169Z 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-04-25T04:35:25.5522083Z 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-04-25T04:35:25.5527483Z 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-04-25T04:35:25.5533084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5538832Z 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-04-25T04:35:25.5544740Z 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-04-25T04:35:25.5550237Z 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-04-25T04:35:25.5555875Z 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-04-25T04:35:25.5569533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5575112Z 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-04-25T04:35:25.5580686Z 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-04-25T04:35:25.5586262Z 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-04-25T04:35:25.5591773Z 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-04-25T04:35:25.5597419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5603066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5608755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5614648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5620345Z 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-04-25T04:35:25.5625768Z 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-04-25T04:35:25.5631312Z 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-04-25T04:35:25.5637169Z 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-04-25T04:35:25.5642653Z 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-04-25T04:35:25.5648417Z 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-04-25T04:35:25.5654111Z 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-04-25T04:35:25.5659672Z 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-04-25T04:35:25.5665285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5670907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5676552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5682481Z 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-04-25T04:35:25.5687990Z 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-04-25T04:35:25.5693525Z 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-04-25T04:35:25.5699878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5705305Z 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-04-25T04:35:25.5710813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5716997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5722405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5728120Z 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-04-25T04:35:25.5733668Z 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-04-25T04:35:25.5739699Z 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-04-25T04:35:25.5745599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5751566Z 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-04-25T04:35:25.5757142Z 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-04-25T04:35:25.5762956Z 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-04-25T04:35:25.5768823Z 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-04-25T04:35:25.5775214Z 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-04-25T04:35:25.5781116Z 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-04-25T04:35:25.5786839Z 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-04-25T04:35:25.5792884Z 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-04-25T04:35:25.5798854Z 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-04-25T04:35:25.5804464Z 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-04-25T04:35:25.5810209Z 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-04-25T04:35:25.5816104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5822030Z 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-04-25T04:35:25.5828036Z 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-04-25T04:35:25.5833741Z 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-04-25T04:35:25.5839585Z 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-04-25T04:35:25.5849964Z 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-04-25T04:35:25.5855657Z 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-04-25T04:35:25.5862101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5868894Z 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-04-25T04:35:25.5875644Z 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-04-25T04:35:25.5881498Z 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-04-25T04:35:25.5887530Z 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-04-25T04:35:25.5893708Z 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-04-25T04:35:25.5899585Z 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-04-25T04:35:25.5905286Z 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-04-25T04:35:25.5911240Z 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-04-25T04:35:25.5917084Z 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-04-25T04:35:25.5922703Z 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-04-25T04:35:25.5928481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5934167Z 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-04-25T04:35:25.5940139Z 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-04-25T04:35:25.5945788Z 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-04-25T04:35:25.5951498Z 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-04-25T04:35:25.5957531Z 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-04-25T04:35:25.5963816Z 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-04-25T04:35:25.5969689Z 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-04-25T04:35:25.5975250Z 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-04-25T04:35:25.5980799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5986104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.5992663Z 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-04-25T04:35:25.5998336Z 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-04-25T04:35:25.6003852Z 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-04-25T04:35:25.6009648Z 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-04-25T04:35:25.6015833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6021609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6027526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6033467Z 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-04-25T04:35:25.6044062Z 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-04-25T04:35:25.6049767Z 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-04-25T04:35:25.6055231Z 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-04-25T04:35:25.6061192Z 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-04-25T04:35:25.6067103Z 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-04-25T04:35:25.6072622Z 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-04-25T04:35:25.6078599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6083957Z 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-04-25T04:35:25.6089465Z 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-04-25T04:35:25.6094903Z 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-04-25T04:35:25.6100644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6106716Z 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-04-25T04:35:25.6112783Z 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-04-25T04:35:25.6119005Z 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-04-25T04:35:25.6125204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6130536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6163410Z 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-04-25T04:35:25.6168904Z 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-04-25T04:35:25.6174609Z 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-04-25T04:35:25.6180262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6186018Z 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-04-25T04:35:25.6191882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6198106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6204299Z 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-04-25T04:35:25.6209929Z 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-04-25T04:35:25.6215683Z 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-04-25T04:35:25.6221406Z 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-04-25T04:35:25.6227059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6232732Z 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-04-25T04:35:25.6238404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6243909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6249464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6255429Z 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-04-25T04:35:25.6260988Z 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-04-25T04:35:25.6267678Z 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-04-25T04:35:25.6273749Z 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-04-25T04:35:25.6280293Z 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-04-25T04:35:25.6286026Z 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-04-25T04:35:25.6291851Z 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-04-25T04:35:25.6297673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6303599Z 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-04-25T04:35:25.6309583Z 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-04-25T04:35:25.6315669Z 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-04-25T04:35:25.6321556Z 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-04-25T04:35:25.6327631Z 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-04-25T04:35:25.6333343Z 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-04-25T04:35:25.6339151Z 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-04-25T04:35:25.6345251Z 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-04-25T04:35:25.6351238Z 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-04-25T04:35:25.6357879Z 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-04-25T04:35:25.6364696Z 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-04-25T04:35:25.6370965Z 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-04-25T04:35:25.6376774Z 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-04-25T04:35:25.6382652Z 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-04-25T04:35:25.6388812Z 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-04-25T04:35:25.6394900Z 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-04-25T04:35:25.6400972Z 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-04-25T04:35:25.6406753Z 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-04-25T04:35:25.6412535Z 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-04-25T04:35:25.6418491Z 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-04-25T04:35:25.6424576Z 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-04-25T04:35:25.6430983Z 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-04-25T04:35:25.6436997Z 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-04-25T04:35:25.6442655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6448604Z 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-04-25T04:35:25.6454486Z 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-04-25T04:35:25.6460177Z 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-04-25T04:35:25.6465928Z 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-04-25T04:35:25.6494570Z 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-04-25T04:35:25.6495775Z 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-04-25T04:35:25.6496972Z 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-04-25T04:35:25.6498132Z 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-04-25T04:35:25.6499265Z 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-04-25T04:35:25.6501520Z 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-04-25T04:35:25.6507432Z 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-04-25T04:35:25.6513153Z 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-04-25T04:35:25.6519383Z 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-04-25T04:35:25.6525188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6531441Z 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-04-25T04:35:25.6537125Z 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-04-25T04:35:25.6543606Z 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-04-25T04:35:25.6548798Z 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-04-25T04:35:25.6554592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6560384Z 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-04-25T04:35:25.6566156Z 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-04-25T04:35:25.6572103Z 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-04-25T04:35:25.6578365Z 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-04-25T04:35:25.6612202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6617949Z 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-04-25T04:35:25.6623579Z 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-04-25T04:35:25.6629382Z 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-04-25T04:35:25.6635044Z 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-04-25T04:35:25.6640847Z 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-04-25T04:35:25.6646468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6652177Z 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-04-25T04:35:25.6657936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6663516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6675077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6680429Z 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-04-25T04:35:25.6686036Z 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-04-25T04:35:25.6691694Z 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-04-25T04:35:25.6697213Z 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-04-25T04:35:25.6714496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6720389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6726094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6731794Z 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-04-25T04:35:25.6737370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6747838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6753149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6758565Z 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-04-25T04:35:25.6763848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6769058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6774382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6779800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6785597Z 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-04-25T04:35:25.6791402Z 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-04-25T04:35:25.6797234Z 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-04-25T04:35:25.6802945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6808739Z 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-04-25T04:35:25.6814559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6820279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6826393Z 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-04-25T04:35:25.6832250Z 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-04-25T04:35:25.6837989Z 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-04-25T04:35:25.6843693Z 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-04-25T04:35:25.6849411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6854954Z 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-04-25T04:35:25.6861029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6867282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6873186Z 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-04-25T04:35:25.6879766Z 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-04-25T04:35:25.6886524Z 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-04-25T04:35:25.6892418Z 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-04-25T04:35:25.6898285Z 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-04-25T04:35:25.6904166Z 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-04-25T04:35:25.6910303Z 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-04-25T04:35:25.6916281Z 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-04-25T04:35:25.6922770Z 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-04-25T04:35:25.6928779Z 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-04-25T04:35:25.6934643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.6940738Z 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-04-25T04:35:25.6946639Z 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-04-25T04:35:25.6952725Z 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-04-25T04:35:25.6958634Z 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-04-25T04:35:25.6964739Z 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-04-25T04:35:25.6970687Z 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-04-25T04:35:25.6979314Z 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-04-25T04:35:25.6984453Z 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-04-25T04:35:25.6991077Z 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-04-25T04:35:25.6996889Z 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-04-25T04:35:25.7002878Z 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-04-25T04:35:25.7008498Z 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-04-25T04:35:25.7014295Z 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-04-25T04:35:25.7020849Z 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-04-25T04:35:25.7028854Z 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-04-25T04:35:25.7036204Z 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-04-25T04:35:25.7043752Z 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-04-25T04:35:25.7049659Z 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-04-25T04:35:25.7055836Z 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-04-25T04:35:25.7061692Z 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-04-25T04:35:25.7067904Z 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-04-25T04:35:25.7073920Z 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-04-25T04:35:25.7079682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7085506Z 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-04-25T04:35:25.7091975Z 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-04-25T04:35:25.7097632Z 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-04-25T04:35:25.7103625Z 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-04-25T04:35:25.7109436Z 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-04-25T04:35:25.7115593Z 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-04-25T04:35:25.7121350Z 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-04-25T04:35:25.7127660Z 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-04-25T04:35:25.7133469Z 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-04-25T04:35:25.7139309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7144957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7150850Z 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-04-25T04:35:25.7157016Z 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-04-25T04:35:25.7162920Z 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-04-25T04:35:25.7168329Z 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-04-25T04:35:25.7174869Z 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-04-25T04:35:25.7180116Z 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-04-25T04:35:25.7185796Z 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-04-25T04:35:25.7191524Z 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-04-25T04:35:25.7197226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7202616Z 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-04-25T04:35:25.7208215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7213877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7219275Z 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-04-25T04:35:25.7225018Z 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-04-25T04:35:25.7231197Z 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-04-25T04:35:25.7237060Z 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-04-25T04:35:25.7242877Z 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-04-25T04:35:25.7248694Z 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-04-25T04:35:25.7254443Z 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-04-25T04:35:25.7260602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7266954Z 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-04-25T04:35:25.7272550Z 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-04-25T04:35:25.7278748Z 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-04-25T04:35:25.7284488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7291365Z 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-04-25T04:35:25.7297512Z 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-04-25T04:35:25.7303545Z 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-04-25T04:35:25.7309830Z 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-04-25T04:35:25.7315722Z 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-04-25T04:35:25.7321478Z 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-04-25T04:35:25.7327325Z 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-04-25T04:35:25.7333435Z 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-04-25T04:35:25.7339271Z 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-04-25T04:35:25.7345428Z 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-04-25T04:35:25.7351198Z 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-04-25T04:35:25.7357301Z 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-04-25T04:35:25.7363364Z 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-04-25T04:35:25.7369848Z 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-04-25T04:35:25.7376177Z 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-04-25T04:35:25.7382709Z 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-04-25T04:35:25.7389203Z 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-04-25T04:35:25.7395720Z 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-04-25T04:35:25.7402288Z 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-04-25T04:35:25.7408790Z 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-04-25T04:35:25.7415079Z 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-04-25T04:35:25.7420776Z 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-04-25T04:35:25.7426726Z 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-04-25T04:35:25.7432695Z 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-04-25T04:35:25.7438699Z 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-04-25T04:35:25.7445368Z 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-04-25T04:35:25.7451050Z 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-04-25T04:35:25.7457290Z 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-04-25T04:35:25.7463400Z 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-04-25T04:35:25.7469106Z 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-04-25T04:35:25.7474965Z 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-04-25T04:35:25.7480966Z 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-04-25T04:35:25.7486961Z 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-04-25T04:35:25.7492624Z 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-04-25T04:35:25.7498278Z 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-04-25T04:35:25.7504044Z 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-04-25T04:35:25.7510049Z 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-04-25T04:35:25.7516488Z 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-04-25T04:35:25.7522677Z 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-04-25T04:35:25.7528533Z 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-04-25T04:35:25.7534613Z 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-04-25T04:35:25.7540877Z 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-04-25T04:35:25.7547014Z 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-04-25T04:35:25.7552998Z 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-04-25T04:35:25.7558857Z 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-04-25T04:35:25.7564790Z 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-04-25T04:35:25.7571000Z 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-04-25T04:35:25.7576570Z 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-04-25T04:35:25.7582419Z 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-04-25T04:35:25.7587983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7593794Z 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-04-25T04:35:25.7598998Z 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-04-25T04:35:25.7608329Z 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-04-25T04:35:25.7613864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7618924Z 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-04-25T04:35:25.7624822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7631675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7637050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7642571Z 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-04-25T04:35:25.7648182Z 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-04-25T04:35:25.7653566Z 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-04-25T04:35:25.7659563Z 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-04-25T04:35:25.7665098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7670484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7675996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7681681Z 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-04-25T04:35:25.7687265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7692640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7698696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7704400Z 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-04-25T04:35:25.7709856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7715428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7721249Z 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-04-25T04:35:25.7727289Z 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-04-25T04:35:25.7733013Z 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-04-25T04:35:25.7739199Z 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-04-25T04:35:25.7744930Z 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-04-25T04:35:25.7751131Z 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-04-25T04:35:25.7757169Z 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-04-25T04:35:25.7762984Z 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-04-25T04:35:25.7768590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7773952Z 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-04-25T04:35:25.7779656Z 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-04-25T04:35:25.7785471Z 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-04-25T04:35:25.7791462Z 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-04-25T04:35:25.7797145Z 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-04-25T04:35:25.7803361Z 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-04-25T04:35:25.7808886Z 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-04-25T04:35:25.7814685Z 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-04-25T04:35:25.7820302Z 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-04-25T04:35:25.7826430Z 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-04-25T04:35:25.7832427Z 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-04-25T04:35:25.7838307Z 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-04-25T04:35:25.7843951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7849247Z 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-04-25T04:35:25.7856882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7862157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7867661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7872930Z 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-04-25T04:35:25.7878708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7883916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7889140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7894631Z 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-04-25T04:35:25.7900569Z 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-04-25T04:35:25.7906296Z 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-04-25T04:35:25.7911995Z 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-04-25T04:35:25.7917961Z 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-04-25T04:35:25.7923645Z 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-04-25T04:35:25.7930169Z 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-04-25T04:35:25.7935992Z 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-04-25T04:35:25.7942081Z 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-04-25T04:35:25.7948495Z 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-04-25T04:35:25.7955634Z 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-04-25T04:35:25.7962076Z 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-04-25T04:35:25.7968691Z 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-04-25T04:35:25.7975061Z 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-04-25T04:35:25.7981235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.7987089Z 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-04-25T04:35:25.7993061Z 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-04-25T04:35:25.7999446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8005228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8010893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8016641Z 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-04-25T04:35:25.8022293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8027817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8033592Z 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-04-25T04:35:25.8039410Z 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-04-25T04:35:25.8045035Z 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-04-25T04:35:25.8050774Z 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-04-25T04:35:25.8056563Z 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-04-25T04:35:25.8062551Z 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-04-25T04:35:25.8068393Z 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-04-25T04:35:25.8074352Z 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-04-25T04:35:25.8080047Z 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-04-25T04:35:25.8085669Z 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-04-25T04:35:25.8091964Z 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-04-25T04:35:25.8097511Z 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-04-25T04:35:25.8103327Z 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-04-25T04:35:25.8109095Z 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-04-25T04:35:25.8114889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8119980Z 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-04-25T04:35:25.8125560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8158831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8164085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8169661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8205624Z 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-04-25T04:35:25.8211343Z 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-04-25T04:35:25.8217326Z 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-04-25T04:35:25.8223412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8229114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8235763Z 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-04-25T04:35:25.8241317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8247031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8252355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8258194Z 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-04-25T04:35:25.8263846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8269440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8275176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8281421Z 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-04-25T04:35:25.8287352Z 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-04-25T04:35:25.8292913Z 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-04-25T04:35:25.8298712Z 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-04-25T04:35:25.8304666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8310423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8316166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8322392Z 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-04-25T04:35:25.8328006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8333694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8339991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8345936Z 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-04-25T04:35:25.8351622Z 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-04-25T04:35:25.8357471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8363284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8369009Z 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-04-25T04:35:25.8375318Z 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-04-25T04:35:25.8381369Z 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-04-25T04:35:25.8387597Z 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-04-25T04:35:25.8394242Z 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-04-25T04:35:25.8400130Z 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-04-25T04:35:25.8405830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8411607Z 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-04-25T04:35:25.8417335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8423860Z 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-04-25T04:35:25.8429532Z 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-04-25T04:35:25.8435468Z 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-04-25T04:35:25.8441549Z 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-04-25T04:35:25.8447380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8452960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8458474Z 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-04-25T04:35:25.8464439Z 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-04-25T04:35:25.8470413Z 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-04-25T04:35:25.8476548Z 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-04-25T04:35:25.8482271Z 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-04-25T04:35:25.8488054Z 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-04-25T04:35:25.8493824Z 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-04-25T04:35:25.8499539Z 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-04-25T04:35:25.8505838Z 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-04-25T04:35:25.8512080Z 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-04-25T04:35:25.8517856Z 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-04-25T04:35:25.8523538Z 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-04-25T04:35:25.8529695Z 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-04-25T04:35:25.8535958Z 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-04-25T04:35:25.8541767Z 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-04-25T04:35:25.8547705Z 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-04-25T04:35:25.8553482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8559447Z 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-04-25T04:35:25.8565493Z 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-04-25T04:35:25.8571215Z 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-04-25T04:35:25.8577060Z 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-04-25T04:35:25.8583156Z 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-04-25T04:35:25.8588909Z 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-04-25T04:35:25.8594858Z 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-04-25T04:35:25.8600487Z 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-04-25T04:35:25.8606267Z 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-04-25T04:35:25.8611968Z 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-04-25T04:35:25.8617605Z 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-04-25T04:35:25.8623506Z 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-04-25T04:35:25.8629469Z 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-04-25T04:35:25.8635868Z 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-04-25T04:35:25.8641589Z 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-04-25T04:35:25.8647356Z 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-04-25T04:35:25.8653708Z 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-04-25T04:35:25.8659669Z 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-04-25T04:35:25.8665578Z 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-04-25T04:35:25.8671226Z 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-04-25T04:35:25.8677144Z 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-04-25T04:35:25.8682836Z 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-04-25T04:35:25.8688529Z 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-04-25T04:35:25.8694648Z 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-04-25T04:35:25.8700467Z 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-04-25T04:35:25.8706557Z 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-04-25T04:35:25.8712479Z 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-04-25T04:35:25.8718799Z 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-04-25T04:35:25.8724529Z 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-04-25T04:35:25.8730472Z 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-04-25T04:35:25.8736552Z 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-04-25T04:35:25.8742684Z 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-04-25T04:35:25.8748608Z 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-04-25T04:35:25.8754550Z 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-04-25T04:35:25.8760383Z 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-04-25T04:35:25.8782479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8788541Z 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-04-25T04:35:25.8794700Z 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-04-25T04:35:25.8800595Z 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-04-25T04:35:25.8806403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8811820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8818328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8824324Z 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-04-25T04:35:25.8830161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8835981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8842118Z 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-04-25T04:35:25.8848251Z 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-04-25T04:35:25.8853515Z 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-04-25T04:35:25.8859113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8864407Z 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-04-25T04:35:25.8870424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8876568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8882485Z 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-04-25T04:35:25.8889002Z 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-04-25T04:35:25.8895152Z 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-04-25T04:35:25.8901366Z 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-04-25T04:35:25.8907480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8913755Z 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-04-25T04:35:25.8920206Z 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-04-25T04:35:25.8925998Z 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-04-25T04:35:25.8931750Z 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-04-25T04:35:25.8937996Z 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-04-25T04:35:25.8943815Z 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-04-25T04:35:25.8949564Z 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-04-25T04:35:25.8955480Z 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-04-25T04:35:25.8961032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8967089Z 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-04-25T04:35:25.8972494Z 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-04-25T04:35:25.8978027Z 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-04-25T04:35:25.8983754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.8989789Z 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-04-25T04:35:25.8995618Z 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-04-25T04:35:25.9001111Z 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-04-25T04:35:25.9011294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9017172Z 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-04-25T04:35:25.9022575Z 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-04-25T04:35:25.9028059Z 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-04-25T04:35:25.9033818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9039862Z 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-04-25T04:35:25.9045522Z 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-04-25T04:35:25.9051294Z 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-04-25T04:35:25.9056782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9062506Z 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-04-25T04:35:25.9068047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9073673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9079608Z 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-04-25T04:35:25.9085461Z 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-04-25T04:35:25.9090971Z 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-04-25T04:35:25.9096333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9101640Z 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-04-25T04:35:25.9107155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9113055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9118423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9123741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9129401Z 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-04-25T04:35:25.9135045Z 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-04-25T04:35:25.9140848Z 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-04-25T04:35:25.9146415Z 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-04-25T04:35:25.9152610Z 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-04-25T04:35:25.9158611Z 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-04-25T04:35:25.9164189Z 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-04-25T04:35:25.9170305Z 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-04-25T04:35:25.9176056Z 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-04-25T04:35:25.9181724Z 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-04-25T04:35:25.9187425Z 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-04-25T04:35:25.9193083Z 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-04-25T04:35:25.9198847Z 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-04-25T04:35:25.9204521Z 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-04-25T04:35:25.9210837Z 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-04-25T04:35:25.9216496Z 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-04-25T04:35:25.9222238Z 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-04-25T04:35:25.9227790Z 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-04-25T04:35:25.9233594Z 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-04-25T04:35:25.9239710Z 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-04-25T04:35:25.9245674Z 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-04-25T04:35:25.9251588Z 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-04-25T04:35:25.9257243Z 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-04-25T04:35:25.9263304Z 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-04-25T04:35:25.9269465Z 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-04-25T04:35:25.9280204Z 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-04-25T04:35:25.9286190Z 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-04-25T04:35:25.9291983Z 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-04-25T04:35:25.9297680Z 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-04-25T04:35:25.9303414Z 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-04-25T04:35:25.9309112Z 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-04-25T04:35:25.9314793Z 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-04-25T04:35:25.9320802Z 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-04-25T04:35:25.9326589Z 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-04-25T04:35:25.9332698Z 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-04-25T04:35:25.9338579Z 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-04-25T04:35:25.9344295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9349756Z 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-04-25T04:35:25.9355509Z 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-04-25T04:35:25.9365949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9371678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9377901Z 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-04-25T04:35:25.9384277Z 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-04-25T04:35:25.9390577Z 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-04-25T04:35:25.9396766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9403282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9409419Z 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-04-25T04:35:25.9415395Z 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-04-25T04:35:25.9421389Z 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-04-25T04:35:25.9427259Z 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-04-25T04:35:25.9433427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9439006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9444754Z 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-04-25T04:35:25.9450242Z 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-04-25T04:35:25.9455817Z 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-04-25T04:35:25.9461616Z 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-04-25T04:35:25.9468054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9474009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9480080Z 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-04-25T04:35:25.9486363Z 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-04-25T04:35:25.9492312Z 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-04-25T04:35:25.9497933Z 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-04-25T04:35:25.9503557Z 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-04-25T04:35:25.9509413Z 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-04-25T04:35:25.9515297Z 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-04-25T04:35:25.9520740Z 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-04-25T04:35:25.9526053Z 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-04-25T04:35:25.9531792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9537522Z 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-04-25T04:35:25.9543134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9549368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9554832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9560547Z 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-04-25T04:35:25.9565921Z 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-04-25T04:35:25.9571527Z 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-04-25T04:35:25.9577388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9583181Z 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-04-25T04:35:25.9588638Z 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-04-25T04:35:25.9594556Z 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-04-25T04:35:25.9600553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9605803Z 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-04-25T04:35:25.9611160Z 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-04-25T04:35:25.9616398Z 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-04-25T04:35:25.9622231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9627783Z 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-04-25T04:35:25.9633389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9639269Z 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-04-25T04:35:25.9651708Z 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-04-25T04:35:25.9657285Z 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-04-25T04:35:25.9662958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9668353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9673721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9679272Z 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-04-25T04:35:25.9684925Z 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-04-25T04:35:25.9690076Z 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-04-25T04:35:25.9695855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9701080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9706569Z 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-04-25T04:35:25.9712000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9717596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9723485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9728728Z 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-04-25T04:35:25.9765478Z 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-04-25T04:35:25.9771328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9776944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9782773Z 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-04-25T04:35:25.9788246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9793857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9799195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9805181Z 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-04-25T04:35:25.9811215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9816992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9822509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9828173Z 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-04-25T04:35:25.9833783Z 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-04-25T04:35:25.9839330Z 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-04-25T04:35:25.9845049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9850686Z 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-04-25T04:35:25.9856500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9861835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9867253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9873330Z 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-04-25T04:35:25.9879210Z 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-04-25T04:35:25.9885639Z 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-04-25T04:35:25.9891471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9898091Z 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-04-25T04:35:25.9903778Z 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-04-25T04:35:25.9909939Z 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-04-25T04:35:25.9915765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9921234Z 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-04-25T04:35:25.9927689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9933720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9939342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9944956Z 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-04-25T04:35:25.9950358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9956489Z 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-04-25T04:35:25.9962210Z 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-04-25T04:35:25.9967695Z 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-04-25T04:35:25.9973703Z 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-04-25T04:35:25.9979578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9985085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9990738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:25.9996279Z 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-04-25T04:35:26.0001512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0006808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0012276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0017835Z 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-04-25T04:35:26.0023797Z 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-04-25T04:35:26.0029254Z 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-04-25T04:35:26.0034911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0040769Z 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-04-25T04:35:26.0046427Z 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-04-25T04:35:26.0051998Z 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-04-25T04:35:26.0057721Z 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-04-25T04:35:26.0063329Z 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-04-25T04:35:26.0069100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0075266Z 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-04-25T04:35:26.0080797Z 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-04-25T04:35:26.0086400Z 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-04-25T04:35:26.0092414Z 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-04-25T04:35:26.0097968Z 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-04-25T04:35:26.0103484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0109019Z 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-04-25T04:35:26.0114592Z 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-04-25T04:35:26.0120114Z 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-04-25T04:35:26.0125716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0131499Z 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-04-25T04:35:26.0138053Z 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-04-25T04:35:26.0143762Z 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-04-25T04:35:26.0149401Z 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-04-25T04:35:26.0155018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0160503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0166050Z 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-04-25T04:35:26.0171475Z 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-04-25T04:35:26.0177243Z 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-04-25T04:35:26.0182796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0188286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0194187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0200185Z 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-04-25T04:35:26.0210613Z 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-04-25T04:35:26.0216182Z 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-04-25T04:35:26.0222137Z 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-04-25T04:35:26.0227837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0234676Z 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-04-25T04:35:26.0241328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0247035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0252894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0258276Z 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-04-25T04:35:26.0263862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0269597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0275440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0281190Z 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-04-25T04:35:26.0286673Z 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-04-25T04:35:26.0292402Z 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-04-25T04:35:26.0298535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0303972Z 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-04-25T04:35:26.0309936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0315853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0321661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0327054Z 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-04-25T04:35:26.0332746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0338115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0343848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0349636Z 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-04-25T04:35:26.0355394Z 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-04-25T04:35:26.0361402Z 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-04-25T04:35:26.0367060Z 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-04-25T04:35:26.0372823Z 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-04-25T04:35:26.0378565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0385174Z 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-04-25T04:35:26.0391285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0397335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0403066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0408871Z 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-04-25T04:35:26.0414620Z 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-04-25T04:35:26.0420847Z 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-04-25T04:35:26.0426851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0432618Z 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-04-25T04:35:26.0438522Z 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-04-25T04:35:26.0444386Z 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-04-25T04:35:26.0449801Z 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-04-25T04:35:26.0460466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0466008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0471459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0477124Z 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-04-25T04:35:26.0482399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0492334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0497419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0502581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0507796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0513454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0518998Z 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-04-25T04:35:26.0524347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0529881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0536332Z 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-04-25T04:35:26.0541954Z 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-04-25T04:35:26.0547760Z 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-04-25T04:35:26.0553835Z 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-04-25T04:35:26.0559714Z 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-04-25T04:35:26.0565686Z 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-04-25T04:35:26.0571252Z 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-04-25T04:35:26.0576983Z 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-04-25T04:35:26.0582774Z 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-04-25T04:35:26.0588657Z 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-04-25T04:35:26.0594353Z 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-04-25T04:35:26.0600240Z 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-04-25T04:35:26.0605903Z 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-04-25T04:35:26.0612018Z 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-04-25T04:35:26.0618032Z 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-04-25T04:35:26.0628204Z 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-04-25T04:35:26.0634308Z 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-04-25T04:35:26.0640487Z 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-04-25T04:35:26.0646897Z 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-04-25T04:35:26.0652729Z 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-04-25T04:35:26.0658561Z 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-04-25T04:35:26.0664962Z 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-04-25T04:35:26.0670850Z 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-04-25T04:35:26.0676733Z 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-04-25T04:35:26.0682969Z 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-04-25T04:35:26.0689679Z 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-04-25T04:35:26.0695627Z 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-04-25T04:35:26.0701610Z 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-04-25T04:35:26.0707288Z 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-04-25T04:35:26.0713549Z 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-04-25T04:35:26.0719726Z 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-04-25T04:35:26.0726097Z 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-04-25T04:35:26.0731908Z 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-04-25T04:35:26.0738346Z 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-04-25T04:35:26.0744474Z 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-04-25T04:35:26.0750067Z 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-04-25T04:35:26.0755938Z 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-04-25T04:35:26.0761658Z 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-04-25T04:35:26.0767363Z 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-04-25T04:35:26.0773662Z 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-04-25T04:35:26.0787695Z 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-04-25T04:35:26.0793629Z 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-04-25T04:35:26.0799788Z 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-04-25T04:35:26.0806029Z 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-04-25T04:35:26.0811859Z 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-04-25T04:35:26.0818160Z 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-04-25T04:35:26.0824170Z 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-04-25T04:35:26.0830075Z 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-04-25T04:35:26.0835946Z 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-04-25T04:35:26.0841836Z 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-04-25T04:35:26.0847649Z 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-04-25T04:35:26.0853534Z 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-04-25T04:35:26.0858984Z 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-04-25T04:35:26.0864677Z 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-04-25T04:35:26.0870675Z 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-04-25T04:35:26.0876367Z 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-04-25T04:35:26.0882136Z 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-04-25T04:35:26.0898072Z 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-04-25T04:35:26.0904334Z 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-04-25T04:35:26.0910070Z 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-04-25T04:35:26.0916306Z 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-04-25T04:35:26.0922377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0927515Z 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-04-25T04:35:26.0932790Z 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-04-25T04:35:26.0938831Z 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-04-25T04:35:26.0944625Z 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-04-25T04:35:26.0949941Z 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-04-25T04:35:26.0955527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0961465Z 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-04-25T04:35:26.0966941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0972311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0978033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0983826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.0990051Z 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-04-25T04:35:26.0995602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1001618Z 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-04-25T04:35:26.1007282Z 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-04-25T04:35:26.1012884Z 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-04-25T04:35:26.1018616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1024200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1030443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1036538Z 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-04-25T04:35:26.1042278Z 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-04-25T04:35:26.1047636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1053861Z 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-04-25T04:35:26.1059706Z 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-04-25T04:35:26.1065385Z 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-04-25T04:35:26.1070966Z 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-04-25T04:35:26.1076652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1082465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1088064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1093587Z 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-04-25T04:35:26.1103581Z 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-04-25T04:35:26.1109270Z 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-04-25T04:35:26.1117700Z 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-04-25T04:35:26.1123098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1128710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1134659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1140582Z 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-04-25T04:35:26.1146087Z 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-04-25T04:35:26.1152019Z 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-04-25T04:35:26.1158548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1164372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1170192Z 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-04-25T04:35:26.1175853Z 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-04-25T04:35:26.1181311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1191007Z 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-04-25T04:35:26.1197152Z 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-04-25T04:35:26.1203673Z 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-04-25T04:35:26.1209373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1214915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1220559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1225930Z 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-04-25T04:35:26.1231766Z 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-04-25T04:35:26.1237958Z 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-04-25T04:35:26.1243771Z 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-04-25T04:35:26.1249413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1255812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1261696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1267497Z 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-04-25T04:35:26.1273671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1279656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1285024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1290383Z 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-04-25T04:35:26.1576926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1582301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1588201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1594063Z 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-04-25T04:35:26.1599654Z 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-04-25T04:35:26.1605388Z 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-04-25T04:35:26.1611668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1617426Z 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-04-25T04:35:26.1623188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1628947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1640165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1645679Z 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-04-25T04:35:26.1651456Z 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-04-25T04:35:26.1657317Z 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-04-25T04:35:26.1663712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1669541Z 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-04-25T04:35:26.1675668Z 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-04-25T04:35:26.1681097Z 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-04-25T04:35:26.1686870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1692465Z 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-04-25T04:35:26.1699053Z 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-04-25T04:35:26.1704726Z 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-04-25T04:35:26.1711018Z 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-04-25T04:35:26.1717199Z 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-04-25T04:35:26.1723173Z 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-04-25T04:35:26.1729012Z 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-04-25T04:35:26.1735116Z 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-04-25T04:35:26.1741151Z 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-04-25T04:35:26.1747087Z 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-04-25T04:35:26.1752943Z 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-04-25T04:35:26.1763743Z 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-04-25T04:35:26.1769678Z 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-04-25T04:35:26.1775441Z 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-04-25T04:35:26.1781234Z 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-04-25T04:35:26.1787397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1793605Z 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-04-25T04:35:26.1799673Z 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-04-25T04:35:26.1805611Z 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-04-25T04:35:26.1811717Z 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-04-25T04:35:26.1817523Z 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-04-25T04:35:26.1823501Z 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-04-25T04:35:26.1829574Z 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-04-25T04:35:26.1835477Z 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-04-25T04:35:26.1841284Z 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-04-25T04:35:26.1847156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1853010Z 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-04-25T04:35:26.1859323Z 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-04-25T04:35:26.1865180Z 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-04-25T04:35:26.1871044Z 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-04-25T04:35:26.1877466Z 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-04-25T04:35:26.1883335Z 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-04-25T04:35:26.1889897Z 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-04-25T04:35:26.1895646Z 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-04-25T04:35:26.1902442Z 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-04-25T04:35:26.1908133Z 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-04-25T04:35:26.1913877Z 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-04-25T04:35:26.1919694Z 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-04-25T04:35:26.1925390Z 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-04-25T04:35:26.1931004Z 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-04-25T04:35:26.1936920Z 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-04-25T04:35:26.1942583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1947819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1953336Z 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-04-25T04:35:26.1958979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1964623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.1999410Z 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-04-25T04:35:26.2005209Z 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-04-25T04:35:26.2010898Z 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-04-25T04:35:26.2016547Z 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-04-25T04:35:26.2021965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2027372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2033122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2039115Z 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-04-25T04:35:26.2044878Z 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-04-25T04:35:26.2051188Z 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-04-25T04:35:26.2056863Z 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-04-25T04:35:26.2062647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2068308Z 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-04-25T04:35:26.2074193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2079955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2085809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2091278Z 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-04-25T04:35:26.2097059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2102671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2108274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2114167Z 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-04-25T04:35:26.2119702Z 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-04-25T04:35:26.2130413Z 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-04-25T04:35:26.2135800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2141729Z 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-04-25T04:35:26.2147414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2153562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2159098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2164582Z 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-04-25T04:35:26.2170233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2176201Z 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-04-25T04:35:26.2182414Z 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-04-25T04:35:26.2188155Z 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-04-25T04:35:26.2194376Z 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-04-25T04:35:26.2199977Z 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-04-25T04:35:26.2205683Z 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-04-25T04:35:26.2215963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2221631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2227666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2233676Z 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-04-25T04:35:26.2239984Z 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-04-25T04:35:26.2245782Z 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-04-25T04:35:26.2251810Z 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-04-25T04:35:26.2257952Z 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-04-25T04:35:26.2264242Z 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-04-25T04:35:26.2270287Z 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-04-25T04:35:26.2276112Z 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-04-25T04:35:26.2282398Z 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-04-25T04:35:26.2288263Z 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-04-25T04:35:26.2294211Z 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-04-25T04:35:26.2299948Z 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-04-25T04:35:26.2306118Z 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-04-25T04:35:26.2312162Z 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-04-25T04:35:26.2317996Z 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-04-25T04:35:26.2323852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2329921Z 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-04-25T04:35:26.2336428Z 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-04-25T04:35:26.2342398Z 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-04-25T04:35:26.2352820Z 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-04-25T04:35:26.2359339Z 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-04-25T04:35:26.2365610Z 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-04-25T04:35:26.2371362Z 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-04-25T04:35:26.2377480Z 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-04-25T04:35:26.2383610Z 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-04-25T04:35:26.2394810Z 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-04-25T04:35:26.2400315Z 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-04-25T04:35:26.2406655Z 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-04-25T04:35:26.2412685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2419036Z 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-04-25T04:35:26.2425596Z 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-04-25T04:35:26.2431524Z 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-04-25T04:35:26.2437550Z 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-04-25T04:35:26.2443927Z 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-04-25T04:35:26.2449821Z 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-04-25T04:35:26.2456030Z 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-04-25T04:35:26.2462172Z 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-04-25T04:35:26.2467937Z 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-04-25T04:35:26.2473837Z 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-04-25T04:35:26.2479641Z 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-04-25T04:35:26.2485617Z 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-04-25T04:35:26.2491529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2497316Z 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-04-25T04:35:26.2503048Z 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-04-25T04:35:26.2508527Z 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-04-25T04:35:26.2514178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2519531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2525337Z 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-04-25T04:35:26.2530989Z 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-04-25T04:35:26.2537158Z 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-04-25T04:35:26.2543092Z 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-04-25T04:35:26.2549451Z 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-04-25T04:35:26.2555375Z 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-04-25T04:35:26.2561151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2566705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2572606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2578482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2584265Z 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-04-25T04:35:26.2589741Z 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-04-25T04:35:26.2595432Z 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-04-25T04:35:26.2601109Z 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-04-25T04:35:26.2607156Z 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-04-25T04:35:26.2617974Z 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-04-25T04:35:26.2619062Z 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-04-25T04:35:26.2624818Z 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-04-25T04:35:26.2630688Z 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-04-25T04:35:26.2636377Z 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-04-25T04:35:26.2642109Z 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-04-25T04:35:26.2647846Z 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-04-25T04:35:26.2653770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2660346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2666057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2671930Z 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-04-25T04:35:26.2677563Z 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-04-25T04:35:26.2683093Z 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-04-25T04:35:26.2688819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2695204Z 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-04-25T04:35:26.2702075Z 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-04-25T04:35:26.2707862Z 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-04-25T04:35:26.2714171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2719953Z 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-04-25T04:35:26.2725528Z 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-04-25T04:35:26.2731108Z 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-04-25T04:35:26.2736671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2742893Z 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-04-25T04:35:26.2748311Z 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-04-25T04:35:26.2753670Z 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-04-25T04:35:26.2759363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2765349Z 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-04-25T04:35:26.2770979Z 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-04-25T04:35:26.2777418Z 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-04-25T04:35:26.2783453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2789539Z 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-04-25T04:35:26.2795576Z 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-04-25T04:35:26.2801051Z 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-04-25T04:35:26.2806712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2812678Z 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-04-25T04:35:26.2818623Z 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-04-25T04:35:26.2824491Z 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-04-25T04:35:26.2830247Z 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-04-25T04:35:26.2836269Z 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-04-25T04:35:26.2841859Z 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-04-25T04:35:26.2847578Z 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-04-25T04:35:26.2853240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2858806Z 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-04-25T04:35:26.2864622Z 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-04-25T04:35:26.2870480Z 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-04-25T04:35:26.2876947Z 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-04-25T04:35:26.2883326Z 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-04-25T04:35:26.2893357Z 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-04-25T04:35:26.2900379Z 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-04-25T04:35:26.2906719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2912972Z 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-04-25T04:35:26.2919274Z 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-04-25T04:35:26.2925393Z 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-04-25T04:35:26.2931673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2937913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2943449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2949143Z 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-04-25T04:35:26.2954990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2960769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2966392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2972511Z 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-04-25T04:35:26.2977955Z 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-04-25T04:35:26.2983865Z 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-04-25T04:35:26.2990249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.2996081Z 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-04-25T04:35:26.3002302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3008097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3014094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3019640Z 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-04-25T04:35:26.3025531Z 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-04-25T04:35:26.3031587Z 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-04-25T04:35:26.3037333Z 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-04-25T04:35:26.3042782Z 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-04-25T04:35:26.3048760Z 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-04-25T04:35:26.3054482Z 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-04-25T04:35:26.3059853Z 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-04-25T04:35:26.3065413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3084751Z 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-04-25T04:35:26.3090292Z 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-04-25T04:35:26.3095616Z 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-04-25T04:35:26.3101212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3106937Z 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-04-25T04:35:26.3112396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3118009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3123765Z 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-04-25T04:35:26.3129652Z 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-04-25T04:35:26.3135658Z 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-04-25T04:35:26.3141362Z 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-04-25T04:35:26.3147352Z 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-04-25T04:35:26.3157325Z 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-04-25T04:35:26.3192948Z 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-04-25T04:35:26.3198718Z 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-04-25T04:35:26.3204445Z 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-04-25T04:35:26.3210500Z 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-04-25T04:35:26.3216537Z 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-04-25T04:35:26.3222212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3227925Z 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-04-25T04:35:26.3233673Z 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-04-25T04:35:26.3239744Z 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-04-25T04:35:26.3245524Z 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-04-25T04:35:26.3251322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3257097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3263098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3268919Z 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-04-25T04:35:26.3274493Z 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-04-25T04:35:26.3280386Z 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-04-25T04:35:26.3286707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3292389Z 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-04-25T04:35:26.3298034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3304206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3309912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3315665Z 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-04-25T04:35:26.3322003Z 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-04-25T04:35:26.3327689Z 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-04-25T04:35:26.3333324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3339335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3344689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3350542Z 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-04-25T04:35:26.3356441Z 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-04-25T04:35:26.3362078Z 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-04-25T04:35:26.3367929Z 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-04-25T04:35:26.3373890Z 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-04-25T04:35:26.3379590Z 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-04-25T04:35:26.3385375Z 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-04-25T04:35:26.3391710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3397291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3403643Z 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-04-25T04:35:26.3409636Z 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-04-25T04:35:26.3417732Z 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-04-25T04:35:26.3442782Z 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-04-25T04:35:26.3448770Z 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-04-25T04:35:26.3454805Z 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-04-25T04:35:26.3460365Z 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-04-25T04:35:26.3467283Z 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-04-25T04:35:26.3472566Z 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-04-25T04:35:26.3478406Z 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-04-25T04:35:26.3483926Z 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-04-25T04:35:26.3489684Z 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-04-25T04:35:26.3495367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3501188Z 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-04-25T04:35:26.3506832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3512751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3518641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3524752Z 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-04-25T04:35:26.3531022Z 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-04-25T04:35:26.3543555Z 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-04-25T04:35:26.3549294Z 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-04-25T04:35:26.3555108Z 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-04-25T04:35:26.3560920Z 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-04-25T04:35:26.3566506Z 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-04-25T04:35:26.3572189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3577972Z 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-04-25T04:35:26.3583568Z 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-04-25T04:35:26.3589142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3595369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3600864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3606612Z 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-04-25T04:35:26.3612150Z 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-04-25T04:35:26.3618000Z 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-04-25T04:35:26.3623554Z 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-04-25T04:35:26.3629183Z 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-04-25T04:35:26.3634848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3640322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3646410Z 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-04-25T04:35:26.3652024Z 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-04-25T04:35:26.3657583Z 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-04-25T04:35:26.3663691Z 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-04-25T04:35:26.3670448Z 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-04-25T04:35:26.3676350Z 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-04-25T04:35:26.3681983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3688157Z 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-04-25T04:35:26.3693771Z 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-04-25T04:35:26.3699260Z 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-04-25T04:35:26.3705052Z 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-04-25T04:35:26.3710902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3716714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3722458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3729303Z 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-04-25T04:35:26.3734820Z 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-04-25T04:35:26.3741119Z 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-04-25T04:35:26.3746989Z 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-04-25T04:35:26.3752833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3758664Z 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-04-25T04:35:26.3764313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3769676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3775401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3781133Z 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-04-25T04:35:26.3786858Z 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-04-25T04:35:26.3792474Z 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-04-25T04:35:26.3798155Z 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-04-25T04:35:26.3803789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3809172Z 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-04-25T04:35:26.3814965Z 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-04-25T04:35:26.3820336Z 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-04-25T04:35:26.3826483Z 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-04-25T04:35:26.3832110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3837738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3843127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3849166Z 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-04-25T04:35:26.3854782Z 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-04-25T04:35:26.3860621Z 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-04-25T04:35:26.3866674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3871965Z 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-04-25T04:35:26.3877833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3883442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3889103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3894674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3900849Z 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-04-25T04:35:26.3907794Z 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-04-25T04:35:26.3914029Z 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-04-25T04:35:26.3919991Z 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-04-25T04:35:26.3926779Z 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-04-25T04:35:26.3932545Z 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-04-25T04:35:26.3938385Z 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-04-25T04:35:26.3944528Z 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-04-25T04:35:26.3950429Z 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-04-25T04:35:26.3956153Z 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-04-25T04:35:26.3961712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3967725Z 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-04-25T04:35:26.3973409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3978914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3984388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3989841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.3996136Z 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-04-25T04:35:26.4001634Z 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-04-25T04:35:26.4007216Z 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-04-25T04:35:26.4012683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4018197Z 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-04-25T04:35:26.4023703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4034152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4040890Z 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-04-25T04:35:26.4046315Z 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-04-25T04:35:26.4052306Z 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-04-25T04:35:26.4057685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4062937Z 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-04-25T04:35:26.4068766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4074378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4080076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4085644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4091577Z 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-04-25T04:35:26.4097163Z 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-04-25T04:35:26.4102782Z 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-04-25T04:35:26.4108388Z 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-04-25T04:35:26.4114353Z 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-04-25T04:35:26.4120369Z 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-04-25T04:35:26.4126016Z 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-04-25T04:35:26.4132088Z 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-04-25T04:35:26.4138049Z 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-04-25T04:35:26.4143504Z 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-04-25T04:35:26.4148883Z 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-04-25T04:35:26.4154518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4160002Z 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-04-25T04:35:26.4165593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4171082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4176571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4181892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4187500Z 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-04-25T04:35:26.4193409Z 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-04-25T04:35:26.4198965Z 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-04-25T04:35:26.4204642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4210237Z 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-04-25T04:35:26.4215701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4222083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4228426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4234437Z 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-04-25T04:35:26.4239779Z 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-04-25T04:35:26.4245321Z 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-04-25T04:35:26.4251166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4256760Z 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-04-25T04:35:26.4262498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4267940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4273608Z 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-04-25T04:35:26.4279047Z 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-04-25T04:35:26.4284607Z 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-04-25T04:35:26.4290053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4295317Z 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-04-25T04:35:26.4300817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4306743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4311965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4317651Z 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-04-25T04:35:26.4323125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4329400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4334792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4340225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4346337Z 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-04-25T04:35:26.4373867Z 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-04-25T04:35:26.4379572Z 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-04-25T04:35:26.4385525Z 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-04-25T04:35:26.4391290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4397613Z 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-04-25T04:35:26.4403719Z 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-04-25T04:35:26.4410051Z 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-04-25T04:35:26.4416366Z 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-04-25T04:35:26.4422949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4429440Z 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-04-25T04:35:26.4436311Z 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-04-25T04:35:26.4442277Z 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-04-25T04:35:26.4448059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4453863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4459556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4465782Z 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-04-25T04:35:26.4471650Z 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-04-25T04:35:26.4477394Z 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-04-25T04:35:26.4483008Z 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-04-25T04:35:26.4488863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4494546Z 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-04-25T04:35:26.4499996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4505533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4511118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4517211Z 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-04-25T04:35:26.4522776Z 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-04-25T04:35:26.4528710Z 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-04-25T04:35:26.4534380Z 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-04-25T04:35:26.4540095Z 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-04-25T04:35:26.4545732Z 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-04-25T04:35:26.4551378Z 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-04-25T04:35:26.4557237Z 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-04-25T04:35:26.4563569Z 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-04-25T04:35:26.4569679Z 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-04-25T04:35:26.4575466Z 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-04-25T04:35:26.4581681Z 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-04-25T04:35:26.4587373Z 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-04-25T04:35:26.4593012Z 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-04-25T04:35:26.4599379Z 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-04-25T04:35:26.4605331Z 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-04-25T04:35:26.4611455Z 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-04-25T04:35:26.4617126Z 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-04-25T04:35:26.4622789Z 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-04-25T04:35:26.4628492Z 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-04-25T04:35:26.4635055Z 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-04-25T04:35:26.4641260Z 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-04-25T04:35:26.4647458Z 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-04-25T04:35:26.4653190Z 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-04-25T04:35:26.4658961Z 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-04-25T04:35:26.4664817Z 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-04-25T04:35:26.4670440Z 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-04-25T04:35:26.4676216Z 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-04-25T04:35:26.4682639Z 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-04-25T04:35:26.4688548Z 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-04-25T04:35:26.4694371Z 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-04-25T04:35:26.4700138Z 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-04-25T04:35:26.4706189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4711634Z 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-04-25T04:35:26.4717462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4722843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4728330Z 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-04-25T04:35:26.4763491Z 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-04-25T04:35:26.4770076Z 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-04-25T04:35:26.4775894Z 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-04-25T04:35:26.4782246Z 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-04-25T04:35:26.4809128Z 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-04-25T04:35:26.4816034Z 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-04-25T04:35:26.4823311Z 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-04-25T04:35:26.4829734Z 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-04-25T04:35:26.4836245Z 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-04-25T04:35:26.4841792Z 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-04-25T04:35:26.4847973Z 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-04-25T04:35:26.4853601Z 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-04-25T04:35:26.4859275Z 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-04-25T04:35:26.4865051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4870582Z 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-04-25T04:35:26.4876216Z 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-04-25T04:35:26.4881738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4887829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4893602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4899039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4905399Z 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-04-25T04:35:26.4911047Z 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-04-25T04:35:26.4917114Z 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-04-25T04:35:26.4922880Z 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-04-25T04:35:26.4928796Z 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-04-25T04:35:26.4934640Z 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-04-25T04:35:26.4940276Z 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-04-25T04:35:26.4946237Z 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-04-25T04:35:26.4952106Z 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-04-25T04:35:26.4957952Z 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-04-25T04:35:26.4963482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4969266Z 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-04-25T04:35:26.4974904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4980521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4986087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4991617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.4997956Z 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-04-25T04:35:26.5003607Z 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-04-25T04:35:26.5009519Z 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-04-25T04:35:26.5015212Z 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-04-25T04:35:26.5021091Z 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-04-25T04:35:26.5026860Z 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-04-25T04:35:26.5032587Z 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-04-25T04:35:26.5038527Z 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-04-25T04:35:26.5044280Z 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-04-25T04:35:26.5050306Z 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-04-25T04:35:26.5056142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5062335Z 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-04-25T04:35:26.5068203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5074056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5079856Z 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-04-25T04:35:26.5085806Z 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-04-25T04:35:26.5091869Z 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-04-25T04:35:26.5097756Z 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-04-25T04:35:26.5104057Z 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-04-25T04:35:26.5114828Z 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-04-25T04:35:26.5122382Z 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-04-25T04:35:26.5131094Z 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-04-25T04:35:26.5138438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5146136Z 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-04-25T04:35:26.5154437Z 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-04-25T04:35:26.5161838Z 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-04-25T04:35:26.5168924Z 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-04-25T04:35:26.5177181Z 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-04-25T04:35:26.5184953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5192059Z 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-04-25T04:35:26.5199673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5205226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5210866Z 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-04-25T04:35:26.5217342Z 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-04-25T04:35:26.5223087Z 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-04-25T04:35:26.5228993Z 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-04-25T04:35:26.5235686Z 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-04-25T04:35:26.5241761Z 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-04-25T04:35:26.5247614Z 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-04-25T04:35:26.5253404Z 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-04-25T04:35:26.5259431Z 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-04-25T04:35:26.5265543Z 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-04-25T04:35:26.5271439Z 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-04-25T04:35:26.5277504Z 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-04-25T04:35:26.5283819Z 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-04-25T04:35:26.5290209Z 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-04-25T04:35:26.5296066Z 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-04-25T04:35:26.5301789Z 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-04-25T04:35:26.5308105Z 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-04-25T04:35:26.5313956Z 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-04-25T04:35:26.5320074Z 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-04-25T04:35:26.5325846Z 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-04-25T04:35:26.5331773Z 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-04-25T04:35:26.5337588Z 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-04-25T04:35:26.5344017Z 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-04-25T04:35:26.5349825Z 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-04-25T04:35:26.5356593Z 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-04-25T04:35:26.5362235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5367987Z 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-04-25T04:35:26.5374241Z 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-04-25T04:35:26.5380004Z 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-04-25T04:35:26.5385890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5391858Z 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-04-25T04:35:26.5397528Z 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-04-25T04:35:26.5403653Z 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-04-25T04:35:26.5409381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.5415239Z 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-04-25T04:35:26.5421427Z 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-04-25T04:35:26.5427631Z 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-04-25T04:35:26.5433416Z 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-04-25T04:35:26.5439430Z 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-04-25T04:35:26.5445274Z 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-04-25T04:35:26.5450984Z 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-04-25T04:35:26.5456788Z 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-04-25T04:35:26.5462672Z 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-04-25T04:35:26.5468379Z 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-04-25T04:35:26.5474290Z 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-04-25T04:35:26.5479893Z 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-04-25T04:35:26.5490079Z 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-04-25T04:35:26.5496096Z 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-04-25T04:35:26.5501686Z 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-04-25T04:35:26.5507506Z 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-04-25T04:35:26.5513081Z 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-04-25T04:35:26.5518889Z 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-04-25T04:35:26.5524457Z 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-04-25T04:35:26.5530068Z 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-04-25T04:35:26.5535651Z 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-04-25T04:35:26.5542184Z 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-04-25T04:35:26.5548936Z 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-04-25T04:35:26.5555123Z 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-04-25T04:35:26.6715410Z 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-04-25T04:35:26.6724469Z 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-04-25T04:35:26.6727731Z 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-04-25T04:35:26.6733848Z 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-04-25T04:35:26.6740155Z 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-04-25T04:35:26.6746602Z 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-04-25T04:35:26.6752417Z 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-04-25T04:35:26.6758575Z 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-04-25T04:35:26.6764221Z 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-04-25T04:35:26.6770750Z 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-04-25T04:35:26.6776577Z 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-04-25T04:35:26.6782435Z 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-04-25T04:35:26.6788361Z 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-04-25T04:35:26.6794661Z 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-04-25T04:35:26.6800520Z 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-04-25T04:35:26.6806539Z 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-04-25T04:35:26.6812359Z 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-04-25T04:35:26.6818289Z 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-04-25T04:35:26.6824029Z 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-04-25T04:35:26.6829840Z 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-04-25T04:35:26.6835787Z 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-04-25T04:35:26.6842116Z 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-04-25T04:35:26.6848209Z 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-04-25T04:35:26.6854194Z 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-04-25T04:35:26.6860992Z 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-04-25T04:35:26.6866321Z 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-04-25T04:35:26.6872249Z 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-04-25T04:35:26.6878109Z 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-04-25T04:35:26.6884197Z 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-04-25T04:35:26.6890550Z 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-04-25T04:35:26.6896732Z 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-04-25T04:35:26.6902645Z 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-04-25T04:35:26.6908699Z 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-04-25T04:35:26.6914996Z 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-04-25T04:35:26.6921245Z 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-04-25T04:35:26.6927630Z 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-04-25T04:35:26.6933700Z 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-04-25T04:35:26.6939778Z 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-04-25T04:35:26.6946685Z 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-04-25T04:35:26.6953267Z 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-04-25T04:35:26.6960094Z 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-04-25T04:35:26.6966157Z 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-04-25T04:35:26.6972409Z 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-04-25T04:35:26.6978336Z 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-04-25T04:35:26.6984179Z 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-04-25T04:35:26.6990669Z 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-04-25T04:35:26.6996702Z 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-04-25T04:35:26.7002925Z 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-04-25T04:35:26.7009015Z 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-04-25T04:35:26.7014755Z 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-04-25T04:35:26.7021134Z 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-04-25T04:35:26.7026911Z 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-04-25T04:35:26.7032729Z 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-04-25T04:35:26.7038862Z 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-04-25T04:35:26.7044742Z 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-04-25T04:35:26.7050606Z 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-04-25T04:35:26.7056859Z 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-04-25T04:35:26.7062913Z 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-04-25T04:35:26.7069622Z 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-04-25T04:35:26.7076273Z 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-04-25T04:35:26.7081863Z 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-04-25T04:35:26.7087626Z 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-04-25T04:35:26.7093406Z 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-04-25T04:35:26.7099358Z 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-04-25T04:35:26.7105071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7111124Z 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-04-25T04:35:26.7117056Z 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-04-25T04:35:26.7122695Z 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-04-25T04:35:26.7128366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7134520Z 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-04-25T04:35:26.7140478Z 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-04-25T04:35:26.7146229Z 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-04-25T04:35:26.7152357Z 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-04-25T04:35:26.7157775Z 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-04-25T04:35:26.7164031Z 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-04-25T04:35:26.7169737Z 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-04-25T04:35:26.7175856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7181794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7187819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7194039Z 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-04-25T04:35:26.7199952Z 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-04-25T04:35:26.7205774Z 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-04-25T04:35:26.7211519Z 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-04-25T04:35:26.7217448Z 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-04-25T04:35:26.7223417Z 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-04-25T04:35:26.7234355Z 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-04-25T04:35:26.7240303Z 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-04-25T04:35:26.7246222Z 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-04-25T04:35:26.7251689Z 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-04-25T04:35:26.7258114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7264189Z 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-04-25T04:35:26.7269965Z 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-04-25T04:35:26.7275516Z 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-04-25T04:35:26.7282163Z 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-04-25T04:35:26.7287779Z 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-04-25T04:35:26.7293182Z 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-04-25T04:35:26.7298869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7304899Z 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-04-25T04:35:26.7310711Z 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-04-25T04:35:26.7316404Z 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-04-25T04:35:26.7322023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7327993Z 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-04-25T04:35:26.7333860Z 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-04-25T04:35:26.7339307Z 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-04-25T04:35:26.7345118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7351013Z 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-04-25T04:35:26.7356781Z 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-04-25T04:35:26.7362291Z 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-04-25T04:35:26.7367940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7373659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7379865Z 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-04-25T04:35:26.7385862Z 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-04-25T04:35:26.7392062Z 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-04-25T04:35:26.7398645Z 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-04-25T04:35:26.7405610Z 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-04-25T04:35:26.7411512Z 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-04-25T04:35:26.7417510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7424064Z 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-04-25T04:35:26.7431944Z 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-04-25T04:35:26.7438372Z 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-04-25T04:35:26.7449579Z 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-04-25T04:35:26.7455932Z 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-04-25T04:35:26.7462447Z 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-04-25T04:35:26.7468496Z 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-04-25T04:35:26.7474851Z 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-04-25T04:35:26.7481127Z 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-04-25T04:35:26.7487281Z 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-04-25T04:35:26.7493153Z 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-04-25T04:35:26.7498935Z 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-04-25T04:35:26.7520231Z 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-04-25T04:35:26.7526680Z 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-04-25T04:35:26.7532734Z 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-04-25T04:35:26.7538623Z 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-04-25T04:35:26.7544522Z 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-04-25T04:35:26.7550543Z 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-04-25T04:35:26.7571774Z 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-04-25T04:35:26.7577596Z 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-04-25T04:35:26.7583556Z 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-04-25T04:35:26.7589473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7595191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7601501Z 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-04-25T04:35:26.7607498Z 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-04-25T04:35:26.7613315Z 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-04-25T04:35:26.7618959Z 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-04-25T04:35:26.7635867Z 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-04-25T04:35:26.7641602Z 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-04-25T04:35:26.7647263Z 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-04-25T04:35:26.7653691Z 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-04-25T04:35:26.7659781Z 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-04-25T04:35:26.7665147Z 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-04-25T04:35:26.7679216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7685424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7691704Z 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-04-25T04:35:26.7697615Z 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-04-25T04:35:26.7703572Z 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-04-25T04:35:26.7709326Z 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-04-25T04:35:26.7715217Z 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-04-25T04:35:26.7721086Z 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-04-25T04:35:26.7726842Z 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-04-25T04:35:26.7758843Z 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-04-25T04:35:26.7764732Z 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-04-25T04:35:26.7770858Z 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-04-25T04:35:26.7776793Z 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-04-25T04:35:26.7782843Z 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-04-25T04:35:26.7788731Z 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-04-25T04:35:26.7794813Z 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-04-25T04:35:26.7800797Z 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-04-25T04:35:26.7807229Z 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-04-25T04:35:26.7814067Z 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-04-25T04:35:26.7820145Z 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-04-25T04:35:26.7826158Z 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-04-25T04:35:26.7832099Z 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-04-25T04:35:26.7838947Z 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-04-25T04:35:26.7846110Z 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-04-25T04:35:26.7852075Z 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-04-25T04:35:26.7858425Z 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-04-25T04:35:26.7865658Z 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-04-25T04:35:26.7872108Z 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-04-25T04:35:26.7878213Z 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-04-25T04:35:26.7884348Z 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-04-25T04:35:26.7890250Z 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-04-25T04:35:26.7896329Z 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-04-25T04:35:26.7902561Z 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-04-25T04:35:26.7908643Z 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-04-25T04:35:26.7915112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7921456Z 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-04-25T04:35:26.7927512Z 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-04-25T04:35:26.7933910Z 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-04-25T04:35:26.7939974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7946393Z 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-04-25T04:35:26.7952289Z 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-04-25T04:35:26.7958505Z 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-04-25T04:35:26.7969557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.7971985Z 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-04-25T04:35:26.7978149Z 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-04-25T04:35:26.7983574Z 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-04-25T04:35:26.7989636Z 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-04-25T04:35:26.7995841Z 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-04-25T04:35:26.8001434Z 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-04-25T04:35:26.8007242Z 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-04-25T04:35:26.8013272Z 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-04-25T04:35:26.8019347Z 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-04-25T04:35:26.8025661Z 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-04-25T04:35:26.8030982Z 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-04-25T04:35:26.8037238Z 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-04-25T04:35:26.8043639Z 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-04-25T04:35:26.8049318Z 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-04-25T04:35:26.8055122Z 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-04-25T04:35:26.8061044Z 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-04-25T04:35:26.8067427Z 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-04-25T04:35:26.8073242Z 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-04-25T04:35:26.8079566Z 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-04-25T04:35:26.8085632Z 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-04-25T04:35:26.8091591Z 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-04-25T04:35:26.8097608Z 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-04-25T04:35:26.8103778Z 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-04-25T04:35:26.8109638Z 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-04-25T04:35:26.8115959Z 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-04-25T04:35:26.8121835Z 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-04-25T04:35:26.8128137Z 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-04-25T04:35:26.8134351Z 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-04-25T04:35:26.8140260Z 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-04-25T04:35:26.8146781Z 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-04-25T04:35:26.8152991Z 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-04-25T04:35:26.8158961Z 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-04-25T04:35:26.8165600Z 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-04-25T04:35:26.8171392Z 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-04-25T04:35:26.8178525Z 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-04-25T04:35:26.8184955Z 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-04-25T04:35:26.8191040Z 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-04-25T04:35:26.8197282Z 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-04-25T04:35:26.8203529Z 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-04-25T04:35:26.8209522Z 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-04-25T04:35:26.8216210Z 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-04-25T04:35:26.8222154Z 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-04-25T04:35:26.8228743Z 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-04-25T04:35:26.8235111Z 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-04-25T04:35:26.8241146Z 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-04-25T04:35:26.8247173Z 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-04-25T04:35:26.8253328Z 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-04-25T04:35:26.8259345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8270381Z 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-04-25T04:35:26.8277174Z 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-04-25T04:35:26.8283150Z 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-04-25T04:35:26.8288927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8294831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8301142Z 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-04-25T04:35:26.8307754Z 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-04-25T04:35:26.8313855Z 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-04-25T04:35:26.8320085Z 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-04-25T04:35:26.8326146Z 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-04-25T04:35:26.8331998Z 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-04-25T04:35:26.8338004Z 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-04-25T04:35:26.8344610Z 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-04-25T04:35:26.8350879Z 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-04-25T04:35:26.8356833Z 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-04-25T04:35:26.8362983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8369133Z 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-04-25T04:35:26.8374891Z 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-04-25T04:35:26.8380696Z 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-04-25T04:35:26.8386561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8392639Z 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-04-25T04:35:26.8398798Z 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-04-25T04:35:26.8404397Z 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-04-25T04:35:26.8410585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8416670Z 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-04-25T04:35:26.8422614Z 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-04-25T04:35:26.8428467Z 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-04-25T04:35:26.8434945Z 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-04-25T04:35:26.8441757Z 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-04-25T04:35:26.8447503Z 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-04-25T04:35:26.8453525Z 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-04-25T04:35:26.8459344Z 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-04-25T04:35:26.8466381Z 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-04-25T04:35:26.8472714Z 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-04-25T04:35:26.8478895Z 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-04-25T04:35:26.8484729Z 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-04-25T04:35:26.8501657Z 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-04-25T04:35:26.8507329Z 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-04-25T04:35:26.8513307Z 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-04-25T04:35:26.8519310Z 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-04-25T04:35:26.8525082Z 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-04-25T04:35:26.8530908Z 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-04-25T04:35:26.8536596Z 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-04-25T04:35:26.8542413Z 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-04-25T04:35:26.8548728Z 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-04-25T04:35:26.8554684Z 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-04-25T04:35:26.8560399Z 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-04-25T04:35:26.8566154Z 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-04-25T04:35:26.8572605Z 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-04-25T04:35:26.8579058Z 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-04-25T04:35:26.8584908Z 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-04-25T04:35:26.8590814Z 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-04-25T04:35:26.8597312Z 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-04-25T04:35:26.8604218Z 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-04-25T04:35:26.8610216Z 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-04-25T04:35:26.8616679Z 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-04-25T04:35:26.8622533Z 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-04-25T04:35:26.8628694Z 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-04-25T04:35:26.8643935Z 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-04-25T04:35:26.8649703Z 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-04-25T04:35:26.8656334Z 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-04-25T04:35:26.8662445Z 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-04-25T04:35:26.8669184Z 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-04-25T04:35:26.8675526Z 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-04-25T04:35:26.8681829Z 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-04-25T04:35:26.8689461Z 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-04-25T04:35:26.8695650Z 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-04-25T04:35:26.8701745Z 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-04-25T04:35:26.8712723Z 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-04-25T04:35:26.8718933Z 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-04-25T04:35:26.8725474Z 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-04-25T04:35:26.8732199Z 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-04-25T04:35:26.8738555Z 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-04-25T04:35:26.8745115Z 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-04-25T04:35:26.8751347Z 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-04-25T04:35:26.8757754Z 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-04-25T04:35:26.8763923Z 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-04-25T04:35:26.8770054Z 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-04-25T04:35:26.8776188Z 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-04-25T04:35:26.8782327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8807875Z 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-04-25T04:35:26.8814994Z 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-04-25T04:35:26.8821123Z 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-04-25T04:35:26.8827094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8834590Z 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-04-25T04:35:26.8840607Z 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-04-25T04:35:26.8846245Z 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-04-25T04:35:26.8852339Z 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-04-25T04:35:26.8860037Z 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-04-25T04:35:26.8866025Z 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-04-25T04:35:26.8872432Z 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-04-25T04:35:26.8878419Z 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-04-25T04:35:26.8884718Z 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-04-25T04:35:26.8890546Z 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-04-25T04:35:26.8896635Z 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-04-25T04:35:26.8902430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8908837Z 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-04-25T04:35:26.8914826Z 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-04-25T04:35:26.8921350Z 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-04-25T04:35:26.8928787Z 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-04-25T04:35:26.8935747Z 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-04-25T04:35:26.8942952Z 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-04-25T04:35:26.8961543Z 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-04-25T04:35:26.8971211Z 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-04-25T04:35:26.8977121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.8983623Z 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-04-25T04:35:26.8989470Z 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-04-25T04:35:26.8995290Z 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-04-25T04:35:26.9001612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9007937Z 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-04-25T04:35:26.9017953Z 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-04-25T04:35:26.9024118Z 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-04-25T04:35:26.9030196Z 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-04-25T04:35:26.9035873Z 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-04-25T04:35:26.9041802Z 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-04-25T04:35:26.9047435Z 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-04-25T04:35:26.9053139Z 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-04-25T04:35:26.9058693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9064325Z 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-04-25T04:35:26.9070600Z 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-04-25T04:35:26.9076040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9082110Z 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-04-25T04:35:26.9087748Z 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-04-25T04:35:26.9093368Z 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-04-25T04:35:26.9115022Z 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-04-25T04:35:26.9120964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9126558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9132333Z 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-04-25T04:35:26.9138297Z 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-04-25T04:35:26.9143901Z 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-04-25T04:35:26.9150070Z 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-04-25T04:35:26.9156211Z 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-04-25T04:35:26.9162157Z 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-04-25T04:35:26.9167930Z 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-04-25T04:35:26.9173681Z 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-04-25T04:35:26.9179846Z 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-04-25T04:35:26.9185520Z 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-04-25T04:35:26.9191132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9201997Z 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-04-25T04:35:26.9207484Z 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-04-25T04:35:26.9213833Z 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-04-25T04:35:26.9219476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9224866Z 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-04-25T04:35:26.9230327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9255191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9260447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9275604Z 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-04-25T04:35:26.9281048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9286609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9292362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9297890Z 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-04-25T04:35:26.9303438Z 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-04-25T04:35:26.9310199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9316490Z 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-04-25T04:35:26.9323678Z 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-04-25T04:35:26.9339556Z 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-04-25T04:35:26.9340666Z 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-04-25T04:35:26.9343569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9350444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9356394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9363379Z 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-04-25T04:35:26.9368981Z 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-04-25T04:35:26.9375380Z 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-04-25T04:35:26.9381197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9387328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9392812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9398823Z 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-04-25T04:35:26.9404119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9429967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9435579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9441751Z 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-04-25T04:35:26.9447205Z 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-04-25T04:35:26.9452564Z 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-04-25T04:35:26.9458604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9465208Z 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-04-25T04:35:26.9471098Z 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-04-25T04:35:26.9476667Z 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-04-25T04:35:26.9482138Z 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-04-25T04:35:26.9488126Z 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-04-25T04:35:26.9493885Z 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-04-25T04:35:26.9499654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9504957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9509989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9515650Z 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-04-25T04:35:26.9520908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9526099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9531016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9536351Z 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-04-25T04:35:26.9541596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9595205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9600336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9605604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9611470Z 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-04-25T04:35:26.9616879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9637992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9644059Z 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-04-25T04:35:26.9649699Z 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-04-25T04:35:26.9655152Z 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-04-25T04:35:26.9660815Z 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-04-25T04:35:26.9666234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9703130Z 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-04-25T04:35:26.9708573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9714174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9719447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9726331Z 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-04-25T04:35:26.9731925Z 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-04-25T04:35:26.9737778Z 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-04-25T04:35:26.9743380Z 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-04-25T04:35:26.9753867Z 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-04-25T04:35:26.9759360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9764875Z 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-04-25T04:35:26.9770435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9775910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9782416Z 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-04-25T04:35:26.9788352Z 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-04-25T04:35:26.9799091Z 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-04-25T04:35:26.9804451Z 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-04-25T04:35:26.9810229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9815715Z 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-04-25T04:35:26.9821075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9826540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9831786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9837606Z 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-04-25T04:35:26.9843139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9848824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9854660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9860303Z 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-04-25T04:35:26.9865800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9871357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9877756Z 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-04-25T04:35:26.9884640Z 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-04-25T04:35:26.9890070Z 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-04-25T04:35:26.9934313Z 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-04-25T04:35:26.9941031Z 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-04-25T04:35:26.9947914Z 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-04-25T04:35:26.9954584Z 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-04-25T04:35:26.9961226Z 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-04-25T04:35:26.9967231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9973346Z 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-04-25T04:35:26.9979166Z 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-04-25T04:35:26.9984893Z 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-04-25T04:35:26.9991231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:26.9996833Z 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-04-25T04:35:27.0003843Z 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-04-25T04:35:27.0009168Z 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-04-25T04:35:27.0015311Z 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-04-25T04:35:27.0021168Z 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-04-25T04:35:27.0026688Z 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-04-25T04:35:27.0032104Z 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-04-25T04:35:27.0037965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0043900Z 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-04-25T04:35:27.0049787Z 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-04-25T04:35:27.0055889Z 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-04-25T04:35:27.0061327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0066391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0071580Z 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-04-25T04:35:27.0077364Z 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-04-25T04:35:27.0082986Z 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-04-25T04:35:27.0088560Z 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-04-25T04:35:27.0094531Z 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-04-25T04:35:27.0100201Z 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-04-25T04:35:27.0105591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0111141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0116328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0125393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0130891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0137435Z 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-04-25T04:35:27.0147453Z 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-04-25T04:35:27.0153272Z 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-04-25T04:35:27.0158924Z 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-04-25T04:35:27.0165067Z 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-04-25T04:35:27.0175183Z 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-04-25T04:35:27.0181167Z 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-04-25T04:35:27.0187097Z 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-04-25T04:35:27.0192583Z 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-04-25T04:35:27.0198143Z 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-04-25T04:35:27.0204003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0209248Z 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-04-25T04:35:27.0238519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0244247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0249902Z 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-04-25T04:35:27.0255429Z 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-04-25T04:35:27.0261170Z 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-04-25T04:35:27.0266759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0271948Z 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-04-25T04:35:27.0277545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0283057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0288935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0294395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0300531Z 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-04-25T04:35:27.0306162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0311756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0317533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0323629Z 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-04-25T04:35:27.0329218Z 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-04-25T04:35:27.0335063Z 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-04-25T04:35:27.0340712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0346739Z 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-04-25T04:35:27.0352248Z 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-04-25T04:35:27.0358023Z 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-04-25T04:35:27.0364115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0387683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0393899Z 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-04-25T04:35:27.0399748Z 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-04-25T04:35:27.0405645Z 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-04-25T04:35:27.0411335Z 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-04-25T04:35:27.0417192Z 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-04-25T04:35:27.0423392Z 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-04-25T04:35:27.0429243Z 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-04-25T04:35:27.0435806Z 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-04-25T04:35:27.0446469Z 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-04-25T04:35:27.0449240Z 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-04-25T04:35:27.0456002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0462424Z 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-04-25T04:35:27.0468711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0474727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0480600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0486390Z 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-04-25T04:35:27.0492438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0497868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0503229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0508510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0514230Z 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-04-25T04:35:27.0524002Z 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-04-25T04:35:27.0529537Z 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-04-25T04:35:27.0535043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0540630Z 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-04-25T04:35:27.0545996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0551427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0557450Z 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-04-25T04:35:27.0562837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0567995Z 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-04-25T04:35:27.0574342Z 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-04-25T04:35:27.0580003Z 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-04-25T04:35:27.0585342Z 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-04-25T04:35:27.0591086Z 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-04-25T04:35:27.0596651Z 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-04-25T04:35:27.0602363Z 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-04-25T04:35:27.0607845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0614225Z 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-04-25T04:35:27.0620070Z 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-04-25T04:35:27.0625656Z 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-04-25T04:35:27.0631109Z 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-04-25T04:35:27.0637118Z 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-04-25T04:35:27.0642718Z 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-04-25T04:35:27.0648722Z 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-04-25T04:35:27.0654256Z 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-04-25T04:35:27.0659705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0665575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0671326Z 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-04-25T04:35:27.0677258Z 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-04-25T04:35:27.0683126Z 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-04-25T04:35:27.0688730Z 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-04-25T04:35:27.0694492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0699845Z 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-04-25T04:35:27.0705465Z 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-04-25T04:35:27.0711016Z 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-04-25T04:35:27.0716448Z 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-04-25T04:35:27.0722076Z 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-04-25T04:35:27.0727682Z 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-04-25T04:35:27.0733439Z 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-04-25T04:35:27.0738737Z 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-04-25T04:35:27.0744729Z 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-04-25T04:35:27.0750267Z 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-04-25T04:35:27.0756015Z 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-04-25T04:35:27.0761497Z 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-04-25T04:35:27.0781786Z 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-04-25T04:35:27.0787902Z 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-04-25T04:35:27.0793826Z 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-04-25T04:35:27.0799754Z 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-04-25T04:35:27.0805253Z 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-04-25T04:35:27.0810929Z 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-04-25T04:35:27.0816652Z 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-04-25T04:35:27.0822758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0828353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0834415Z 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-04-25T04:35:27.0840252Z 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-04-25T04:35:27.0846103Z 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-04-25T04:35:27.0852151Z 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-04-25T04:35:27.0858047Z 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-04-25T04:35:27.0863796Z 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-04-25T04:35:27.0869661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0875437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0881739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0887675Z 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-04-25T04:35:27.0893448Z 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-04-25T04:35:27.0899118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0905637Z 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-04-25T04:35:27.0911845Z 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-04-25T04:35:27.0917588Z 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-04-25T04:35:27.0923372Z 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-04-25T04:35:27.0929122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0934790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0940841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.0946812Z 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-04-25T04:35:27.0953107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2136734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2143112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2149224Z 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-04-25T04:35:27.2155121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2177616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2183366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2189591Z 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-04-25T04:35:27.2195404Z 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-04-25T04:35:27.2201149Z 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-04-25T04:35:27.2206765Z 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-04-25T04:35:27.2212691Z 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-04-25T04:35:27.2218822Z 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-04-25T04:35:27.2224686Z 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-04-25T04:35:27.2230505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2254540Z 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-04-25T04:35:27.2260381Z 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-04-25T04:35:27.2265849Z 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-04-25T04:35:27.2271910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2278128Z 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-04-25T04:35:27.2283413Z 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-04-25T04:35:27.2289407Z 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-04-25T04:35:27.2295193Z 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-04-25T04:35:27.2300899Z 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-04-25T04:35:27.2311047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2316753Z 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-04-25T04:35:27.2322400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2328108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2333608Z 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-04-25T04:35:27.2339832Z 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-04-25T04:35:27.2345574Z 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-04-25T04:35:27.2351490Z 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-04-25T04:35:27.2357229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2363080Z 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-04-25T04:35:27.2368643Z 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-04-25T04:35:27.2374545Z 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-04-25T04:35:27.2380145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2386141Z 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-04-25T04:35:27.2391774Z 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-04-25T04:35:27.2397610Z 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-04-25T04:35:27.2403343Z 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-04-25T04:35:27.2409358Z 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-04-25T04:35:27.2415466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2421026Z 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-04-25T04:35:27.2426737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2432419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2437852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2443730Z 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-04-25T04:35:27.2449445Z 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-04-25T04:35:27.2455610Z 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-04-25T04:35:27.2462023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2467829Z 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-04-25T04:35:27.2473556Z 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-04-25T04:35:27.2479277Z 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-04-25T04:35:27.2484808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2490418Z 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-04-25T04:35:27.2495923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2501580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2507440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2524856Z 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-04-25T04:35:27.2530217Z 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-04-25T04:35:27.2535547Z 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-04-25T04:35:27.2541445Z 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-04-25T04:35:27.2547897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2553535Z 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-04-25T04:35:27.2560132Z 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-04-25T04:35:27.2565614Z 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-04-25T04:35:27.2570858Z 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-04-25T04:35:27.2576993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2581978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2587185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2593186Z 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-04-25T04:35:27.2599361Z 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-04-25T04:35:27.2605171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2611192Z 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-04-25T04:35:27.2616887Z 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-04-25T04:35:27.2622399Z 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-04-25T04:35:27.2628039Z 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-04-25T04:35:27.2633999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2639783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2645377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2651132Z 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-04-25T04:35:27.2656746Z 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-04-25T04:35:27.2662637Z 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-04-25T04:35:27.2668187Z 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-04-25T04:35:27.2673669Z 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-04-25T04:35:27.2679509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2685079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2690603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2695772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2701601Z 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-04-25T04:35:27.2707320Z 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-04-25T04:35:27.2713207Z 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-04-25T04:35:27.2719417Z 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-04-25T04:35:27.2725145Z 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-04-25T04:35:27.2730937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2737099Z 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-04-25T04:35:27.2743436Z 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-04-25T04:35:27.2749172Z 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-04-25T04:35:27.2755269Z 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-04-25T04:35:27.2761574Z 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-04-25T04:35:27.2767530Z 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-04-25T04:35:27.2773222Z 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-04-25T04:35:27.2811548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2817151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2823086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2828757Z 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-04-25T04:35:27.2834884Z 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-04-25T04:35:27.2840650Z 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-04-25T04:35:27.2846425Z 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-04-25T04:35:27.2852192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2857977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2864137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2870153Z 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-04-25T04:35:27.2876306Z 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-04-25T04:35:27.2882156Z 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-04-25T04:35:27.2888085Z 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-04-25T04:35:27.2893893Z 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-04-25T04:35:27.2899642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2906233Z 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-04-25T04:35:27.2912562Z 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-04-25T04:35:27.2919450Z 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-04-25T04:35:27.2925481Z 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-04-25T04:35:27.2931533Z 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-04-25T04:35:27.2937577Z 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-04-25T04:35:27.2943757Z 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-04-25T04:35:27.2949703Z 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-04-25T04:35:27.2956346Z 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-04-25T04:35:27.2962455Z 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-04-25T04:35:27.2968415Z 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-04-25T04:35:27.2974619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.2980662Z 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-04-25T04:35:27.2986812Z 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-04-25T04:35:27.2992308Z 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-04-25T04:35:27.2998582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3004660Z 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-04-25T04:35:27.3010604Z 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-04-25T04:35:27.3016487Z 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-04-25T04:35:27.3022308Z 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-04-25T04:35:27.3028653Z 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-04-25T04:35:27.3035307Z 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-04-25T04:35:27.3041891Z 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-04-25T04:35:27.3048547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3054395Z 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-04-25T04:35:27.3059864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3066195Z 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-04-25T04:35:27.3097356Z 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-04-25T04:35:27.3103560Z 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-04-25T04:35:27.3109317Z 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-04-25T04:35:27.3115397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3121154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3126841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3132640Z 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-04-25T04:35:27.3138829Z 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-04-25T04:35:27.3144553Z 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-04-25T04:35:27.3150267Z 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-04-25T04:35:27.3156202Z 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-04-25T04:35:27.3162102Z 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-04-25T04:35:27.3167902Z 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-04-25T04:35:27.3174150Z 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-04-25T04:35:27.3180508Z 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-04-25T04:35:27.3186330Z 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-04-25T04:35:27.3191914Z 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-04-25T04:35:27.3197974Z 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-04-25T04:35:27.3203828Z 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-04-25T04:35:27.3209827Z 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-04-25T04:35:27.3215650Z 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-04-25T04:35:27.3221420Z 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-04-25T04:35:27.3227144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3233120Z 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-04-25T04:35:27.3240009Z 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-04-25T04:35:27.3245353Z 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-04-25T04:35:27.3251218Z 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-04-25T04:35:27.3257004Z 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-04-25T04:35:27.3262782Z 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-04-25T04:35:27.3268515Z 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-04-25T04:35:27.3274271Z 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-04-25T04:35:27.3280635Z 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-04-25T04:35:27.3286559Z 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-04-25T04:35:27.3292454Z 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-04-25T04:35:27.3298532Z 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-04-25T04:35:27.3304474Z 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-04-25T04:35:27.3310910Z 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-04-25T04:35:27.3316812Z 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-04-25T04:35:27.3322541Z 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-04-25T04:35:27.3328278Z 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-04-25T04:35:27.3333978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3339972Z 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-04-25T04:35:27.3346389Z 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-04-25T04:35:27.3352854Z 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-04-25T04:35:27.3388741Z 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-04-25T04:35:27.3394682Z 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-04-25T04:35:27.3400767Z 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-04-25T04:35:27.3413753Z 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-04-25T04:35:27.3414864Z 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-04-25T04:35:27.3420536Z 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-04-25T04:35:27.3426353Z 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-04-25T04:35:27.3432004Z 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-04-25T04:35:27.3437944Z 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-04-25T04:35:27.3443931Z 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-04-25T04:35:27.3449782Z 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-04-25T04:35:27.3455485Z 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-04-25T04:35:27.3461166Z 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-04-25T04:35:27.3466872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3472591Z 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-04-25T04:35:27.3478970Z 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-04-25T04:35:27.3484843Z 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-04-25T04:35:27.3491001Z 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-04-25T04:35:27.3496808Z 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-04-25T04:35:27.3502678Z 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-04-25T04:35:27.3508485Z 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-04-25T04:35:27.3514457Z 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-04-25T04:35:27.3520568Z 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-04-25T04:35:27.3526543Z 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-04-25T04:35:27.3532227Z 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-04-25T04:35:27.3538008Z 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-04-25T04:35:27.3543918Z 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-04-25T04:35:27.3549792Z 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-04-25T04:35:27.3555902Z 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-04-25T04:35:27.3561658Z 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-04-25T04:35:27.3567544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3573357Z 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-04-25T04:35:27.3579554Z 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-04-25T04:35:27.3585529Z 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-04-25T04:35:27.3591347Z 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-04-25T04:35:27.3597134Z 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-04-25T04:35:27.3603373Z 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-04-25T04:35:27.3609678Z 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-04-25T04:35:27.3615883Z 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-04-25T04:35:27.3622281Z 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-04-25T04:35:27.3628364Z 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-04-25T04:35:27.3634478Z 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-04-25T04:35:27.3640506Z 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-04-25T04:35:27.3646739Z 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-04-25T04:35:27.3662585Z 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-04-25T04:35:27.3668541Z 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-04-25T04:35:27.3674492Z 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-04-25T04:35:27.3680406Z 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-04-25T04:35:27.3686251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3692239Z 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-04-25T04:35:27.3698908Z 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-04-25T04:35:27.3704772Z 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-04-25T04:35:27.3710758Z 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-04-25T04:35:27.3716830Z 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-04-25T04:35:27.3722991Z 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-04-25T04:35:27.3729291Z 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-04-25T04:35:27.3735116Z 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-04-25T04:35:27.3741796Z 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-04-25T04:35:27.3748206Z 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-04-25T04:35:27.3754427Z 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-04-25T04:35:27.3760052Z 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-04-25T04:35:27.3766379Z 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-04-25T04:35:27.3772246Z 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-04-25T04:35:27.3778072Z 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-04-25T04:35:27.3784072Z 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-04-25T04:35:27.3789948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3796030Z 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-04-25T04:35:27.3802835Z 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-04-25T04:35:27.3808926Z 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-04-25T04:35:27.3814979Z 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-04-25T04:35:27.3821088Z 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-04-25T04:35:27.3847427Z 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-04-25T04:35:27.3853623Z 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-04-25T04:35:27.3859544Z 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-04-25T04:35:27.3866883Z 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-04-25T04:35:27.3872987Z 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-04-25T04:35:27.3879298Z 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-04-25T04:35:27.3885330Z 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-04-25T04:35:27.3891421Z 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-04-25T04:35:27.3897415Z 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-04-25T04:35:27.3903324Z 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-04-25T04:35:27.3909624Z 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-04-25T04:35:27.3915681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3921220Z 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-04-25T04:35:27.3926920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3933364Z 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-04-25T04:35:27.3939318Z 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-04-25T04:35:27.3945155Z 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-04-25T04:35:27.3967166Z 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-04-25T04:35:27.3973118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3979310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.3985253Z 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-04-25T04:35:27.3991612Z 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-04-25T04:35:27.3997367Z 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-04-25T04:35:27.4003019Z 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-04-25T04:35:27.4008589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4014165Z 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-04-25T04:35:27.4019851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4025249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4031013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4036765Z 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-04-25T04:35:27.4042159Z 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-04-25T04:35:27.4047594Z 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-04-25T04:35:27.4053057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4059174Z 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-04-25T04:35:27.4064764Z 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-04-25T04:35:27.4070319Z 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-04-25T04:35:27.4076306Z 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-04-25T04:35:27.4082017Z 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-04-25T04:35:27.4087556Z 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-04-25T04:35:27.4093152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4098574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4104048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4109475Z 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-04-25T04:35:27.4115391Z 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-04-25T04:35:27.4120722Z 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-04-25T04:35:27.4126363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4132127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4137257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4142408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4147635Z 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-04-25T04:35:27.4153287Z 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-04-25T04:35:27.4159240Z 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-04-25T04:35:27.4164892Z 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-04-25T04:35:27.4170456Z 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-04-25T04:35:27.4176224Z 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-04-25T04:35:27.4182100Z 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-04-25T04:35:27.4187996Z 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-04-25T04:35:27.4193812Z 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-04-25T04:35:27.4199960Z 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-04-25T04:35:27.4205433Z 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-04-25T04:35:27.4211093Z 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-04-25T04:35:27.4237052Z 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-04-25T04:35:27.4242733Z 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-04-25T04:35:27.4248307Z 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-04-25T04:35:27.4254194Z 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-04-25T04:35:27.4260151Z 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-04-25T04:35:27.4265820Z 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-04-25T04:35:27.4271377Z 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-04-25T04:35:27.4277632Z 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-04-25T04:35:27.4283577Z 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-04-25T04:35:27.4289356Z 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-04-25T04:35:27.4295138Z 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-04-25T04:35:27.4301004Z 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-04-25T04:35:27.4306748Z 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-04-25T04:35:27.4312619Z 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-04-25T04:35:27.4318298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4324415Z 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-04-25T04:35:27.4330304Z 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-04-25T04:35:27.4335911Z 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-04-25T04:35:27.4341509Z 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-04-25T04:35:27.4347187Z 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-04-25T04:35:27.4352869Z 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-04-25T04:35:27.4358966Z 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-04-25T04:35:27.4364462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4369891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4375145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4380631Z 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-04-25T04:35:27.4386082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4391656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4397262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4402692Z 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-04-25T04:35:27.4408282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4414069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4419704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4425323Z 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-04-25T04:35:27.4430843Z 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-04-25T04:35:27.4436575Z 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-04-25T04:35:27.4442059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4447783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4453627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4459352Z 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-04-25T04:35:27.4464917Z 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-04-25T04:35:27.4470397Z 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-04-25T04:35:27.4476257Z 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-04-25T04:35:27.4481749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4487371Z 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-04-25T04:35:27.4493280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4510231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4515958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4521467Z 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-04-25T04:35:27.4526911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4533004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4538500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4544747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4551552Z 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-04-25T04:35:27.4557864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4564440Z 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-04-25T04:35:27.4570551Z 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-04-25T04:35:27.4576244Z 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-04-25T04:35:27.4582031Z 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-04-25T04:35:27.4587857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4594826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4600951Z 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-04-25T04:35:27.4606622Z 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-04-25T04:35:27.4612406Z 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-04-25T04:35:27.4617896Z 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-04-25T04:35:27.4623468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4628922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4634586Z 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-04-25T04:35:27.4640473Z 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-04-25T04:35:27.4646548Z 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-04-25T04:35:27.4652168Z 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-04-25T04:35:27.4658144Z 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-04-25T04:35:27.4663901Z 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-04-25T04:35:27.4669891Z 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-04-25T04:35:27.4675985Z 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-04-25T04:35:27.4681601Z 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-04-25T04:35:27.4687631Z 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-04-25T04:35:27.4693531Z 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-04-25T04:35:27.4699384Z 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-04-25T04:35:27.4705313Z 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-04-25T04:35:27.4711289Z 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-04-25T04:35:27.4718418Z 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-04-25T04:35:27.4724051Z 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-04-25T04:35:27.4729985Z 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-04-25T04:35:27.4735731Z 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-04-25T04:35:27.4741686Z 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-04-25T04:35:27.4747686Z 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-04-25T04:35:27.4753471Z 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-04-25T04:35:27.4759308Z 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-04-25T04:35:27.4765064Z 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-04-25T04:35:27.4771065Z 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-04-25T04:35:27.4777157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4783090Z 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-04-25T04:35:27.4788807Z 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-04-25T04:35:27.4794857Z 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-04-25T04:35:27.4801014Z 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-04-25T04:35:27.4806912Z 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-04-25T04:35:27.4849750Z 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-04-25T04:35:27.4855677Z 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-04-25T04:35:27.4861563Z 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-04-25T04:35:27.4867489Z 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-04-25T04:35:27.4873187Z 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-04-25T04:35:27.4878779Z 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-04-25T04:35:27.4884472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4890581Z 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-04-25T04:35:27.4896282Z 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-04-25T04:35:27.4902020Z 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-04-25T04:35:27.4908139Z 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-04-25T04:35:27.4914038Z 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-04-25T04:35:27.4919894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4925560Z 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-04-25T04:35:27.4931527Z 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-04-25T04:35:27.4937469Z 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-04-25T04:35:27.4943176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4948948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.4955102Z 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-04-25T04:35:27.4961209Z 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-04-25T04:35:27.4967396Z 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-04-25T04:35:27.4973859Z 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-04-25T04:35:27.4980254Z 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-04-25T04:35:27.4986095Z 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-04-25T04:35:27.4991837Z 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-04-25T04:35:27.4998184Z 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-04-25T04:35:27.5003910Z 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-04-25T04:35:27.5009572Z 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-04-25T04:35:27.5015488Z 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-04-25T04:35:27.5021301Z 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-04-25T04:35:27.5027145Z 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-04-25T04:35:27.5033152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5039002Z 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-04-25T04:35:27.5044469Z 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-04-25T04:35:27.5049972Z 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-04-25T04:35:27.5055547Z 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-04-25T04:35:27.5061241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5067066Z 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-04-25T04:35:27.5072824Z 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-04-25T04:35:27.5078509Z 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-04-25T04:35:27.5084127Z 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-04-25T04:35:27.5090307Z 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-04-25T04:35:27.5096633Z 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-04-25T04:35:27.5102389Z 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-04-25T04:35:27.5109610Z 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-04-25T04:35:27.5115912Z 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-04-25T04:35:27.5121597Z 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-04-25T04:35:27.5127193Z 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-04-25T04:35:27.5132737Z 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-04-25T04:35:27.5138907Z 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-04-25T04:35:27.5145255Z 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-04-25T04:35:27.5151002Z 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-04-25T04:35:27.5157359Z 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-04-25T04:35:27.5163134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5168999Z 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-04-25T04:35:27.5174663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5180865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5186686Z 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-04-25T04:35:27.5192416Z 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-04-25T04:35:27.5198585Z 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-04-25T04:35:27.5204363Z 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-04-25T04:35:27.5210593Z 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-04-25T04:35:27.5231526Z 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-04-25T04:35:27.5237370Z 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-04-25T04:35:27.5243625Z 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-04-25T04:35:27.5249380Z 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-04-25T04:35:27.5256117Z 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-04-25T04:35:27.5262345Z 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-04-25T04:35:27.5268313Z 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-04-25T04:35:27.5274302Z 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-04-25T04:35:27.5280910Z 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-04-25T04:35:27.5286731Z 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-04-25T04:35:27.5292758Z 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-04-25T04:35:27.5298572Z 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-04-25T04:35:27.5304958Z 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-04-25T04:35:27.5310720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5316851Z 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-04-25T04:35:27.5322443Z 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-04-25T04:35:27.5329016Z 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-04-25T04:35:27.5334887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5340966Z 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-04-25T04:35:27.5346911Z 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-04-25T04:35:27.5363159Z 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-04-25T04:35:27.5368904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5374951Z 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-04-25T04:35:27.5380644Z 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-04-25T04:35:27.5386207Z 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-04-25T04:35:27.5392303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5398601Z 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-04-25T04:35:27.5404351Z 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-04-25T04:35:27.5409950Z 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-04-25T04:35:27.5416059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5422503Z 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-04-25T04:35:27.5428100Z 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-04-25T04:35:27.5434205Z 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-04-25T04:35:27.5440993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5447524Z 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-04-25T04:35:27.5453237Z 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-04-25T04:35:27.5474441Z 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-04-25T04:35:27.5480964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5487187Z 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-04-25T04:35:27.5492951Z 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-04-25T04:35:27.5498764Z 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-04-25T04:35:27.5504839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5510778Z 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-04-25T04:35:27.5516687Z 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-04-25T04:35:27.5542302Z 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-04-25T04:35:27.5547941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5553813Z 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-04-25T04:35:27.5559871Z 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-04-25T04:35:27.5565508Z 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-04-25T04:35:27.5571201Z 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-04-25T04:35:27.5576866Z 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-04-25T04:35:27.5582606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5589077Z 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-04-25T04:35:27.5594350Z 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-04-25T04:35:27.5600218Z 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-04-25T04:35:27.5605820Z 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-04-25T04:35:27.5611553Z 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-04-25T04:35:27.5617443Z 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-04-25T04:35:27.5623259Z 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-04-25T04:35:27.5628933Z 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-04-25T04:35:27.5635024Z 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-04-25T04:35:27.5640834Z 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-04-25T04:35:27.5647181Z 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-04-25T04:35:27.5652911Z 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-04-25T04:35:27.5658731Z 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-04-25T04:35:27.5664360Z 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-04-25T04:35:27.5670206Z 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-04-25T04:35:27.5675958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5681929Z 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-04-25T04:35:27.5687443Z 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-04-25T04:35:27.5693134Z 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-04-25T04:35:27.5698719Z 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-04-25T04:35:27.5704750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5710714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5716936Z 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-04-25T04:35:27.5722427Z 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-04-25T04:35:27.5728202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5733788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5739714Z 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-04-25T04:35:27.5745287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5751102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5757477Z 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-04-25T04:35:27.5763328Z 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-04-25T04:35:27.5768983Z 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-04-25T04:35:27.5774633Z 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-04-25T04:35:27.5780329Z 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-04-25T04:35:27.5786190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5791794Z 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-04-25T04:35:27.5797423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5803524Z 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-04-25T04:35:27.5809345Z 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-04-25T04:35:27.5815181Z 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-04-25T04:35:27.5820626Z 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-04-25T04:35:27.5826484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5849149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5855017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.5861461Z 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-04-25T04:35:27.5867170Z 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-04-25T04:35:27.5873261Z 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-04-25T04:35:27.5879360Z 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-04-25T04:35:27.5885889Z 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-04-25T04:35:27.5891861Z 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-04-25T04:35:27.5897929Z 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-04-25T04:35:27.5903991Z 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-04-25T04:35:27.5909975Z 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-04-25T04:35:27.5917095Z 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-04-25T04:35:27.5923229Z 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-04-25T04:35:27.5929159Z 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-04-25T04:35:27.5936573Z 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-04-25T04:35:27.5942353Z 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-04-25T04:35:27.5948561Z 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-04-25T04:35:27.5954569Z 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-04-25T04:35:27.5960826Z 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-04-25T04:35:27.5967022Z 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-04-25T04:35:27.5973282Z 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-04-25T04:35:27.5979681Z 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-04-25T04:35:27.5986589Z 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-04-25T04:35:27.5992581Z 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-04-25T04:35:27.5998969Z 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-04-25T04:35:27.6005474Z 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-04-25T04:35:27.6011245Z 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-04-25T04:35:27.6017297Z 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-04-25T04:35:27.6022994Z 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-04-25T04:35:27.6028677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6034841Z 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-04-25T04:35:27.6041182Z 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-04-25T04:35:27.6046794Z 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-04-25T04:35:27.6052942Z 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-04-25T04:35:27.6058774Z 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-04-25T04:35:27.6064642Z 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-04-25T04:35:27.6070412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6076760Z 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-04-25T04:35:27.6082854Z 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-04-25T04:35:27.6089010Z 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-04-25T04:35:27.6095246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6101608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6107633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6113517Z 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-04-25T04:35:27.6119125Z 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-04-25T04:35:27.6125314Z 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-04-25T04:35:27.6131182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6137058Z 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-04-25T04:35:27.6142909Z 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-04-25T04:35:27.6149050Z 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-04-25T04:35:27.6154696Z 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-04-25T04:35:27.6160790Z 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-04-25T04:35:27.6166804Z 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-04-25T04:35:27.6172564Z 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-04-25T04:35:27.6178431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6184188Z 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-04-25T04:35:27.6190033Z 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-04-25T04:35:27.6195716Z 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-04-25T04:35:27.6201655Z 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-04-25T04:35:27.6207525Z 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-04-25T04:35:27.6213411Z 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-04-25T04:35:27.6219486Z 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-04-25T04:35:27.6225258Z 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-04-25T04:35:27.6231156Z 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-04-25T04:35:27.6238084Z 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-04-25T04:35:27.6244040Z 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-04-25T04:35:27.6250095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6255906Z 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-04-25T04:35:27.6262202Z 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-04-25T04:35:27.6268109Z 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-04-25T04:35:27.6273885Z 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-04-25T04:35:27.6280362Z 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-04-25T04:35:27.6286680Z 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-04-25T04:35:27.6293211Z 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-04-25T04:35:27.6300306Z 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-04-25T04:35:27.6306368Z 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-04-25T04:35:27.6312369Z 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-04-25T04:35:27.6318535Z 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-04-25T04:35:27.6346875Z 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-04-25T04:35:27.6352900Z 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-04-25T04:35:27.6359546Z 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-04-25T04:35:27.6365708Z 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-04-25T04:35:27.6371724Z 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-04-25T04:35:27.6377879Z 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-04-25T04:35:27.6384223Z 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-04-25T04:35:27.6394958Z 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-04-25T04:35:27.6398645Z 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-04-25T04:35:27.6406305Z 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-04-25T04:35:27.6412342Z 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-04-25T04:35:27.6418945Z 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-04-25T04:35:27.6425230Z 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-04-25T04:35:27.6431339Z 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-04-25T04:35:27.6437482Z 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-04-25T04:35:27.6444072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6450008Z 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-04-25T04:35:27.6457006Z 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-04-25T04:35:27.6462729Z 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-04-25T04:35:27.6468598Z 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-04-25T04:35:27.6475495Z 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-04-25T04:35:27.6481948Z 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-04-25T04:35:27.6488168Z 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-04-25T04:35:27.6495419Z 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-04-25T04:35:27.6502620Z 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-04-25T04:35:27.6508510Z 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-04-25T04:35:27.6515008Z 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-04-25T04:35:27.6521545Z 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-04-25T04:35:27.6527396Z 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-04-25T04:35:27.6544804Z 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-04-25T04:35:27.6545443Z 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-04-25T04:35:27.6546159Z 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-04-25T04:35:27.6551982Z 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-04-25T04:35:27.6557681Z 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-04-25T04:35:27.6564272Z 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-04-25T04:35:27.6570342Z 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-04-25T04:35:27.6576306Z 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-04-25T04:35:27.6582457Z 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-04-25T04:35:27.6588540Z 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-04-25T04:35:27.6595343Z 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-04-25T04:35:27.6601085Z 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-04-25T04:35:27.6606507Z 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-04-25T04:35:27.6612355Z 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-04-25T04:35:27.6618428Z 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-04-25T04:35:27.6624565Z 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-04-25T04:35:27.6630179Z 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-04-25T04:35:27.6636342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6642176Z 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-04-25T04:35:27.6647886Z 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-04-25T04:35:27.6653604Z 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-04-25T04:35:27.6675840Z 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-04-25T04:35:27.6681818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6687455Z 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-04-25T04:35:27.6693385Z 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-04-25T04:35:27.6699348Z 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-04-25T04:35:27.6705190Z 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-04-25T04:35:27.6711271Z 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-04-25T04:35:27.6717579Z 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-04-25T04:35:27.6723262Z 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-04-25T04:35:27.6728653Z 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-04-25T04:35:27.6734782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6740242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6745987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6751808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6757439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6763194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6770518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6776334Z 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-04-25T04:35:27.6782262Z 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-04-25T04:35:27.6788040Z 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-04-25T04:35:27.6794029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6800275Z 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-04-25T04:35:27.6806747Z 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-04-25T04:35:27.6812342Z 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-04-25T04:35:27.6818882Z 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-04-25T04:35:27.6824712Z 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-04-25T04:35:27.6830525Z 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-04-25T04:35:27.6836526Z 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-04-25T04:35:27.6842760Z 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-04-25T04:35:27.6848580Z 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-04-25T04:35:27.6855033Z 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-04-25T04:35:27.6861042Z 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-04-25T04:35:27.6867117Z 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-04-25T04:35:27.6873034Z 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-04-25T04:35:27.6879414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6886342Z 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-04-25T04:35:27.6892285Z 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-04-25T04:35:27.6898667Z 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-04-25T04:35:27.6904766Z 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-04-25T04:35:27.6910668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6916918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6923112Z 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-04-25T04:35:27.6929285Z 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-04-25T04:35:27.6935398Z 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-04-25T04:35:27.6941706Z 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-04-25T04:35:27.6947960Z 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-04-25T04:35:27.6954461Z 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-04-25T04:35:27.6960891Z 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-04-25T04:35:27.6967402Z 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-04-25T04:35:27.6973410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.6979749Z 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-04-25T04:35:27.6986350Z 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-04-25T04:35:27.6993042Z 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-04-25T04:35:27.6999172Z 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-04-25T04:35:27.7006599Z 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-04-25T04:35:27.7012835Z 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-04-25T04:35:27.7018933Z 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-04-25T04:35:27.7024792Z 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-04-25T04:35:27.7030976Z 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-04-25T04:35:27.7037387Z 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-04-25T04:35:27.7043982Z 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-04-25T04:35:27.7050095Z 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-04-25T04:35:27.7056025Z 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-04-25T04:35:27.7062037Z 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-04-25T04:35:27.7068100Z 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-04-25T04:35:27.7074643Z 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-04-25T04:35:27.7085078Z 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-04-25T04:35:27.7095245Z 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-04-25T04:35:27.7101493Z 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-04-25T04:35:27.7107591Z 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-04-25T04:35:27.7113663Z 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-04-25T04:35:27.7140315Z 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-04-25T04:35:27.7146595Z 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-04-25T04:35:27.7152815Z 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-04-25T04:35:27.7159138Z 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-04-25T04:35:27.7166064Z 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-04-25T04:35:27.7172453Z 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-04-25T04:35:27.7179391Z 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-04-25T04:35:27.7184772Z 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-04-25T04:35:27.7203914Z 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-04-25T04:35:27.7210008Z 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-04-25T04:35:27.7216510Z 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-04-25T04:35:27.7222505Z 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-04-25T04:35:27.7228787Z 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-04-25T04:35:27.7234982Z 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-04-25T04:35:27.7241005Z 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-04-25T04:35:27.7247195Z 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-04-25T04:35:27.7253420Z 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-04-25T04:35:27.7259934Z 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-04-25T04:35:27.7265753Z 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-04-25T04:35:27.7271914Z 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-04-25T04:35:27.7278168Z 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-04-25T04:35:27.7284005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7290362Z 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-04-25T04:35:27.7296486Z 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-04-25T04:35:27.7302311Z 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-04-25T04:35:27.7308611Z 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-04-25T04:35:27.7314656Z 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-04-25T04:35:27.7321111Z 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-04-25T04:35:27.7327241Z 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-04-25T04:35:27.7333436Z 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-04-25T04:35:27.7339759Z 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-04-25T04:35:27.7346303Z 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-04-25T04:35:27.7352427Z 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-04-25T04:35:27.7358542Z 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-04-25T04:35:27.7364703Z 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-04-25T04:35:27.7371001Z 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-04-25T04:35:27.7376945Z 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-04-25T04:35:27.7383230Z 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-04-25T04:35:27.7389683Z 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-04-25T04:35:27.7395922Z 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-04-25T04:35:27.7402237Z 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-04-25T04:35:27.7408281Z 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-04-25T04:35:27.7414697Z 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-04-25T04:35:27.7420560Z 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-04-25T04:35:27.7427129Z 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-04-25T04:35:27.7433126Z 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-04-25T04:35:27.7439491Z 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-04-25T04:35:27.7445655Z 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-04-25T04:35:27.7452163Z 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-04-25T04:35:27.7458431Z 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-04-25T04:35:27.7464444Z 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-04-25T04:35:27.7470977Z 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-04-25T04:35:27.7477363Z 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-04-25T04:35:27.7483268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7489271Z 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-04-25T04:35:27.7495146Z 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-04-25T04:35:27.7501077Z 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-04-25T04:35:27.7506817Z 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-04-25T04:35:27.7512634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7518333Z 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-04-25T04:35:27.7524344Z 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-04-25T04:35:27.7573185Z 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-04-25T04:35:27.7579005Z 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-04-25T04:35:27.7584971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7591383Z 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-04-25T04:35:27.7598425Z 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-04-25T04:35:27.7604700Z 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-04-25T04:35:27.7610728Z 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-04-25T04:35:27.7616870Z 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-04-25T04:35:27.7622781Z 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-04-25T04:35:27.7629430Z 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-04-25T04:35:27.7635518Z 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-04-25T04:35:27.7642540Z 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-04-25T04:35:27.7649399Z 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-04-25T04:35:27.7655558Z 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-04-25T04:35:27.7661482Z 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-04-25T04:35:27.7667559Z 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-04-25T04:35:27.7673223Z 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-04-25T04:35:27.7679425Z 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-04-25T04:35:27.7685140Z 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-04-25T04:35:27.7690854Z 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-04-25T04:35:27.7696817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7702997Z 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-04-25T04:35:27.7709619Z 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-04-25T04:35:27.7716341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7722284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7729245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7735129Z 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-04-25T04:35:27.7740980Z 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-04-25T04:35:27.7747178Z 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-04-25T04:35:27.7753039Z 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-04-25T04:35:27.7758857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7764847Z 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-04-25T04:35:27.7770826Z 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-04-25T04:35:27.7776590Z 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-04-25T04:35:27.7782374Z 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-04-25T04:35:27.7787965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7793759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7800573Z 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-04-25T04:35:27.7806774Z 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-04-25T04:35:27.7812692Z 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-04-25T04:35:27.7818838Z 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-04-25T04:35:27.7825076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7831570Z 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-04-25T04:35:27.7837784Z 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-04-25T04:35:27.7843752Z 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-04-25T04:35:27.7849638Z 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-04-25T04:35:27.7856098Z 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-04-25T04:35:27.7862275Z 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-04-25T04:35:27.7868085Z 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-04-25T04:35:27.7874511Z 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-04-25T04:35:27.7880425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7917313Z 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-04-25T04:35:27.7923231Z 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-04-25T04:35:27.7929384Z 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-04-25T04:35:27.7935770Z 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-04-25T04:35:27.7942276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7947954Z 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-04-25T04:35:27.7954199Z 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-04-25T04:35:27.7960447Z 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-04-25T04:35:27.7966750Z 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-04-25T04:35:27.7972869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.7979222Z 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-04-25T04:35:27.7985556Z 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-04-25T04:35:27.7991790Z 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-04-25T04:35:27.7998569Z 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-04-25T04:35:27.8004853Z 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-04-25T04:35:27.8012060Z 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-04-25T04:35:27.8018482Z 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-04-25T04:35:27.8024817Z 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-04-25T04:35:27.8031541Z 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-04-25T04:35:27.8037708Z 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-04-25T04:35:27.8044053Z 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-04-25T04:35:27.8050138Z 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-04-25T04:35:27.8056329Z 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-04-25T04:35:27.8062280Z 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-04-25T04:35:27.8068482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8075093Z 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-04-25T04:35:27.8080563Z 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-04-25T04:35:27.8086659Z 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-04-25T04:35:27.8092317Z 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-04-25T04:35:27.8099076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8104859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8111582Z 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-04-25T04:35:27.8117186Z 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-04-25T04:35:27.8123493Z 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-04-25T04:35:27.8129195Z 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-04-25T04:35:27.8135508Z 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-04-25T04:35:27.8141546Z 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-04-25T04:35:27.8147542Z 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-04-25T04:35:27.8153731Z 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-04-25T04:35:27.8159397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8165591Z 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-04-25T04:35:27.8171269Z 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-04-25T04:35:27.8176995Z 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-04-25T04:35:27.8183023Z 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-04-25T04:35:27.8188968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8194850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8200943Z 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-04-25T04:35:27.8206644Z 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-04-25T04:35:27.8212514Z 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-04-25T04:35:27.8218533Z 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-04-25T04:35:27.8225110Z 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-04-25T04:35:27.8231047Z 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-04-25T04:35:27.8236812Z 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-04-25T04:35:27.8242489Z 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-04-25T04:35:27.8248339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8254268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8260889Z 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-04-25T04:35:27.8266973Z 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-04-25T04:35:27.8273094Z 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-04-25T04:35:27.8279019Z 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-04-25T04:35:27.8285298Z 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-04-25T04:35:27.8291089Z 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-04-25T04:35:27.8297254Z 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-04-25T04:35:27.8303101Z 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-04-25T04:35:27.8309276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8315463Z 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-04-25T04:35:27.8321657Z 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-04-25T04:35:27.8327502Z 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-04-25T04:35:27.8333751Z 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-04-25T04:35:27.8339828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8346208Z 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-04-25T04:35:27.8352872Z 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-04-25T04:35:27.8359375Z 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-04-25T04:35:27.8365935Z 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-04-25T04:35:27.8372222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8378515Z 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-04-25T04:35:27.8384344Z 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-04-25T04:35:27.8390328Z 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-04-25T04:35:27.8396314Z 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-04-25T04:35:27.8402359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8408642Z 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-04-25T04:35:27.8415044Z 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-04-25T04:35:27.8420941Z 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-04-25T04:35:27.8427029Z 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-04-25T04:35:27.8433264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8439543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8446145Z 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-04-25T04:35:27.8451945Z 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-04-25T04:35:27.8458281Z 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-04-25T04:35:27.8464342Z 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-04-25T04:35:27.8470138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8476575Z 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-04-25T04:35:27.8482270Z 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-04-25T04:35:27.8488823Z 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-04-25T04:35:27.8495572Z 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-04-25T04:35:27.8501590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8508030Z 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-04-25T04:35:27.8514181Z 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-04-25T04:35:27.8520013Z 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-04-25T04:35:27.8526125Z 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-04-25T04:35:27.8532337Z 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-04-25T04:35:27.8538727Z 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-04-25T04:35:27.8544605Z 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-04-25T04:35:27.8550580Z 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-04-25T04:35:27.8556749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8562483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8568455Z 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-04-25T04:35:27.8574291Z 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-04-25T04:35:27.8580178Z 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-04-25T04:35:27.8586008Z 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-04-25T04:35:27.8592181Z 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-04-25T04:35:27.8598101Z 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-04-25T04:35:27.8603841Z 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-04-25T04:35:27.8609774Z 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-04-25T04:35:27.8615963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8622252Z 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-04-25T04:35:27.8627935Z 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-04-25T04:35:27.8634084Z 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-04-25T04:35:27.8640294Z 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-04-25T04:35:27.8646316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8652792Z 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-04-25T04:35:27.8659248Z 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-04-25T04:35:27.8665359Z 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-04-25T04:35:27.8671392Z 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-04-25T04:35:27.8677467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8684189Z 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-04-25T04:35:27.8695503Z 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-04-25T04:35:27.8701674Z 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-04-25T04:35:27.8707675Z 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-04-25T04:35:27.8713691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8720359Z 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-04-25T04:35:27.8726421Z 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-04-25T04:35:27.8732497Z 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-04-25T04:35:27.8738454Z 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-04-25T04:35:27.8744915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8751053Z 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-04-25T04:35:27.8758107Z 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-04-25T04:35:27.8764160Z 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-04-25T04:35:27.8770123Z 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-04-25T04:35:27.8776132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8787126Z 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-04-25T04:35:27.8793434Z 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-04-25T04:35:27.8799767Z 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-04-25T04:35:27.8805806Z 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-04-25T04:35:27.8827264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8833622Z 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-04-25T04:35:27.8839913Z 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-04-25T04:35:27.8846135Z 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-04-25T04:35:27.8852240Z 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-04-25T04:35:27.8858171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8864334Z 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-04-25T04:35:27.8870246Z 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-04-25T04:35:27.8876306Z 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-04-25T04:35:27.8882233Z 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-04-25T04:35:27.8924892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8931390Z 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-04-25T04:35:27.8937495Z 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-04-25T04:35:27.8943628Z 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-04-25T04:35:27.8949554Z 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-04-25T04:35:27.8955847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.8979446Z 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-04-25T04:35:27.8985456Z 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-04-25T04:35:27.8991647Z 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-04-25T04:35:27.8997961Z 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-04-25T04:35:27.9004104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9010270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9016631Z 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-04-25T04:35:27.9022396Z 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-04-25T04:35:27.9028425Z 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-04-25T04:35:27.9034753Z 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-04-25T04:35:27.9041010Z 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-04-25T04:35:27.9046848Z 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-04-25T04:35:27.9052620Z 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-04-25T04:35:27.9058363Z 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-04-25T04:35:27.9064317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9070657Z 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-04-25T04:35:27.9076798Z 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-04-25T04:35:27.9082789Z 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-04-25T04:35:27.9088740Z 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-04-25T04:35:27.9094370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9100679Z 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-04-25T04:35:27.9106438Z 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-04-25T04:35:27.9112787Z 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-04-25T04:35:27.9118432Z 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-04-25T04:35:27.9124580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9130294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9136358Z 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-04-25T04:35:27.9142203Z 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-04-25T04:35:27.9148808Z 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-04-25T04:35:27.9156171Z 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-04-25T04:35:27.9163465Z 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-04-25T04:35:27.9169946Z 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-04-25T04:35:27.9176640Z 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-04-25T04:35:27.9183192Z 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-04-25T04:35:27.9189697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9196262Z 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-04-25T04:35:27.9202655Z 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-04-25T04:35:27.9208325Z 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-04-25T04:35:27.9214260Z 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-04-25T04:35:27.9220352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9226339Z 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-04-25T04:35:27.9232134Z 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-04-25T04:35:27.9238031Z 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-04-25T04:35:27.9244202Z 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-04-25T04:35:27.9250101Z 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-04-25T04:35:27.9255886Z 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-04-25T04:35:27.9261736Z 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-04-25T04:35:27.9268032Z 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-04-25T04:35:27.9273824Z 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-04-25T04:35:27.9280183Z 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-04-25T04:35:27.9285942Z 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-04-25T04:35:27.9291857Z 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-04-25T04:35:27.9297799Z 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-04-25T04:35:27.9304142Z 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-04-25T04:35:27.9310599Z 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-04-25T04:35:27.9317496Z 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-04-25T04:35:27.9323736Z 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-04-25T04:35:27.9330043Z 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-04-25T04:35:27.9336301Z 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-04-25T04:35:27.9342635Z 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-04-25T04:35:27.9348582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9354733Z 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-04-25T04:35:27.9360652Z 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-04-25T04:35:27.9389102Z 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-04-25T04:35:27.9394982Z 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-04-25T04:35:27.9401030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9407117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9413365Z 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-04-25T04:35:27.9419284Z 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-04-25T04:35:27.9425318Z 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-04-25T04:35:27.9431066Z 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-04-25T04:35:27.9437046Z 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-04-25T04:35:27.9443402Z 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-04-25T04:35:27.9449522Z 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-04-25T04:35:27.9455524Z 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-04-25T04:35:27.9461373Z 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-04-25T04:35:27.9467236Z 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-04-25T04:35:27.9473167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9479458Z 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-04-25T04:35:27.9485345Z 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-04-25T04:35:27.9491410Z 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-04-25T04:35:27.9497697Z 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-04-25T04:35:27.9559205Z 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-04-25T04:35:27.9569223Z 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-04-25T04:35:27.9573326Z 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-04-25T04:35:27.9579941Z 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-04-25T04:35:27.9585754Z 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-04-25T04:35:27.9591726Z 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-04-25T04:35:27.9597548Z 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-04-25T04:35:27.9603290Z 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-04-25T04:35:27.9690781Z 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-04-25T04:35:27.9696430Z 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-04-25T04:35:27.9702671Z 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-04-25T04:35:27.9708939Z 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-04-25T04:35:27.9714879Z 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-04-25T04:35:27.9720747Z 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-04-25T04:35:27.9727120Z 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-04-25T04:35:27.9733099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9739375Z 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-04-25T04:35:27.9745274Z 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-04-25T04:35:27.9752071Z 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-04-25T04:35:27.9757939Z 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-04-25T04:35:27.9763890Z 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-04-25T04:35:27.9769450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9775285Z 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-04-25T04:35:27.9780744Z 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-04-25T04:35:27.9787014Z 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-04-25T04:35:27.9792823Z 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-04-25T04:35:27.9798728Z 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-04-25T04:35:27.9804611Z 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-04-25T04:35:27.9810506Z 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-04-25T04:35:27.9816174Z 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-04-25T04:35:27.9822736Z 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-04-25T04:35:27.9829835Z 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-04-25T04:35:27.9835639Z 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-04-25T04:35:27.9841539Z 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-04-25T04:35:27.9847404Z 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-04-25T04:35:27.9853166Z 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-04-25T04:35:27.9859329Z 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-04-25T04:35:27.9865439Z 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-04-25T04:35:27.9871498Z 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-04-25T04:35:27.9877661Z 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-04-25T04:35:27.9883707Z 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-04-25T04:35:27.9889839Z 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-04-25T04:35:27.9895776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:27.9901653Z 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-04-25T04:35:27.9907451Z 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-04-25T04:35:27.9913468Z 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-04-25T04:35:27.9919493Z 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-04-25T04:35:27.9925548Z 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-04-25T04:35:27.9931511Z 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-04-25T04:35:27.9937473Z 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-04-25T04:35:27.9943264Z 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-04-25T04:35:27.9949739Z 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-04-25T04:35:27.9955735Z 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-04-25T04:35:27.9961899Z 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-04-25T04:35:27.9967849Z 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-04-25T04:35:27.9973727Z 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-04-25T04:35:27.9979547Z 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-04-25T04:35:27.9985390Z 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-04-25T04:35:27.9991246Z 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-04-25T04:35:27.9997572Z 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-04-25T04:35:28.0005038Z 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-04-25T04:35:28.0011396Z 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-04-25T04:35:28.0017684Z 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-04-25T04:35:28.0023960Z 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-04-25T04:35:28.0030145Z 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-04-25T04:35:28.0036660Z 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-04-25T04:35:28.0042583Z 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-04-25T04:35:28.0048475Z 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-04-25T04:35:28.0054522Z 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-04-25T04:35:28.0060437Z 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-04-25T04:35:28.0066305Z 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-04-25T04:35:28.0072319Z 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-04-25T04:35:28.0078311Z 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-04-25T04:35:28.0084032Z 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-04-25T04:35:28.0089739Z 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-04-25T04:35:28.0095821Z 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-04-25T04:35:28.0102006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0107883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0114014Z 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-04-25T04:35:28.0120342Z 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-04-25T04:35:28.0125927Z 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-04-25T04:35:28.0131119Z 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-04-25T04:35:28.0136824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0142216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0147873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0185436Z 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-04-25T04:35:28.0190960Z 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-04-25T04:35:28.0196780Z 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-04-25T04:35:28.0202540Z 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-04-25T04:35:28.0208262Z 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-04-25T04:35:28.0214236Z 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-04-25T04:35:28.0238466Z 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-04-25T04:35:28.0243956Z 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-04-25T04:35:28.0249548Z 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-04-25T04:35:28.0255393Z 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-04-25T04:35:28.0260881Z 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-04-25T04:35:28.0266245Z 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-04-25T04:35:28.0271915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0277937Z 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-04-25T04:35:28.0283623Z 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-04-25T04:35:28.0289026Z 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-04-25T04:35:28.0294660Z 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-04-25T04:35:28.0300350Z 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-04-25T04:35:28.0306082Z 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-04-25T04:35:28.0311895Z 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-04-25T04:35:28.0318156Z 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-04-25T04:35:28.0324123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0329908Z 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-04-25T04:35:28.0335761Z 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-04-25T04:35:28.0341413Z 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-04-25T04:35:28.0347260Z 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-04-25T04:35:28.0353295Z 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-04-25T04:35:28.0359302Z 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-04-25T04:35:28.0364920Z 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-04-25T04:35:28.0370734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0377228Z 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-04-25T04:35:28.0382941Z 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-04-25T04:35:28.0388831Z 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-04-25T04:35:28.0395009Z 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-04-25T04:35:28.0400824Z 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-04-25T04:35:28.0406600Z 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-04-25T04:35:28.0412334Z 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-04-25T04:35:28.0426695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0433050Z 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-04-25T04:35:28.0439009Z 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-04-25T04:35:28.0445076Z 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-04-25T04:35:28.0450845Z 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-04-25T04:35:28.0457022Z 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-04-25T04:35:28.0462623Z 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-04-25T04:35:28.0468918Z 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-04-25T04:35:28.0474454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0481021Z 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-04-25T04:35:28.0487422Z 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-04-25T04:35:28.0493773Z 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-04-25T04:35:28.0499500Z 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-04-25T04:35:28.0505391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0511688Z 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-04-25T04:35:28.0517540Z 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-04-25T04:35:28.0523682Z 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-04-25T04:35:28.0529706Z 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-04-25T04:35:28.0536020Z 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-04-25T04:35:28.0542021Z 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-04-25T04:35:28.0547862Z 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-04-25T04:35:28.0553763Z 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-04-25T04:35:28.0559816Z 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-04-25T04:35:28.0565343Z 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-04-25T04:35:28.0571549Z 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-04-25T04:35:28.0577095Z 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-04-25T04:35:28.0582810Z 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-04-25T04:35:28.0588423Z 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-04-25T04:35:28.0594251Z 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-04-25T04:35:28.0599904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0606026Z 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-04-25T04:35:28.0611841Z 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-04-25T04:35:28.0617607Z 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-04-25T04:35:28.0623156Z 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-04-25T04:35:28.0628820Z 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-04-25T04:35:28.0634737Z 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-04-25T04:35:28.0661584Z 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-04-25T04:35:28.0667247Z 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-04-25T04:35:28.0673109Z 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-04-25T04:35:28.0679089Z 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-04-25T04:35:28.0684899Z 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-04-25T04:35:28.0690784Z 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-04-25T04:35:28.0696531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0702323Z 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-04-25T04:35:28.0707899Z 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-04-25T04:35:28.0713641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0719270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0724990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0730576Z 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-04-25T04:35:28.0737436Z 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-04-25T04:35:28.0743090Z 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-04-25T04:35:28.0749274Z 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-04-25T04:35:28.0755107Z 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-04-25T04:35:28.0760908Z 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-04-25T04:35:28.0766597Z 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-04-25T04:35:28.0772254Z 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-04-25T04:35:28.0778262Z 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-04-25T04:35:28.0784189Z 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-04-25T04:35:28.0789939Z 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-04-25T04:35:28.0795686Z 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-04-25T04:35:28.0801418Z 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-04-25T04:35:28.0807079Z 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-04-25T04:35:28.0812715Z 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-04-25T04:35:28.0818448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0824834Z 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-04-25T04:35:28.0830485Z 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-04-25T04:35:28.0836269Z 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-04-25T04:35:28.0841944Z 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-04-25T04:35:28.0848009Z 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-04-25T04:35:28.0853810Z 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-04-25T04:35:28.0859889Z 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-04-25T04:35:28.0865780Z 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-04-25T04:35:28.0871586Z 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-04-25T04:35:28.0877530Z 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-04-25T04:35:28.0883833Z 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-04-25T04:35:28.0889812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.0895991Z 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-04-25T04:35:28.0902253Z 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-04-25T04:35:28.0908549Z 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-04-25T04:35:28.0915000Z 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-04-25T04:35:28.0920892Z 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-04-25T04:35:28.0927018Z 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-04-25T04:35:28.0932851Z 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-04-25T04:35:28.0938365Z 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-04-25T04:35:28.0944296Z 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-04-25T04:35:28.0950801Z 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-04-25T04:35:28.0956921Z 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-04-25T04:35:28.0962587Z 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-04-25T04:35:28.0968519Z 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-04-25T04:35:28.0975126Z 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-04-25T04:35:28.0981410Z 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-04-25T04:35:28.0988620Z 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-04-25T04:35:28.0994977Z 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-04-25T04:35:28.1001275Z 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-04-25T04:35:28.1007272Z 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-04-25T04:35:28.1013403Z 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-04-25T04:35:28.1019196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1025111Z 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-04-25T04:35:28.1030970Z 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-04-25T04:35:28.1036714Z 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-04-25T04:35:28.1042507Z 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-04-25T04:35:28.1048573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1054227Z 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-04-25T04:35:28.1060226Z 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-04-25T04:35:28.1065985Z 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-04-25T04:35:28.1072911Z 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-04-25T04:35:28.1078808Z 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-04-25T04:35:28.1084775Z 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-04-25T04:35:28.1090720Z 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-04-25T04:35:28.1096477Z 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-04-25T04:35:28.1102636Z 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-04-25T04:35:28.1108694Z 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-04-25T04:35:28.1114536Z 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-04-25T04:35:28.1120178Z 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-04-25T04:35:28.1126003Z 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-04-25T04:35:28.1132195Z 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-04-25T04:35:28.1137398Z 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-04-25T04:35:28.1143046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1148822Z 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-04-25T04:35:28.1154456Z 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-04-25T04:35:28.1160529Z 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-04-25T04:35:28.1166246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1172129Z 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-04-25T04:35:28.1177782Z 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-04-25T04:35:28.1183711Z 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-04-25T04:35:28.1189446Z 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-04-25T04:35:28.1195169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1201380Z 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-04-25T04:35:28.1206985Z 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-04-25T04:35:28.1212720Z 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-04-25T04:35:28.1218530Z 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-04-25T04:35:28.1224541Z 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-04-25T04:35:28.1230102Z 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-04-25T04:35:28.1236738Z 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-04-25T04:35:28.1242299Z 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-04-25T04:35:28.1248192Z 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-04-25T04:35:28.1272955Z 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-04-25T04:35:28.1278751Z 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-04-25T04:35:28.1284499Z 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-04-25T04:35:28.1290437Z 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-04-25T04:35:28.1296737Z 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-04-25T04:35:28.1302440Z 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-04-25T04:35:28.1308253Z 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-04-25T04:35:28.1314143Z 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-04-25T04:35:28.1320353Z 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-04-25T04:35:28.1326679Z 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-04-25T04:35:28.1332463Z 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-04-25T04:35:28.1338380Z 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-04-25T04:35:28.1344096Z 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-04-25T04:35:28.1349876Z 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-04-25T04:35:28.1355741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.1361517Z 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-04-25T04:35:28.1367005Z 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-04-25T04:35:28.1373100Z 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-04-25T04:35:28.1378917Z 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-04-25T04:35:28.1384862Z 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-04-25T04:35:28.1390305Z 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-04-25T04:35:28.1396585Z 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-04-25T04:35:28.1401894Z 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-04-25T04:35:28.1407856Z 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-04-25T04:35:28.1413522Z 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-04-25T04:35:28.1423579Z 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-04-25T04:35:28.1429521Z 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-04-25T04:35:28.1435479Z 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-04-25T04:35:28.1441495Z 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-04-25T04:35:28.1447431Z 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-04-25T04:35:28.1453437Z 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-04-25T04:35:28.1459336Z 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-04-25T04:35:28.1465270Z 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-04-25T04:35:28.1471299Z 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-04-25T04:35:28.1477127Z 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-04-25T04:35:28.1483328Z 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-04-25T04:35:28.1489360Z 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-04-25T04:35:28.1495107Z 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-04-25T04:35:28.1500920Z 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-04-25T04:35:28.1506857Z 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-04-25T04:35:28.1512915Z 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-04-25T04:35:28.1518906Z 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-04-25T04:35:28.1524723Z 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-04-25T04:35:28.1530407Z 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-04-25T04:35:28.1536477Z 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-04-25T04:35:28.1542300Z 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-04-25T04:35:28.1547720Z 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-04-25T04:35:28.1553610Z 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-04-25T04:35:28.1559541Z 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-04-25T04:35:28.1565141Z 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-04-25T04:35:28.1570737Z 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-04-25T04:35:28.1576667Z 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-04-25T04:35:28.1582245Z 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-04-25T04:35:28.1588383Z 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-04-25T04:35:28.1594253Z 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-04-25T04:35:28.1599742Z 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-04-25T04:35:28.1605655Z 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-04-25T04:35:28.1611344Z 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-04-25T04:35:28.1616814Z 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-04-25T04:35:28.1623155Z 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-04-25T04:35:28.1630001Z 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-04-25T04:35:28.1637051Z 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-04-25T04:35:28.1643725Z 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-04-25T04:35:28.1650210Z 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-04-25T04:35:28.1656377Z 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-04-25T04:35:28.1662399Z 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-04-25T04:35:28.1667951Z 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-04-25T04:35:28.1674265Z 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-04-25T04:35:28.1680222Z 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-04-25T04:35:28.1686154Z 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-04-25T04:35:28.1691893Z 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-04-25T04:35:28.1697550Z 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-04-25T04:35:28.1703862Z 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-04-25T04:35:28.1709616Z 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-04-25T04:35:28.1715817Z 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-04-25T04:35:28.1721704Z 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-04-25T04:35:28.1727791Z 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-04-25T04:35:28.1733790Z 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-04-25T04:35:28.1739620Z 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-04-25T04:35:28.1746901Z 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-04-25T04:35:28.1752708Z 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-04-25T04:35:28.1759006Z 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-04-25T04:35:28.1764786Z 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-04-25T04:35:28.1770616Z 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-04-25T04:35:28.1776646Z 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-04-25T04:35:28.1783478Z 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-04-25T04:35:28.1789630Z 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-04-25T04:35:28.1795588Z 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-04-25T04:35:28.1807866Z 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-04-25T04:35:28.1813805Z 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-04-25T04:35:28.1819729Z 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-04-25T04:35:28.1825322Z 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-04-25T04:35:28.1831311Z 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-04-25T04:35:28.1837309Z 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-04-25T04:35:28.1843084Z 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-04-25T04:35:28.1848840Z 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-04-25T04:35:28.1855093Z 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-04-25T04:35:28.1861149Z 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-04-25T04:35:28.1867149Z 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-04-25T04:35:28.1872848Z 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-04-25T04:35:28.1879269Z 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-04-25T04:35:28.1884961Z 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-04-25T04:35:28.1890941Z 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-04-25T04:35:28.1897554Z 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-04-25T04:35:28.1903701Z 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-04-25T04:35:28.1909783Z 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-04-25T04:35:28.1915886Z 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-04-25T04:35:28.1921783Z 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-04-25T04:35:28.1927901Z 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-04-25T04:35:28.1934803Z 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-04-25T04:35:28.1941445Z 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-04-25T04:35:28.1948462Z 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-04-25T04:35:28.1954679Z 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-04-25T04:35:28.1961211Z 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-04-25T04:35:28.1967347Z 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-04-25T04:35:28.1975187Z 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-04-25T04:35:28.2009415Z 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-04-25T04:35:28.2015347Z 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-04-25T04:35:28.2021186Z 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-04-25T04:35:28.2027009Z 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-04-25T04:35:28.2032780Z 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-04-25T04:35:28.2038766Z 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-04-25T04:35:28.2044985Z 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-04-25T04:35:28.2050618Z 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-04-25T04:35:28.2056506Z 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-04-25T04:35:28.2062576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2081162Z 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-04-25T04:35:28.2086547Z 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-04-25T04:35:28.2091993Z 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-04-25T04:35:28.2097691Z 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-04-25T04:35:28.2104080Z 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-04-25T04:35:28.2110081Z 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-04-25T04:35:28.2116234Z 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-04-25T04:35:28.2121967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2126936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2132349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2138032Z 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-04-25T04:35:28.2143732Z 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-04-25T04:35:28.2149995Z 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-04-25T04:35:28.2156040Z 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-04-25T04:35:28.2161684Z 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-04-25T04:35:28.2167947Z 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-04-25T04:35:28.2173513Z 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-04-25T04:35:28.2179203Z 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-04-25T04:35:28.2185252Z 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-04-25T04:35:28.2191111Z 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-04-25T04:35:28.2196939Z 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-04-25T04:35:28.2202900Z 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-04-25T04:35:28.2208846Z 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-04-25T04:35:28.2214724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2220935Z 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-04-25T04:35:28.2226569Z 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-04-25T04:35:28.2232202Z 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-04-25T04:35:28.2237972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2243879Z 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-04-25T04:35:28.2249427Z 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-04-25T04:35:28.2272689Z 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-04-25T04:35:28.2278655Z 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-04-25T04:35:28.2285051Z 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-04-25T04:35:28.2290778Z 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-04-25T04:35:28.2296738Z 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-04-25T04:35:28.2303648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2309710Z 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-04-25T04:35:28.2315786Z 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-04-25T04:35:28.2321691Z 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-04-25T04:35:28.2327517Z 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-04-25T04:35:28.2334345Z 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-04-25T04:35:28.2340025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2346128Z 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-04-25T04:35:28.2352055Z 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-04-25T04:35:28.2358929Z 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-04-25T04:35:28.2364658Z 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-04-25T04:35:28.2370360Z 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-04-25T04:35:28.2376087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2381997Z 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-04-25T04:35:28.2387941Z 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-04-25T04:35:28.2396578Z 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-04-25T04:35:28.2403966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2409704Z 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-04-25T04:35:28.2416126Z 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-04-25T04:35:28.2437986Z 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-04-25T04:35:28.2443561Z 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-04-25T04:35:28.2449672Z 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-04-25T04:35:28.2455312Z 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-04-25T04:35:28.2461782Z 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-04-25T04:35:28.2469323Z 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-04-25T04:35:28.2475590Z 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-04-25T04:35:28.2481583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2487125Z 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-04-25T04:35:28.2492786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2499107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2504922Z 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-04-25T04:35:28.2511438Z 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-04-25T04:35:28.2517383Z 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-04-25T04:35:28.2522545Z 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-04-25T04:35:28.2529003Z 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-04-25T04:35:28.2534909Z 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-04-25T04:35:28.2540428Z 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-04-25T04:35:28.2546244Z 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-04-25T04:35:28.2552149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2558686Z 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-04-25T04:35:28.2564827Z 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-04-25T04:35:28.2570652Z 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-04-25T04:35:28.2576298Z 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-04-25T04:35:28.2582417Z 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-04-25T04:35:28.2588733Z 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-04-25T04:35:28.2594783Z 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-04-25T04:35:28.2600991Z 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-04-25T04:35:28.2606776Z 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-04-25T04:35:28.2612195Z 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-04-25T04:35:28.2618573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2624722Z 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-04-25T04:35:28.2630526Z 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-04-25T04:35:28.2636094Z 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-04-25T04:35:28.2641788Z 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-04-25T04:35:28.2649327Z 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-04-25T04:35:28.2655937Z 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-04-25T04:35:28.2661777Z 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-04-25T04:35:28.2667492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2673702Z 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-04-25T04:35:28.2710399Z 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-04-25T04:35:28.2716947Z 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-04-25T04:35:28.2723018Z 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-04-25T04:35:28.2728737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2734780Z 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-04-25T04:35:28.2740253Z 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-04-25T04:35:28.2771206Z 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-04-25T04:35:28.2777189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2814801Z 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-04-25T04:35:28.2820294Z 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-04-25T04:35:28.2826099Z 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-04-25T04:35:28.2833864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.2928360Z 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-04-25T04:35:28.2934344Z 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-04-25T04:35:28.2940500Z 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-04-25T04:35:28.2946343Z 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-04-25T04:35:28.2952631Z 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-04-25T04:35:28.2958747Z 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-04-25T04:35:28.2964572Z 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-04-25T04:35:28.2970089Z 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-04-25T04:35:28.2976196Z 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-04-25T04:35:28.2981626Z 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-04-25T04:35:28.2988709Z 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-04-25T04:35:28.2995394Z 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-04-25T04:35:28.3001992Z 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-04-25T04:35:28.3007951Z 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-04-25T04:35:28.3013798Z 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-04-25T04:35:28.3019793Z 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-04-25T04:35:28.3025931Z 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-04-25T04:35:28.3031964Z 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-04-25T04:35:28.3038170Z 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-04-25T04:35:28.3044241Z 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-04-25T04:35:28.3050265Z 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-04-25T04:35:28.3056560Z 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-04-25T04:35:28.3062699Z 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-04-25T04:35:28.3069490Z 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-04-25T04:35:28.3084430Z 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-04-25T04:35:28.3085722Z 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-04-25T04:35:28.3088367Z 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-04-25T04:35:28.3094376Z 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-04-25T04:35:28.3100358Z 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-04-25T04:35:28.3106487Z 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-04-25T04:35:28.3113629Z 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-04-25T04:35:28.3119644Z 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-04-25T04:35:28.3125507Z 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-04-25T04:35:28.3132287Z 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-04-25T04:35:28.3139158Z 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-04-25T04:35:28.3145244Z 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-04-25T04:35:28.3152211Z 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-04-25T04:35:28.3158754Z 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-04-25T04:35:28.3165468Z 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-04-25T04:35:28.3171666Z 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-04-25T04:35:28.3178364Z 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-04-25T04:35:28.3184771Z 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-04-25T04:35:28.3190671Z 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-04-25T04:35:28.3196738Z 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-04-25T04:35:28.3202832Z 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-04-25T04:35:28.3208903Z 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-04-25T04:35:28.3214911Z 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-04-25T04:35:28.3220850Z 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-04-25T04:35:28.3226889Z 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-04-25T04:35:28.3233094Z 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-04-25T04:35:28.3239798Z 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-04-25T04:35:28.3245888Z 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-04-25T04:35:28.3251939Z 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-04-25T04:35:28.3258429Z 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-04-25T04:35:28.3264929Z 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-04-25T04:35:28.3271040Z 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-04-25T04:35:28.3277392Z 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-04-25T04:35:28.3283354Z 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-04-25T04:35:28.3289281Z 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-04-25T04:35:28.3295446Z 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-04-25T04:35:28.3301223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3307198Z 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-04-25T04:35:28.3312863Z 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-04-25T04:35:28.3319056Z 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-04-25T04:35:28.3324705Z 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-04-25T04:35:28.3330397Z 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-04-25T04:35:28.3336212Z 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-04-25T04:35:28.3342122Z 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-04-25T04:35:28.3347874Z 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-04-25T04:35:28.3353616Z 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-04-25T04:35:28.3359370Z 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-04-25T04:35:28.3365230Z 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-04-25T04:35:28.3371312Z 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-04-25T04:35:28.3377124Z 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-04-25T04:35:28.3382496Z 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-04-25T04:35:28.3388239Z 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-04-25T04:35:28.3394506Z 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-04-25T04:35:28.3400144Z 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-04-25T04:35:28.3406348Z 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-04-25T04:35:28.3412428Z 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-04-25T04:35:28.3418345Z 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-04-25T04:35:28.3424090Z 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-04-25T04:35:28.3430016Z 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-04-25T04:35:28.3435924Z 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-04-25T04:35:28.3442064Z 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-04-25T04:35:28.3447992Z 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-04-25T04:35:28.3453811Z 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-04-25T04:35:28.3459803Z 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-04-25T04:35:28.3465482Z 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-04-25T04:35:28.3471357Z 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-04-25T04:35:28.3477411Z 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-04-25T04:35:28.3483467Z 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-04-25T04:35:28.3489480Z 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-04-25T04:35:28.3495268Z 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-04-25T04:35:28.3501148Z 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-04-25T04:35:28.3507241Z 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-04-25T04:35:28.3513011Z 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-04-25T04:35:28.3519514Z 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-04-25T04:35:28.3525383Z 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-04-25T04:35:28.3532162Z 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-04-25T04:35:28.3538100Z 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-04-25T04:35:28.3543982Z 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-04-25T04:35:28.3549777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3555358Z 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-04-25T04:35:28.3561891Z 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-04-25T04:35:28.3567514Z 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-04-25T04:35:28.3573395Z 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-04-25T04:35:28.3579151Z 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-04-25T04:35:28.3587142Z 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-04-25T04:35:28.3593111Z 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-04-25T04:35:28.3599001Z 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-04-25T04:35:28.3605055Z 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-04-25T04:35:28.3610658Z 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-04-25T04:35:28.3616493Z 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-04-25T04:35:28.3622642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3628633Z 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-04-25T04:35:28.3634540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3640144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3645787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.3651835Z 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-04-25T04:35:28.3657428Z 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-04-25T04:35:28.3663038Z 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-04-25T04:35:28.3668733Z 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-04-25T04:35:28.3674725Z 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-04-25T04:35:28.3681059Z 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-04-25T04:35:28.3686905Z 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-04-25T04:35:28.3692747Z 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-04-25T04:35:28.3698851Z 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-04-25T04:35:28.3704583Z 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-04-25T04:35:28.3710338Z 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-04-25T04:35:28.3716313Z 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-04-25T04:35:28.3722519Z 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-04-25T04:35:28.3728192Z 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-04-25T04:35:28.3733995Z 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-04-25T04:35:28.3739701Z 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-04-25T04:35:28.3746095Z 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-04-25T04:35:28.3751814Z 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-04-25T04:35:28.3757667Z 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-04-25T04:35:28.3763600Z 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-04-25T04:35:28.3770126Z 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-04-25T04:35:28.3776124Z 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-04-25T04:35:28.3781946Z 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-04-25T04:35:28.3787867Z 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-04-25T04:35:28.3794067Z 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-04-25T04:35:28.3800011Z 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-04-25T04:35:28.3806163Z 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-04-25T04:35:28.3812369Z 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-04-25T04:35:28.3818561Z 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-04-25T04:35:28.3824748Z 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-04-25T04:35:28.3838512Z 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-04-25T04:35:28.3844475Z 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-04-25T04:35:28.3850846Z 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-04-25T04:35:28.3857238Z 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-04-25T04:35:28.3863208Z 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-04-25T04:35:28.3869236Z 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-04-25T04:35:28.3875295Z 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-04-25T04:35:28.3881910Z 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-04-25T04:35:28.3887877Z 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-04-25T04:35:28.3893754Z 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-04-25T04:35:28.3899664Z 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-04-25T04:35:28.3905802Z 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-04-25T04:35:28.3912081Z 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-04-25T04:35:28.3918322Z 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-04-25T04:35:28.3924410Z 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-04-25T04:35:28.3930215Z 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-04-25T04:35:28.3936356Z 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-04-25T04:35:28.3942588Z 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-04-25T04:35:28.3949014Z 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-04-25T04:35:28.3955579Z 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-04-25T04:35:28.3962115Z 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-04-25T04:35:28.3980695Z 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-04-25T04:35:28.3986526Z 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-04-25T04:35:28.3992455Z 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-04-25T04:35:28.3998817Z 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-04-25T04:35:28.4005145Z 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-04-25T04:35:28.4011376Z 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-04-25T04:35:28.4017107Z 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-04-25T04:35:28.4023921Z 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-04-25T04:35:28.4030670Z 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-04-25T04:35:28.4036824Z 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-04-25T04:35:28.4077788Z 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-04-25T04:35:28.4083973Z 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-04-25T04:35:28.4090072Z 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-04-25T04:35:28.4095738Z 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-04-25T04:35:28.4101529Z 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-04-25T04:35:28.4107512Z 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-04-25T04:35:28.4113747Z 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-04-25T04:35:28.4119511Z 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-04-25T04:35:28.4125258Z 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-04-25T04:35:28.4131120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4137288Z 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-04-25T04:35:28.4142826Z 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-04-25T04:35:28.4192908Z 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-04-25T04:35:28.4198819Z 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-04-25T04:35:28.4204698Z 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-04-25T04:35:28.4210690Z 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-04-25T04:35:28.4216492Z 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-04-25T04:35:28.4222355Z 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-04-25T04:35:28.4229280Z 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-04-25T04:35:28.4235186Z 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-04-25T04:35:28.4241096Z 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-04-25T04:35:28.4247166Z 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-04-25T04:35:28.4295787Z 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-04-25T04:35:28.4301998Z 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-04-25T04:35:28.4308537Z 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-04-25T04:35:28.4314702Z 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-04-25T04:35:28.4321004Z 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-04-25T04:35:28.4328327Z 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-04-25T04:35:28.4334456Z 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-04-25T04:35:28.4342458Z 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-04-25T04:35:28.4348241Z 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-04-25T04:35:28.4354408Z 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-04-25T04:35:28.4360543Z 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-04-25T04:35:28.4366511Z 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-04-25T04:35:28.4372590Z 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-04-25T04:35:28.4378755Z 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-04-25T04:35:28.4385180Z 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-04-25T04:35:28.4391447Z 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-04-25T04:35:28.4397378Z 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-04-25T04:35:28.4403261Z 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-04-25T04:35:28.4409976Z 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-04-25T04:35:28.4416227Z 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-04-25T04:35:28.4422288Z 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-04-25T04:35:28.4428158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4434303Z 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-04-25T04:35:28.4440557Z 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-04-25T04:35:28.4446411Z 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-04-25T04:35:28.4452699Z 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-04-25T04:35:28.4458908Z 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-04-25T04:35:28.4464972Z 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-04-25T04:35:28.4470674Z 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-04-25T04:35:28.4476929Z 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-04-25T04:35:28.4482905Z 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-04-25T04:35:28.4489279Z 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-04-25T04:35:28.4494990Z 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-04-25T04:35:28.4500809Z 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-04-25T04:35:28.4506595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4512564Z 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-04-25T04:35:28.4518907Z 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-04-25T04:35:28.4525337Z 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-04-25T04:35:28.4540439Z 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-04-25T04:35:28.4546575Z 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-04-25T04:35:28.4552645Z 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-04-25T04:35:28.4558663Z 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-04-25T04:35:28.4564412Z 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-04-25T04:35:28.4570199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4575962Z 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-04-25T04:35:28.4581527Z 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-04-25T04:35:28.4587313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4592913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4598550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4603890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4609435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4615000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4621001Z 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-04-25T04:35:28.4626462Z 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-04-25T04:35:28.4632235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4637927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4643500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.4649269Z 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-04-25T04:35:28.4654894Z 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-04-25T04:35:28.4660799Z 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-04-25T04:35:28.4666408Z 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-04-25T04:35:28.4672674Z 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-04-25T04:35:28.4679335Z 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-04-25T04:35:28.4685154Z 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-04-25T04:35:28.4690838Z 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-04-25T04:35:28.4696769Z 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-04-25T04:35:28.4702521Z 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-04-25T04:35:28.4708516Z 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-04-25T04:35:28.4714734Z 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-04-25T04:35:28.4720632Z 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-04-25T04:35:28.4726250Z 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-04-25T04:35:28.4731912Z 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-04-25T04:35:28.4738301Z 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-04-25T04:35:28.4744412Z 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-04-25T04:35:28.4750306Z 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-04-25T04:35:28.4756123Z 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-04-25T04:35:28.4762328Z 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-04-25T04:35:28.4768877Z 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-04-25T04:35:28.4775129Z 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-04-25T04:35:28.4781126Z 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-04-25T04:35:28.4787605Z 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-04-25T04:35:28.4793908Z 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-04-25T04:35:28.4799991Z 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-04-25T04:35:28.4805938Z 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-04-25T04:35:28.4812316Z 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-04-25T04:35:28.4818114Z 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-04-25T04:35:28.4824318Z 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-04-25T04:35:28.4830607Z 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-04-25T04:35:28.4836605Z 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-04-25T04:35:28.4842332Z 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-04-25T04:35:28.4848428Z 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-04-25T04:35:28.4854476Z 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-04-25T04:35:28.4860450Z 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-04-25T04:35:28.4866998Z 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-04-25T04:35:28.4872741Z 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-04-25T04:35:28.4878925Z 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-04-25T04:35:28.4885021Z 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-04-25T04:35:28.4891055Z 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-04-25T04:35:28.4897649Z 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-04-25T04:35:28.4903187Z 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-04-25T04:35:28.4909216Z 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-04-25T04:35:28.4915413Z 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-04-25T04:35:28.4921205Z 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-04-25T04:35:28.4932766Z 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-04-25T04:35:28.4938498Z 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-04-25T04:35:28.4944293Z 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-04-25T04:35:28.4950215Z 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-04-25T04:35:28.4956138Z 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-04-25T04:35:28.4962138Z 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-04-25T04:35:28.4968128Z 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-04-25T04:35:28.4973947Z 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-04-25T04:35:28.4980140Z 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-04-25T04:35:28.4986008Z 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-04-25T04:35:28.4991636Z 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-04-25T04:35:28.4997670Z 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-04-25T04:35:28.5004218Z 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-04-25T04:35:28.5009950Z 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-04-25T04:35:28.5016102Z 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-04-25T04:35:28.5021875Z 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-04-25T04:35:28.5028287Z 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-04-25T04:35:28.5034317Z 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-04-25T04:35:28.5040128Z 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-04-25T04:35:28.5045921Z 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-04-25T04:35:28.5052036Z 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-04-25T04:35:28.5057854Z 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-04-25T04:35:28.5063662Z 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-04-25T04:35:28.5069705Z 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-04-25T04:35:28.5076100Z 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-04-25T04:35:28.5081847Z 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-04-25T04:35:28.5087592Z 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-04-25T04:35:28.5093741Z 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-04-25T04:35:28.5099943Z 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-04-25T04:35:28.5106024Z 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-04-25T04:35:28.5111930Z 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-04-25T04:35:28.5117908Z 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-04-25T04:35:28.5123686Z 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-04-25T04:35:28.5130277Z 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-04-25T04:35:28.5136382Z 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-04-25T04:35:28.5142217Z 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-04-25T04:35:28.5148022Z 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-04-25T04:35:28.5154057Z 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-04-25T04:35:28.5159871Z 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-04-25T04:35:28.5165789Z 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-04-25T04:35:28.5172188Z 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-04-25T04:35:28.5178047Z 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-04-25T04:35:28.5184030Z 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-04-25T04:35:28.5190739Z 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-04-25T04:35:28.5197426Z 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-04-25T04:35:28.5203552Z 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-04-25T04:35:28.5209571Z 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-04-25T04:35:28.5215693Z 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-04-25T04:35:28.5222311Z 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-04-25T04:35:28.5228461Z 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-04-25T04:35:28.5234683Z 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-04-25T04:35:28.5240795Z 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-04-25T04:35:28.5246679Z 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-04-25T04:35:28.5252820Z 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-04-25T04:35:28.5258797Z 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-04-25T04:35:28.5265210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5271073Z 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-04-25T04:35:28.5276950Z 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-04-25T04:35:28.5283252Z 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-04-25T04:35:28.5289020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5294654Z 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-04-25T04:35:28.5300323Z 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-04-25T04:35:28.5305833Z 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-04-25T04:35:28.5311549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5318048Z 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-04-25T04:35:28.5323686Z 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-04-25T04:35:28.5330189Z 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-04-25T04:35:28.5335735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5341329Z 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-04-25T04:35:28.5347406Z 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-04-25T04:35:28.5353159Z 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-04-25T04:35:28.5359321Z 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-04-25T04:35:28.5365432Z 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-04-25T04:35:28.5371471Z 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-04-25T04:35:28.5377514Z 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-04-25T04:35:28.5383855Z 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-04-25T04:35:28.5389719Z 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-04-25T04:35:28.5396060Z 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-04-25T04:35:28.5402162Z 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-04-25T04:35:28.5408020Z 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-04-25T04:35:28.5414319Z 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-04-25T04:35:28.5420185Z 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-04-25T04:35:28.5426006Z 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-04-25T04:35:28.5432291Z 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-04-25T04:35:28.5438316Z 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-04-25T04:35:28.5444236Z 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-04-25T04:35:28.5450128Z 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-04-25T04:35:28.5456257Z 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-04-25T04:35:28.5462520Z 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-04-25T04:35:28.5468744Z 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-04-25T04:35:28.5475255Z 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-04-25T04:35:28.5481424Z 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-04-25T04:35:28.5487334Z 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-04-25T04:35:28.5492954Z 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-04-25T04:35:28.5506148Z 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-04-25T04:35:28.5507186Z 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-04-25T04:35:28.5512573Z 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-04-25T04:35:28.5518376Z 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-04-25T04:35:28.5524312Z 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-04-25T04:35:28.5530510Z 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-04-25T04:35:28.5536143Z 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-04-25T04:35:28.5542011Z 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-04-25T04:35:28.5548048Z 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-04-25T04:35:28.5554100Z 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-04-25T04:35:28.5560370Z 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-04-25T04:35:28.5566050Z 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-04-25T04:35:28.5572141Z 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-04-25T04:35:28.5577991Z 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-04-25T04:35:28.5584062Z 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-04-25T04:35:28.5589966Z 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-04-25T04:35:28.5596128Z 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-04-25T04:35:28.5602156Z 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-04-25T04:35:28.5608218Z 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-04-25T04:35:28.5613783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5619876Z 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-04-25T04:35:28.5626307Z 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-04-25T04:35:28.5631541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5637199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5642929Z 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-04-25T04:35:28.5649361Z 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-04-25T04:35:28.5655270Z 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-04-25T04:35:28.5661409Z 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-04-25T04:35:28.5667152Z 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-04-25T04:35:28.5673385Z 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-04-25T04:35:28.5679673Z 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-04-25T04:35:28.5685638Z 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-04-25T04:35:28.5691520Z 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-04-25T04:35:28.5697637Z 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-04-25T04:35:28.5703455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5709083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5714897Z 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-04-25T04:35:28.5750895Z 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-04-25T04:35:28.5756801Z 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-04-25T04:35:28.5762801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5768716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5774703Z 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-04-25T04:35:28.5780375Z 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-04-25T04:35:28.5786304Z 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-04-25T04:35:28.5792067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5797958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5803997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5810334Z 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-04-25T04:35:28.5815967Z 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-04-25T04:35:28.5821611Z 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-04-25T04:35:28.5827233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5833378Z 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-04-25T04:35:28.5839169Z 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-04-25T04:35:28.5844640Z 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-04-25T04:35:28.5850777Z 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-04-25T04:35:28.5857551Z 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-04-25T04:35:28.5863069Z 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-04-25T04:35:28.5868967Z 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-04-25T04:35:28.5875104Z 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-04-25T04:35:28.5886070Z 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-04-25T04:35:28.5892057Z 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-04-25T04:35:28.5898299Z 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-04-25T04:35:28.5904574Z 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-04-25T04:35:28.5911091Z 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-04-25T04:35:28.5917280Z 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-04-25T04:35:28.5923186Z 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-04-25T04:35:28.5929669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.5935753Z 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-04-25T04:35:28.5941803Z 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-04-25T04:35:28.5947718Z 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-04-25T04:35:28.5954276Z 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-04-25T04:35:28.5959950Z 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-04-25T04:35:28.5993840Z 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-04-25T04:35:28.6000057Z 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-04-25T04:35:28.6006094Z 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-04-25T04:35:28.6011972Z 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-04-25T04:35:28.6018523Z 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-04-25T04:35:28.6024516Z 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-04-25T04:35:28.6030773Z 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-04-25T04:35:28.6037397Z 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-04-25T04:35:28.6043418Z 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-04-25T04:35:28.6049661Z 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-04-25T04:35:28.6055473Z 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-04-25T04:35:28.6061993Z 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-04-25T04:35:28.6067969Z 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-04-25T04:35:28.6074650Z 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-04-25T04:35:28.6081088Z 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-04-25T04:35:28.6087736Z 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-04-25T04:35:28.6094392Z 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-04-25T04:35:28.6101654Z 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-04-25T04:35:28.6107698Z 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-04-25T04:35:28.6113808Z 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-04-25T04:35:28.6120092Z 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-04-25T04:35:28.6126510Z 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-04-25T04:35:28.6132631Z 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-04-25T04:35:28.6139063Z 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-04-25T04:35:28.6145594Z 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-04-25T04:35:28.6152017Z 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-04-25T04:35:28.6158097Z 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-04-25T04:35:28.6164345Z 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-04-25T04:35:28.6170470Z 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-04-25T04:35:28.6176573Z 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-04-25T04:35:28.6182755Z 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-04-25T04:35:28.6189158Z 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-04-25T04:35:28.6195262Z 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-04-25T04:35:28.6201462Z 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-04-25T04:35:28.6208209Z 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-04-25T04:35:28.6214225Z 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-04-25T04:35:28.6220318Z 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-04-25T04:35:28.6226480Z 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-04-25T04:35:28.6232647Z 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-04-25T04:35:28.6238722Z 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-04-25T04:35:28.6244585Z 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-04-25T04:35:28.6251543Z 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-04-25T04:35:28.6257406Z 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-04-25T04:35:28.6263441Z 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-04-25T04:35:28.6269553Z 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-04-25T04:35:28.6275543Z 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-04-25T04:35:28.6281610Z 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-04-25T04:35:28.6287565Z 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-04-25T04:35:28.6293512Z 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-04-25T04:35:28.6299567Z 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-04-25T04:35:28.6305581Z 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-04-25T04:35:28.6311742Z 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-04-25T04:35:28.6317530Z 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-04-25T04:35:28.6323923Z 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-04-25T04:35:28.6329759Z 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-04-25T04:35:28.6335756Z 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-04-25T04:35:28.6341974Z 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-04-25T04:35:28.6347698Z 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-04-25T04:35:28.6354100Z 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-04-25T04:35:28.6360313Z 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-04-25T04:35:28.6365986Z 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-04-25T04:35:28.6371814Z 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-04-25T04:35:28.6377846Z 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-04-25T04:35:28.6383730Z 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-04-25T04:35:28.6389817Z 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-04-25T04:35:28.6395846Z 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-04-25T04:35:28.6401880Z 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-04-25T04:35:28.6407960Z 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-04-25T04:35:28.6414306Z 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-04-25T04:35:28.6420414Z 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-04-25T04:35:28.6426469Z 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-04-25T04:35:28.6432430Z 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-04-25T04:35:28.6438376Z 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-04-25T04:35:28.6444445Z 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-04-25T04:35:28.6450725Z 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-04-25T04:35:28.6456860Z 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-04-25T04:35:28.6462845Z 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-04-25T04:35:28.6469428Z 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-04-25T04:35:28.6475634Z 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-04-25T04:35:28.6482158Z 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-04-25T04:35:28.6488087Z 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-04-25T04:35:28.6494307Z 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-04-25T04:35:28.6500017Z 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-04-25T04:35:28.6505908Z 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-04-25T04:35:28.6511631Z 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-04-25T04:35:28.6517741Z 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-04-25T04:35:28.6523413Z 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-04-25T04:35:28.6529193Z 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-04-25T04:35:28.6535232Z 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-04-25T04:35:28.6541763Z 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-04-25T04:35:28.6547641Z 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-04-25T04:35:28.6554046Z 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-04-25T04:35:28.6560075Z 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-04-25T04:35:28.6565747Z 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-04-25T04:35:28.6571645Z 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-04-25T04:35:28.6577637Z 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-04-25T04:35:28.6583854Z 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-04-25T04:35:28.6590588Z 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-04-25T04:35:28.6596519Z 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-04-25T04:35:28.6602403Z 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-04-25T04:35:28.6608251Z 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-04-25T04:35:28.6614530Z 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-04-25T04:35:28.6620471Z 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-04-25T04:35:28.6626539Z 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-04-25T04:35:28.6632701Z 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-04-25T04:35:28.6638997Z 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-04-25T04:35:28.6644980Z 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-04-25T04:35:28.6651468Z 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-04-25T04:35:28.6657805Z 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-04-25T04:35:28.6663858Z 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-04-25T04:35:28.6669542Z 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-04-25T04:35:28.6675804Z 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-04-25T04:35:28.6682040Z 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-04-25T04:35:28.6688490Z 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-04-25T04:35:28.6695186Z 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-04-25T04:35:28.6701287Z 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-04-25T04:35:28.6707295Z 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-04-25T04:35:28.6713671Z 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-04-25T04:35:28.6719996Z 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-04-25T04:35:28.6725776Z 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-04-25T04:35:28.6731361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6736640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6742848Z 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-04-25T04:35:28.6748866Z 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-04-25T04:35:28.6754691Z 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-04-25T04:35:28.6760313Z 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-04-25T04:35:28.6766034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6771673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6777556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6782932Z 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-04-25T04:35:28.6788425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6793945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6799858Z 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-04-25T04:35:28.6805620Z 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-04-25T04:35:28.6811252Z 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-04-25T04:35:28.6817590Z 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-04-25T04:35:28.6823762Z 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-04-25T04:35:28.6829841Z 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-04-25T04:35:28.6835941Z 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-04-25T04:35:28.6842111Z 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-04-25T04:35:28.6848190Z 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-04-25T04:35:28.6854125Z 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-04-25T04:35:28.6859862Z 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-04-25T04:35:28.6866215Z 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-04-25T04:35:28.6872037Z 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-04-25T04:35:28.6877878Z 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-04-25T04:35:28.6883324Z 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-04-25T04:35:28.6889346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-04-25T04:35:28.6895300Z 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-04-25T04:35:28.6901318Z 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-04-25T04:35:28.6907701Z 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-04-25T04:35:28.6913950Z 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-04-25T04:35:28.6919902Z 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-04-25T04:35:28.6925951Z 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-04-25T04:35:28.6931846Z 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-04-25T04:35:28.6938202Z 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-04-25T04:35:28.6944328Z 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-04-25T04:35:28.6950413Z 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-04-25T04:35:28.6956328Z 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-04-25T04:35:28.6962319Z 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-04-25T04:35:28.6968753Z 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-04-25T04:35:28.6974507Z 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-04-25T04:35:28.6980310Z 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-04-25T04:35:28.6986470Z 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-04-25T04:35:28.6992388Z 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-04-25T04:35:28.6998253Z 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-04-25T04:35:28.7004158Z 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-04-25T04:35:28.7010229Z 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-04-25T04:35:28.7016203Z 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-04-25T04:35:28.7022066Z 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-04-25T04:35:28.7027723Z 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-04-25T04:35:28.7033782Z 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-04-25T04:35:28.7040077Z 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-04-25T04:35:28.7046173Z 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-04-25T04:35:28.7052401Z 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-04-25T04:35:28.7066043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7071229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7076924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7082199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7087467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7093594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7098957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7104135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7110494Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-04-25T04:35:28.7114059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-04-25T04:35:28.7119412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-04-25T04:35:28.7124988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7131169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7157936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7173373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7179268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7185231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7190289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7195800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7201337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7206852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7218894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7224621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7230148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7236054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7241772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7247121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7252829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7258225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7263007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7268793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7275352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7281850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7287668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7293545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7298997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7304757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7310040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7316317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7322434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7327721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7346620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7352140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7357471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7362962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7368129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7425214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7430647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:35:28.7436921Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-04-25T04:35:28.7440437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7446478Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-04-25T04:35:28.7449693Z 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-04-25T04:35:28.7455009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7459816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7472576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7478004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7483257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-04-25T04:35:28.7495506Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-04-25T04:35:28.7499468Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-04-25T04:35:28.7503129Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7508026Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7513778Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7523893Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7540801Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7546666Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7552187Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7558359Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7563418Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7569217Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7574686Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7580002Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7585393Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7590937Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7596526Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7602119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7607617Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7613859Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7620227Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7625671Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7643083Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7649046Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7654988Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-04-25T04:35:28.7658416Z 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-04-25T04:35:28.7663952Z 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-04-25T04:35:28.7669647Z 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-04-25T04:35:28.7676246Z 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-04-25T04:35:28.7693902Z 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-04-25T04:35:28.7699491Z 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-04-25T04:35:28.7704777Z 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-04-25T04:35:28.7710430Z 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-04-25T04:35:28.7716052Z 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-04-25T04:35:28.7722115Z 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-04-25T04:35:28.7727532Z 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-04-25T04:35:28.7733029Z 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-04-25T04:35:28.7739016Z 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-04-25T04:35:28.7744938Z 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-04-25T04:35:28.7750307Z 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-04-25T04:35:28.7755966Z 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-04-25T04:35:28.7761441Z 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-04-25T04:35:28.7766890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7772266Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7777522Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7782913Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7788012Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7793541Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7798921Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7804163Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7809579Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7814781Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7831540Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7837414Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7842883Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7848577Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7854129Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7859361Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7864906Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7870123Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7875771Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7881057Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7886520Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7891962Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7909265Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7916818Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7922764Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7928137Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7933895Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-04-25T04:35:28.7940196Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-04-25T04:35:28.7943533Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7948920Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7954860Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7961403Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7979107Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7984671Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7990056Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.7995753Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8001298Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8007154Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8012463Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8018212Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8023880Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8029636Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-04-25T04:35:28.8035535Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-04-25T04:35:28.8038763Z 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-04-25T04:35:28.8044864Z 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-04-25T04:35:28.8050486Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-04-25T04:35:28.8054242Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-04-25T04:35:28.8060199Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-04-25T04:35:28.8065904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-04-25T04:35:28.8072547Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-04-25T04:35:28.8075810Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8081248Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8087022Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8092502Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8098046Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8115992Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-04-25T04:35:28.8121765Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-04-25T04:35:28.8125093Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-04-25T04:35:28.8130745Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-04-25T04:35:28.8136431Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-04-25T04:35:28.8139802Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-04-25T04:35:28.8143137Z 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-04-25T04:35:28.8149718Z 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-04-25T04:35:28.8156280Z 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-04-25T04:35:28.8162708Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-04-25T04:35:28.8165935Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8171538Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8177075Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8187271Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8201041Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8206226Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8211930Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8217305Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8223206Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8228757Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8234119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8239784Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8245875Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8251031Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8256321Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8261447Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8267125Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8273023Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8278677Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8283938Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8289455Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8294913Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8300480Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8305901Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8322751Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8328237Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8333418Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8346154Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8351904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8357493Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8363103Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8368428Z 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-04-25T04:35:28.8379179Z 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-04-25T04:35:28.8384820Z 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-04-25T04:35:28.8390354Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8407105Z 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-04-25T04:35:28.8412947Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8418296Z 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-04-25T04:35:28.8424413Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8429895Z 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-04-25T04:35:28.8436013Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8441722Z 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-04-25T04:35:28.8447307Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8453361Z 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-04-25T04:35:28.8470120Z 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-04-25T04:35:28.8475904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8481252Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8486922Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8492867Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8498432Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8504220Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8509731Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8515558Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8521411Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8527594Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8533166Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8538500Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8555914Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8562654Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8568512Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8574626Z 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-04-25T04:35:28.8580372Z 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-04-25T04:35:28.8586361Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8592145Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8597828Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8603119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8608821Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8614083Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8619628Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8647680Z 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-04-25T04:35:28.8654551Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8659949Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8665357Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8670662Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8676017Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8681120Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8686225Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8691763Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8696851Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8701851Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8707474Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8724531Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8730026Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8735345Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8740713Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8747072Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8752888Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8758749Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8764147Z 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-04-25T04:35:28.8769648Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8775168Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8780736Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8797000Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8803059Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8809235Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8814604Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8820074Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8825516Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8831287Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8836633Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8841779Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8847142Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8852771Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8858354Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8864522Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8870224Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8875576Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8880778Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8886387Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8891724Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8897169Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8902697Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-04-25T04:35:28.8908654Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-04-25T04:35:28.8923138Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-04-25T04:35:28.8926335Z 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-04-25T04:35:28.8931890Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-04-25T04:35:28.8935221Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-04-25T04:35:28.8938692Z 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-04-25T04:35:28.8943893Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8949715Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8955054Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8971951Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8977448Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8983223Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-04-25T04:35:28.8989192Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-04-25T04:35:28.8992549Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-04-25T04:35:28.8995981Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-04-25T04:35:28.9001288Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-04-25T04:35:28.9006421Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-04-25T04:35:28.9012087Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-04-25T04:35:28.9015627Z 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-04-25T04:35:28.9021169Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-04-25T04:35:28.9026558Z 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-04-25T04:35:28.9032483Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-04-25T04:35:28.9035853Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-04-25T04:35:28.9042476Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-04-25T04:35:28.9047852Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-04-25T04:35:28.9053804Z 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-04-25T04:35:28.9099052Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-04-25T04:35:28.9104668Z 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-04-25T04:35:28.9110292Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-04-25T04:35:28.9116220Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-04-25T04:35:28.9119438Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-04-25T04:35:28.9125050Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-04-25T04:35:28.9130881Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-04-25T04:35:28.9136901Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-04-25T04:35:28.9151359Z 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-04-25T04:35:28.9156940Z 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-04-25T04:35:28.9163093Z 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-04-25T04:35:28.9179771Z 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-04-25T04:35:28.9185560Z 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-04-25T04:35:28.9191281Z 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-04-25T04:35:28.9196553Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9202654Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9207990Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9213309Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9228980Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9234316Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9239630Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9245281Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9250599Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9255965Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9261920Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9267406Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9273582Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9279012Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9284532Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9290074Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9296278Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-04-25T04:35:28.9299621Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9305094Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9311252Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9317006Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9332859Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9338288Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9344086Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9349567Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9355138Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9360699Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9366053Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9371476Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9377205Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9382772Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9388295Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9394797Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9400605Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9406266Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9411684Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9427569Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9433075Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9438486Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9444642Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9450186Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:35:28.9455977Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-04-25T04:35:28.9459149Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9465208Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9472018Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9478683Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9484962Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9490735Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9495764Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9513133Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9520185Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9526130Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9531368Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9539854Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9545695Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9551341Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:35:28.9557009Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-04-25T04:35:28.9560499Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:35:28.9565754Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:35:28.9571628Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:35:28.9577097Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9582171Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:28.9588525Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-04-25T04:35:28.9592235Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-04-25T04:35:28.9595585Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9601222Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9607039Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9613188Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9619019Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9634548Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9640638Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-04-25T04:35:28.9643974Z 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-04-25T04:35:28.9649650Z 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-04-25T04:35:28.9655843Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-04-25T04:35:28.9659239Z 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-04-25T04:35:28.9665137Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:35:28.9668545Z 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-04-25T04:35:28.9674291Z 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-04-25T04:35:28.9679737Z 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-04-25T04:35:28.9695635Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-04-25T04:35:28.9699141Z 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-04-25T04:35:28.9704656Z 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-04-25T04:35:28.9710309Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-04-25T04:35:28.9714035Z 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-04-25T04:35:28.9719585Z 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-04-25T04:35:28.9725755Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:35:28.9729607Z 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-04-25T04:35:28.9734924Z 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-04-25T04:35:28.9740457Z 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-04-25T04:35:28.9746730Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-04-25T04:35:28.9750092Z 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-04-25T04:35:28.9755813Z 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-04-25T04:35:28.9761322Z 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-04-25T04:35:28.9768081Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-04-25T04:35:28.9771847Z 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-04-25T04:35:28.9777950Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-04-25T04:35:28.9781271Z 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-04-25T04:35:28.9786773Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9794180Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9805862Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9811826Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9817404Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9823017Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9829286Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9835754Z 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-04-25T04:35:28.9841302Z 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-04-25T04:35:28.9847178Z 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-04-25T04:35:28.9853150Z 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-04-25T04:35:28.9858841Z 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-04-25T04:35:28.9865679Z 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-04-25T04:35:28.9881489Z 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-04-25T04:35:28.9888070Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9893697Z 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-04-25T04:35:28.9899440Z 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-04-25T04:35:28.9905933Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-04-25T04:35:28.9909482Z 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-04-25T04:35:28.9915967Z 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-04-25T04:35:28.9921705Z 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-04-25T04:35:28.9927023Z 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-04-25T04:35:28.9932442Z 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-04-25T04:35:28.9947870Z 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-04-25T04:35:28.9953958Z 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-04-25T04:35:28.9960268Z 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-04-25T04:35:28.9966372Z 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-04-25T04:35:28.9972429Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9978486Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9984927Z 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-04-25T04:35:28.9991292Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:28.9997572Z 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-04-25T04:35:29.0003242Z 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-04-25T04:35:29.0020120Z 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-04-25T04:35:29.0026012Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0032284Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0038442Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0043756Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0049385Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0055708Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0061364Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0067244Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0072635Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0079253Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0085152Z 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-04-25T04:35:29.0100744Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0107619Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-04-25T04:35:29.0111103Z 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-04-25T04:35:29.0117078Z 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-04-25T04:35:29.0123523Z 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-04-25T04:35:29.0129427Z 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-04-25T04:35:29.0135186Z 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-04-25T04:35:29.0141208Z 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-04-25T04:35:29.0158053Z 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-04-25T04:35:29.0163764Z 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-04-25T04:35:29.0169056Z 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-04-25T04:35:29.0175238Z 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-04-25T04:35:29.0180673Z 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-04-25T04:35:29.0187108Z 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-04-25T04:35:29.0191726Z 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-04-25T04:35:29.0196950Z 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-04-25T04:35:29.0202322Z 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-04-25T04:35:29.0207491Z 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-04-25T04:35:29.0213860Z 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-04-25T04:35:29.0219977Z 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-04-25T04:35:29.0225510Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0231763Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0237154Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0244114Z 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-04-25T04:35:29.0250185Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-04-25T04:35:29.0253782Z 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-04-25T04:35:29.0259860Z 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-04-25T04:35:29.0265241Z 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-04-25T04:35:29.0281027Z 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-04-25T04:35:29.0286556Z 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-04-25T04:35:29.0292697Z 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-04-25T04:35:29.0298178Z 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-04-25T04:35:29.0303607Z 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-04-25T04:35:29.0309330Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0315670Z 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-04-25T04:35:29.0322269Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-04-25T04:35:29.0339591Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-04-25T04:35:29.0342697Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0348166Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0353916Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0369433Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0375015Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0380260Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0385496Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0390796Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0396723Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0402462Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0408016Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0413373Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0418952Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0424291Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0429902Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0435129Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:35:29.0440770Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:29.0456854Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-1.8 2025-04-25T04:35:29.0460813Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8\mimalloc-new-delete.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-1.8 2025-04-25T04:35:29.0466853Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8\mimalloc-override.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-1.8 2025-04-25T04:35:29.0473343Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8\mimalloc.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-1.8 2025-04-25T04:35:29.0491565Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-04-25T04:35:29.0495332Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0498481Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0506218Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0519070Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0524667Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0533113Z 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-04-25T04:35:29.0546182Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0551821Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0557481Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0563474Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0570071Z 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-04-25T04:35:29.0576067Z 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-04-25T04:35:29.0581727Z 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-04-25T04:35:29.0587615Z 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-04-25T04:35:29.0593381Z 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-04-25T04:35:29.0599512Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0605455Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0611411Z 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-04-25T04:35:29.0616941Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0622826Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0628418Z 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-04-25T04:35:29.0634295Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0649941Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0655262Z 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-04-25T04:35:29.0660737Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0667424Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0673074Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0679082Z 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-04-25T04:35:29.0684621Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-04-25T04:35:29.0689962Z 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-04-25T04:35:29.0695463Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:29.0701322Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:29.0708222Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-04-25T04:35:29.0711495Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0717661Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0722670Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0728859Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0734056Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0739025Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0756048Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-04-25T04:35:29.0794329Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0800142Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0806794Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0812053Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0817536Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0829509Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0835982Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0843764Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-04-25T04:35:29.0848316Z 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-04-25T04:35:29.0855184Z 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-04-25T04:35:29.0861163Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-04-25T04:35:29.0864369Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-04-25T04:35:29.0869927Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-04-25T04:35:29.0875945Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-04-25T04:35:29.0882056Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0886983Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0892176Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0897337Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0903131Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0908371Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0913555Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0918702Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0925239Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0930662Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0936030Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0942820Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0949487Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-04-25T04:35:29.0953002Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-04-25T04:35:29.0958450Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0963593Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0969333Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0974941Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:35:29.0981224Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:29.0990047Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-04-25T04:35:29.0994122Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-04-25T04:35:29.0997613Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-04-25T04:35:29.1000946Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-04-25T04:35:29.1004759Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-04-25T04:35:29.1008046Z 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-04-25T04:35:29.1013212Z 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-04-25T04:35:29.1018490Z 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-04-25T04:35:29.1023629Z 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-04-25T04:35:29.1029375Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-04-25T04:35:29.1033152Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-04-25T04:35:29.1036704Z 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-04-25T04:35:29.1042264Z 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-04-25T04:35:29.1047620Z 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-04-25T04:35:29.1053156Z 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-04-25T04:35:29.1059119Z 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-04-25T04:35:29.1065134Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-04-25T04:35:29.1079618Z 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-04-25T04:35:29.1085867Z 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-04-25T04:35:29.1091790Z 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-04-25T04:35:29.1097758Z 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-04-25T04:35:29.1103211Z 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-04-25T04:35:29.1108463Z 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-04-25T04:35:29.1113841Z 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-04-25T04:35:29.1129228Z 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-04-25T04:35:29.1134765Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-04-25T04:35:29.1138181Z 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-04-25T04:35:29.1144179Z 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-04-25T04:35:29.1149515Z 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-04-25T04:35:29.1154837Z 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-04-25T04:35:29.1160167Z 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-04-25T04:35:29.1166556Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-04-25T04:35:29.1169874Z 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-04-25T04:35:29.1175487Z 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-04-25T04:35:29.1180501Z 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-04-25T04:35:29.1186042Z 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-04-25T04:35:29.1191555Z 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-04-25T04:35:29.1207271Z 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-04-25T04:35:29.1212624Z 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-04-25T04:35:29.1218148Z 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-04-25T04:35:29.1223706Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-04-25T04:35:29.1227119Z 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-04-25T04:35:29.1232385Z 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-04-25T04:35:29.1237795Z 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-04-25T04:35:29.1243062Z 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-04-25T04:35:29.1248177Z 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-04-25T04:35:29.1253525Z 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-04-25T04:35:29.1258780Z 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-04-25T04:35:29.1264237Z 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-04-25T04:35:29.1269529Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-04-25T04:35:29.1272801Z 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-04-25T04:35:29.1278601Z 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-04-25T04:35:29.1283968Z 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-04-25T04:35:29.1299659Z 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-04-25T04:35:29.1305334Z 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-04-25T04:35:29.1310613Z 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-04-25T04:35:29.1316071Z 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-04-25T04:35:29.1321175Z 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-04-25T04:35:29.1326253Z 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-04-25T04:35:29.1332037Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-04-25T04:35:29.1335372Z 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-04-25T04:35:29.1341104Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-04-25T04:35:29.1344553Z 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-04-25T04:35:29.1350768Z 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-04-25T04:35:29.1356185Z 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-04-25T04:35:29.1361476Z 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-04-25T04:35:29.1377397Z 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-04-25T04:35:29.1382784Z 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-04-25T04:35:29.1388494Z 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-04-25T04:35:29.1393829Z 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-04-25T04:35:29.1399596Z 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-04-25T04:35:29.1404980Z 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-04-25T04:35:29.1410917Z 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-04-25T04:35:29.1417220Z 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-04-25T04:35:29.1422902Z 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-04-25T04:35:29.1429158Z 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-04-25T04:35:29.1435665Z 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-04-25T04:35:29.1441756Z 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-04-25T04:35:29.1447418Z 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-04-25T04:35:29.1453170Z 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-04-25T04:35:29.1467971Z 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-04-25T04:35:29.1474388Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-04-25T04:35:29.1478001Z 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-04-25T04:35:29.1484123Z 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-04-25T04:35:29.1489500Z 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-04-25T04:35:29.1494962Z 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-04-25T04:35:29.1500934Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-04-25T04:35:29.1514564Z 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-04-25T04:35:29.1520181Z 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-04-25T04:35:29.1526071Z 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-04-25T04:35:29.1531747Z 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-04-25T04:35:29.1547007Z 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-04-25T04:35:29.1553162Z 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-04-25T04:35:29.1558687Z 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-04-25T04:35:29.1564256Z 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-04-25T04:35:29.1570522Z 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-04-25T04:35:29.1576501Z 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-04-25T04:35:29.1582806Z 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-04-25T04:35:29.1588786Z 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-04-25T04:35:29.1594326Z 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-04-25T04:35:29.1599741Z 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-04-25T04:35:29.1605078Z 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-04-25T04:35:29.1610653Z 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-04-25T04:35:29.1616033Z 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-04-25T04:35:29.1621309Z 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-04-25T04:35:29.1634054Z 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-04-25T04:35:29.1639714Z 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-04-25T04:35:29.1645381Z 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-04-25T04:35:29.1650919Z 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-04-25T04:35:29.1656789Z 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-04-25T04:35:29.1662143Z 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-04-25T04:35:29.1667762Z 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-04-25T04:35:29.1673188Z 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-04-25T04:35:29.1679282Z 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-04-25T04:35:29.1684828Z 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-04-25T04:35:29.1690530Z 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-04-25T04:35:29.1695855Z 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-04-25T04:35:29.1701729Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-04-25T04:35:29.1705357Z 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-04-25T04:35:29.1711428Z 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-04-25T04:35:29.1717075Z 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-04-25T04:35:29.1722453Z 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-04-25T04:35:29.1727810Z 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-04-25T04:35:29.1743533Z 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-04-25T04:35:29.1748945Z 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-04-25T04:35:29.1754460Z 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-04-25T04:35:29.1760014Z 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-04-25T04:35:29.1765571Z 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-04-25T04:35:29.1771147Z 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-04-25T04:35:29.1777092Z 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-04-25T04:35:29.1782390Z 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-04-25T04:35:29.1788225Z 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-04-25T04:35:29.1793755Z 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-04-25T04:35:29.1799564Z 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-04-25T04:35:29.1804934Z 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-04-25T04:35:29.1810444Z 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-04-25T04:35:29.1816191Z 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-04-25T04:35:29.1822094Z 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-04-25T04:35:29.1827580Z 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-04-25T04:35:29.1832925Z 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-04-25T04:35:29.1839063Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-04-25T04:35:29.1842800Z 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-04-25T04:35:29.1848515Z 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-04-25T04:35:29.1854066Z 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-04-25T04:35:29.1859728Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-04-25T04:35:29.1863480Z 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-04-25T04:35:29.1869511Z 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-04-25T04:35:29.1875676Z 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-04-25T04:35:29.1881329Z 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-04-25T04:35:29.1886567Z 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-04-25T04:35:29.1892012Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-04-25T04:35:29.1895600Z 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-04-25T04:35:29.1900989Z 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-04-25T04:35:29.1906199Z 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-04-25T04:35:29.1911477Z 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-04-25T04:35:29.1917152Z 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-04-25T04:35:29.1922566Z 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-04-25T04:35:29.1938183Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-04-25T04:35:29.1942143Z 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-04-25T04:35:29.1948136Z 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-04-25T04:35:29.1954218Z 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-04-25T04:35:29.1969591Z 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-04-25T04:35:29.1975109Z 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-04-25T04:35:29.1980639Z 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-04-25T04:35:29.1985785Z 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-04-25T04:35:29.1992038Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-04-25T04:35:29.1995638Z 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-04-25T04:35:29.2000899Z 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-04-25T04:35:29.2006613Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-04-25T04:35:29.2010048Z 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-04-25T04:35:29.2015594Z 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-04-25T04:35:29.2021140Z 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-04-25T04:35:29.2026835Z 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-04-25T04:35:29.2042683Z 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-04-25T04:35:29.2048062Z 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-04-25T04:35:29.2053051Z 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-04-25T04:35:29.2058836Z 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-04-25T04:35:29.2064280Z 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-04-25T04:35:29.2069662Z 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-04-25T04:35:29.2075457Z 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-04-25T04:35:29.2080342Z 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-04-25T04:35:29.2086942Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-04-25T04:35:29.2090287Z 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-04-25T04:35:29.2095729Z 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-04-25T04:35:29.2101170Z 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-04-25T04:35:29.2106664Z 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-04-25T04:35:29.2121514Z 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-04-25T04:35:29.2127233Z 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-04-25T04:35:29.2132653Z 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-04-25T04:35:29.2138083Z 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-04-25T04:35:29.2144605Z 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-04-25T04:35:29.2151080Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-04-25T04:35:29.2154562Z 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-04-25T04:35:29.2159910Z 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-04-25T04:35:29.2165065Z 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-04-25T04:35:29.2170647Z 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-04-25T04:35:29.2185833Z 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-04-25T04:35:29.2191492Z 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-04-25T04:35:29.2197307Z 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-04-25T04:35:29.2204127Z 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-04-25T04:35:29.2210794Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-04-25T04:35:29.2214497Z 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-04-25T04:35:29.2225619Z 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-04-25T04:35:29.2231413Z 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-04-25T04:35:29.2247364Z 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-04-25T04:35:29.2252943Z 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-04-25T04:35:29.2259427Z 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-04-25T04:35:29.2265436Z 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-04-25T04:35:29.2270650Z 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-04-25T04:35:29.2276593Z 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-04-25T04:35:29.2281862Z 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-04-25T04:35:29.2287345Z 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-04-25T04:35:29.2292656Z 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-04-25T04:35:29.2297894Z 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-04-25T04:35:29.2303203Z 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-04-25T04:35:29.2308553Z 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-04-25T04:35:29.2323648Z 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-04-25T04:35:29.2329070Z 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-04-25T04:35:29.2334474Z 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-04-25T04:35:29.2339682Z 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-04-25T04:35:29.2344998Z 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-04-25T04:35:29.2350588Z 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-04-25T04:35:29.2355904Z 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-04-25T04:35:29.2395908Z 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-04-25T04:35:29.2401408Z 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-04-25T04:35:29.2411518Z 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-04-25T04:35:29.2416711Z 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-04-25T04:35:29.2422039Z 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-04-25T04:35:29.2427445Z 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-04-25T04:35:29.2433384Z 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-04-25T04:35:29.2438415Z 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-04-25T04:35:29.2443609Z 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-04-25T04:35:29.2448984Z 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-04-25T04:35:29.2454582Z 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-04-25T04:35:29.2469991Z 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-04-25T04:35:29.2476419Z 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-04-25T04:35:29.2481954Z 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-04-25T04:35:29.2487461Z 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-04-25T04:35:29.2492662Z 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-04-25T04:35:29.2498436Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-04-25T04:35:29.2502065Z 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-04-25T04:35:29.2507799Z 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-04-25T04:35:29.2513157Z 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-04-25T04:35:29.2518623Z 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-04-25T04:35:29.2535215Z 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-04-25T04:35:29.2540476Z 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-04-25T04:35:29.2546148Z 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-04-25T04:35:29.2552434Z 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-04-25T04:35:29.2558106Z 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-04-25T04:35:29.2563616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.2569593Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-04-25T04:35:29.2573471Z 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-04-25T04:35:29.2578814Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-04-25T04:35:29.2582477Z 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-04-25T04:35:29.2588621Z 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-04-25T04:35:29.2594620Z 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-04-25T04:35:29.2600088Z 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-04-25T04:35:29.2605346Z 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-04-25T04:35:29.2620684Z 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-04-25T04:35:29.2626436Z 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-04-25T04:35:29.2631428Z 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-04-25T04:35:29.2637167Z 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-04-25T04:35:29.2642253Z 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-04-25T04:35:29.2647510Z 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-04-25T04:35:29.2653748Z 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-04-25T04:35:29.2658663Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.2674741Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.2679854Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.2685188Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.2690890Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-04-25T04:35:29.2694476Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:35:29.2697682Z 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-04-25T04:35:29.2704927Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:35:29.2708315Z 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-04-25T04:35:29.2713849Z 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-04-25T04:35:29.2719370Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-04-25T04:35:29.2723094Z 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-04-25T04:35:29.2729396Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-04-25T04:35:29.2732805Z 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-04-25T04:35:29.2738390Z 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-04-25T04:35:29.2743687Z 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-04-25T04:35:29.2759998Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-04-25T04:35:29.2763304Z 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-04-25T04:35:29.2769014Z 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-04-25T04:35:29.2774668Z 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-04-25T04:35:29.2790736Z 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-04-25T04:35:29.2796337Z 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-04-25T04:35:29.2801793Z 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-04-25T04:35:29.2807155Z 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-04-25T04:35:29.2812599Z 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-04-25T04:35:29.2818813Z 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-04-25T04:35:29.2824204Z 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-04-25T04:35:29.2829154Z 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-04-25T04:35:29.2835148Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:35:29.2838417Z 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-04-25T04:35:29.2843950Z 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-04-25T04:35:29.2849099Z 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-04-25T04:35:29.2853996Z 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-04-25T04:35:29.2859676Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-04-25T04:35:29.2863239Z 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-04-25T04:35:29.2868844Z 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-04-25T04:35:29.2874562Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-04-25T04:35:29.2888927Z 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-04-25T04:35:29.2894440Z 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-04-25T04:35:29.2900227Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-04-25T04:35:29.2903576Z 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-04-25T04:35:29.2909317Z 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-04-25T04:35:29.2915045Z 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-04-25T04:35:29.2920642Z 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-04-25T04:35:29.2925901Z 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-04-25T04:35:29.2931651Z 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-04-25T04:35:29.2937144Z 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-04-25T04:35:29.2942435Z 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-04-25T04:35:29.2948156Z 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-04-25T04:35:29.2953886Z 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-04-25T04:35:29.2959660Z 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-04-25T04:35:29.2965194Z 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-04-25T04:35:29.2970604Z 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-04-25T04:35:29.2976082Z 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-04-25T04:35:29.2981641Z 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-04-25T04:35:29.2987097Z 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-04-25T04:35:29.3002200Z 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-04-25T04:35:29.3007544Z 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-04-25T04:35:29.3012824Z 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-04-25T04:35:29.3018113Z 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-04-25T04:35:29.3023660Z 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-04-25T04:35:29.3029257Z 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-04-25T04:35:29.3034990Z 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-04-25T04:35:29.3041380Z 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-04-25T04:35:29.3051857Z 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-04-25T04:35:29.3057636Z 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-04-25T04:35:29.3064224Z 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-04-25T04:35:29.3080646Z 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-04-25T04:35:29.3086933Z 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-04-25T04:35:29.3092390Z 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-04-25T04:35:29.3098511Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-04-25T04:35:29.3102483Z 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-04-25T04:35:29.3107890Z 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-04-25T04:35:29.3113791Z 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-04-25T04:35:29.3128916Z 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-04-25T04:35:29.3134300Z 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-04-25T04:35:29.3140393Z 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-04-25T04:35:29.3145749Z 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-04-25T04:35:29.3151125Z 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-04-25T04:35:29.3156446Z 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-04-25T04:35:29.3172503Z 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-04-25T04:35:29.3178307Z 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-04-25T04:35:29.3183832Z 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-04-25T04:35:29.3189302Z 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-04-25T04:35:29.3194868Z 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-04-25T04:35:29.3200238Z 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-04-25T04:35:29.3205713Z 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-04-25T04:35:29.3211345Z 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-04-25T04:35:29.3216817Z 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-04-25T04:35:29.3222207Z 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-04-25T04:35:29.3228637Z 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-04-25T04:35:29.3902105Z 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-04-25T04:35:29.3908348Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:35:29.3911825Z 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-04-25T04:35:29.3917466Z 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-04-25T04:35:29.3924007Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-04-25T04:35:29.3927458Z 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-04-25T04:35:29.3933215Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-04-25T04:35:29.3936756Z 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-04-25T04:35:29.3942202Z 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-04-25T04:35:29.3947715Z 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-04-25T04:35:29.3962324Z 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-04-25T04:35:29.3967749Z 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-04-25T04:35:29.3973337Z 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-04-25T04:35:29.3978785Z 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-04-25T04:35:29.3984204Z 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-04-25T04:35:29.3989629Z 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-04-25T04:35:29.3995263Z 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-04-25T04:35:29.4000959Z 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-04-25T04:35:29.4006834Z 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-04-25T04:35:29.4011918Z 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-04-25T04:35:29.4017484Z 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-04-25T04:35:29.4023497Z 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-04-25T04:35:29.4029117Z 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-04-25T04:35:29.4035082Z 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-04-25T04:35:29.4040591Z 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-04-25T04:35:29.4046130Z 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-04-25T04:35:29.4060594Z 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-04-25T04:35:29.4066060Z 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-04-25T04:35:29.4072346Z 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-04-25T04:35:29.4078613Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-04-25T04:35:29.4082674Z 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-04-25T04:35:29.4088054Z 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-04-25T04:35:29.4094058Z 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-04-25T04:35:29.4099379Z 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-04-25T04:35:29.4104748Z 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-04-25T04:35:29.4110588Z 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-04-25T04:35:29.4117318Z 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-04-25T04:35:29.4123017Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4128162Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4134213Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-04-25T04:35:29.4137790Z 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-04-25T04:35:29.4142932Z 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-04-25T04:35:29.4149111Z 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-04-25T04:35:29.4154249Z 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-04-25T04:35:29.4168618Z 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-04-25T04:35:29.4173557Z 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-04-25T04:35:29.4179929Z 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-04-25T04:35:29.4185479Z 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-04-25T04:35:29.4190684Z 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-04-25T04:35:29.4196295Z 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-04-25T04:35:29.4201569Z 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-04-25T04:35:29.4206815Z 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-04-25T04:35:29.4211985Z 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-04-25T04:35:29.4217223Z 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-04-25T04:35:29.4222197Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4227764Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4233637Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-04-25T04:35:29.4237014Z 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-04-25T04:35:29.4243344Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4248949Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-04-25T04:35:29.4252269Z 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-04-25T04:35:29.4257522Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-04-25T04:35:29.4261546Z 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-04-25T04:35:29.4266555Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4272251Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-04-25T04:35:29.4275873Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-04-25T04:35:29.4279437Z 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-04-25T04:35:29.4284968Z 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-04-25T04:35:29.4290611Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:35:29.4294025Z 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-04-25T04:35:29.4299280Z 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-04-25T04:35:29.4304256Z 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-04-25T04:35:29.4309560Z 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-04-25T04:35:29.4314468Z 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-04-25T04:35:29.4328690Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-04-25T04:35:29.4332175Z 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-04-25T04:35:29.4337476Z 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-04-25T04:35:29.4343108Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-04-25T04:35:29.4356444Z 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-04-25T04:35:29.4361861Z 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-04-25T04:35:29.4367282Z 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-04-25T04:35:29.4381255Z 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-04-25T04:35:29.4386706Z 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-04-25T04:35:29.4392266Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:35:29.4396348Z 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-04-25T04:35:29.4402040Z 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-04-25T04:35:29.4407309Z 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-04-25T04:35:29.4422897Z 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-04-25T04:35:29.4428463Z 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-04-25T04:35:29.4433882Z 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-04-25T04:35:29.4440164Z 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-04-25T04:35:29.4446079Z 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-04-25T04:35:29.4451545Z 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-04-25T04:35:29.4456953Z 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-04-25T04:35:29.4462299Z 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-04-25T04:35:29.4467935Z 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-04-25T04:35:29.4473442Z 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-04-25T04:35:29.4479199Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-04-25T04:35:29.4482842Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-04-25T04:35:29.4486288Z 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-04-25T04:35:29.4492155Z 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-04-25T04:35:29.4497470Z 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-04-25T04:35:29.4503087Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-04-25T04:35:29.4506579Z 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-04-25T04:35:29.4512740Z 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-04-25T04:35:29.4519203Z 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-04-25T04:35:29.4533866Z 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-04-25T04:35:29.4539471Z 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-04-25T04:35:29.4554174Z 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-04-25T04:35:29.4559438Z 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-04-25T04:35:29.4564836Z 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-04-25T04:35:29.4570177Z 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-04-25T04:35:29.4576072Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:35:29.4579568Z 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-04-25T04:35:29.4584780Z 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-04-25T04:35:29.4590587Z 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-04-25T04:35:29.4596292Z 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-04-25T04:35:29.4601886Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-04-25T04:35:29.4614378Z 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-04-25T04:35:29.4619582Z 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-04-25T04:35:29.4624534Z 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-04-25T04:35:29.4629354Z 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-04-25T04:35:29.4634546Z 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-04-25T04:35:29.4672940Z 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-04-25T04:35:29.4678885Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-04-25T04:35:29.4682289Z 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-04-25T04:35:29.4687196Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4692180Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.4697839Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-04-25T04:35:29.4701323Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-04-25T04:35:29.4704574Z 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-04-25T04:35:29.4709949Z 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-04-25T04:35:29.4715263Z 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-04-25T04:35:29.4720364Z 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-04-25T04:35:29.4725983Z 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-04-25T04:35:29.4735429Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-04-25T04:35:29.4738720Z 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-04-25T04:35:29.4744095Z 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-04-25T04:35:29.4749704Z 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-04-25T04:35:29.4755307Z 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-04-25T04:35:29.4770119Z 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-04-25T04:35:29.4775408Z 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-04-25T04:35:29.4780514Z 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-04-25T04:35:29.4785831Z 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-04-25T04:35:29.4790937Z 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-04-25T04:35:29.4796529Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-04-25T04:35:29.4799911Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-04-25T04:35:29.4803275Z 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-04-25T04:35:29.4808740Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-04-25T04:35:29.4812186Z 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-04-25T04:35:29.4817339Z 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-04-25T04:35:29.4822533Z 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-04-25T04:35:29.4836924Z 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-04-25T04:35:29.4842255Z 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-04-25T04:35:29.4847846Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-04-25T04:35:29.4851308Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-04-25T04:35:29.4855216Z 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-04-25T04:35:29.4860676Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-04-25T04:35:29.4864026Z 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-04-25T04:35:29.4869842Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-04-25T04:35:29.4873308Z 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-04-25T04:35:29.4878662Z 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-04-25T04:35:29.4884166Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-04-25T04:35:29.4887566Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-04-25T04:35:29.4890798Z 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-04-25T04:35:29.4896460Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:35:29.4899698Z 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-04-25T04:35:29.4904946Z 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-04-25T04:35:29.4910184Z 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-04-25T04:35:29.4915850Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-04-25T04:35:29.4919167Z 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-04-25T04:35:29.4924542Z 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-04-25T04:35:29.4930000Z 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-04-25T04:35:29.4936178Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-04-25T04:35:29.4939157Z 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-04-25T04:35:29.4944531Z 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-04-25T04:35:29.4949758Z 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-04-25T04:35:29.4954770Z 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-04-25T04:35:29.4968921Z 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-04-25T04:35:29.4974297Z 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-04-25T04:35:29.4979519Z 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-04-25T04:35:29.4985282Z 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-04-25T04:35:29.4990622Z 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-04-25T04:35:29.4995969Z 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-04-25T04:35:29.5001207Z 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-04-25T04:35:29.5006720Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:35:29.5010121Z 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-04-25T04:35:29.5015207Z 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-04-25T04:35:29.5020131Z 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-04-25T04:35:29.5025365Z 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-04-25T04:35:29.5039993Z 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-04-25T04:35:29.5045221Z 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-04-25T04:35:29.5050443Z 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-04-25T04:35:29.5056265Z 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-04-25T04:35:29.5061427Z 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-04-25T04:35:29.5066646Z 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-04-25T04:35:29.5071855Z 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-04-25T04:35:29.5077335Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-04-25T04:35:29.5080553Z 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-04-25T04:35:29.5086338Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-04-25T04:35:29.5089683Z 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-04-25T04:35:29.5095003Z 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-04-25T04:35:29.5100031Z 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-04-25T04:35:29.5115322Z 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-04-25T04:35:29.5120462Z 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-04-25T04:35:29.5125536Z 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-04-25T04:35:29.5130778Z 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-04-25T04:35:29.5135950Z 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-04-25T04:35:29.5141295Z 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-04-25T04:35:29.5146497Z 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-04-25T04:35:29.5151487Z 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-04-25T04:35:29.5157315Z 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-04-25T04:35:29.5162550Z 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-04-25T04:35:29.5167827Z 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-04-25T04:35:29.5173527Z 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-04-25T04:35:29.5178673Z 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-04-25T04:35:29.5184054Z 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-04-25T04:35:29.5189221Z 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-04-25T04:35:29.5195417Z 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-04-25T04:35:29.5200848Z 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-04-25T04:35:29.5216201Z 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-04-25T04:35:29.5222109Z 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-04-25T04:35:29.5226949Z 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-04-25T04:35:29.5231868Z 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-04-25T04:35:29.5237751Z 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-04-25T04:35:29.5243877Z 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-04-25T04:35:29.5249197Z 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-04-25T04:35:29.5255428Z 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-04-25T04:35:29.5261120Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-04-25T04:35:29.5264385Z 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-04-25T04:35:29.5270166Z 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-04-25T04:35:29.5275596Z 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-04-25T04:35:29.5280848Z 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-04-25T04:35:29.5295433Z 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-04-25T04:35:29.5300379Z 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-04-25T04:35:29.5306428Z 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-04-25T04:35:29.5311499Z 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-04-25T04:35:29.5317088Z 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-04-25T04:35:29.5322414Z 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-04-25T04:35:29.5327334Z 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-04-25T04:35:29.5332542Z 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-04-25T04:35:29.5337915Z 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-04-25T04:35:29.5342997Z 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-04-25T04:35:29.5348381Z 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-04-25T04:35:29.5363476Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-04-25T04:35:29.5368271Z 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-04-25T04:35:29.5373825Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-04-25T04:35:29.5377402Z 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-04-25T04:35:29.5382931Z 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-04-25T04:35:29.5388390Z 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-04-25T04:35:29.5403709Z 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-04-25T04:35:29.5408896Z 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-04-25T04:35:29.5414627Z 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-04-25T04:35:29.5429106Z 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-04-25T04:35:29.5434502Z 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-04-25T04:35:29.5439834Z 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-04-25T04:35:29.5445026Z 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-04-25T04:35:29.5450593Z 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-04-25T04:35:29.5456067Z 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-04-25T04:35:29.5462407Z 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-04-25T04:35:29.5467808Z 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-04-25T04:35:29.5473701Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-04-25T04:35:29.5477257Z 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-04-25T04:35:29.5482725Z 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-04-25T04:35:29.5488045Z 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-04-25T04:35:29.5503092Z 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-04-25T04:35:29.5508883Z 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-04-25T04:35:29.5514315Z 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-04-25T04:35:29.5519448Z 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-04-25T04:35:29.5524751Z 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-04-25T04:35:29.5530367Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:35:29.5534108Z 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-04-25T04:35:29.5539294Z 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-04-25T04:35:29.5544542Z 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-04-25T04:35:29.5550098Z 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-04-25T04:35:29.5555636Z 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-04-25T04:35:29.5562159Z 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-04-25T04:35:29.5567674Z 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-04-25T04:35:29.5573236Z 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-04-25T04:35:29.5578747Z 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-04-25T04:35:29.5584647Z 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-04-25T04:35:29.5590226Z 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-04-25T04:35:29.5606392Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:35:29.5609682Z 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-04-25T04:35:29.5615496Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-04-25T04:35:29.5619097Z 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-04-25T04:35:29.5624305Z 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-04-25T04:35:29.5629711Z 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-04-25T04:35:29.5635829Z 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-04-25T04:35:29.5641227Z 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-04-25T04:35:29.5646839Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:35:29.5650268Z 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-04-25T04:35:29.5660044Z 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-04-25T04:35:29.5665015Z 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-04-25T04:35:29.5670209Z 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-04-25T04:35:29.5686993Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-04-25T04:35:29.5690161Z 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-04-25T04:35:29.5695273Z 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-04-25T04:35:29.5700255Z 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-04-25T04:35:29.5705231Z 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-04-25T04:35:29.5720530Z 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-04-25T04:35:29.5725508Z 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-04-25T04:35:29.5730676Z 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-04-25T04:35:29.5735869Z 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-04-25T04:35:29.5740950Z 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-04-25T04:35:29.5746450Z 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-04-25T04:35:29.5769919Z 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-04-25T04:35:29.5771163Z 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-04-25T04:35:29.5772324Z 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-04-25T04:35:29.5773507Z 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-04-25T04:35:29.5774820Z 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-04-25T04:35:29.5778371Z 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-04-25T04:35:29.5783876Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-04-25T04:35:29.5787427Z 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-04-25T04:35:29.5792831Z 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-04-25T04:35:29.5798380Z 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-04-25T04:35:29.5814278Z 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-04-25T04:35:29.5819243Z 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-04-25T04:35:29.5824289Z 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-04-25T04:35:29.5829425Z 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-04-25T04:35:29.5835102Z 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-04-25T04:35:29.5840494Z 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-04-25T04:35:29.5845819Z 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-04-25T04:35:29.5851188Z 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-04-25T04:35:29.5856593Z 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-04-25T04:35:29.5871437Z 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-04-25T04:35:29.5876464Z 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-04-25T04:35:29.5882173Z 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-04-25T04:35:29.5887519Z 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-04-25T04:35:29.5892685Z 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-04-25T04:35:29.5897874Z 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-04-25T04:35:29.5904071Z 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-04-25T04:35:29.5909082Z 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-04-25T04:35:29.5914216Z 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-04-25T04:35:29.5929637Z 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-04-25T04:35:29.5935064Z 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-04-25T04:35:29.5940414Z 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-04-25T04:35:29.5945390Z 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-04-25T04:35:29.5950418Z 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-04-25T04:35:29.5956608Z 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-04-25T04:35:29.5961781Z 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-04-25T04:35:29.5966891Z 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-04-25T04:35:29.5971888Z 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-04-25T04:35:29.5991977Z 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-04-25T04:35:29.5997306Z 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-04-25T04:35:29.6002385Z 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-04-25T04:35:29.6007625Z 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-04-25T04:35:29.6012855Z 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-04-25T04:35:29.6017886Z 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-04-25T04:35:29.6023201Z 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-04-25T04:35:29.6028781Z 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-04-25T04:35:29.6034017Z 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-04-25T04:35:29.6039600Z 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-04-25T04:35:29.6044816Z 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-04-25T04:35:29.6067802Z 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-04-25T04:35:29.6073879Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:35:29.6077377Z 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-04-25T04:35:29.6082402Z 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-04-25T04:35:29.6087601Z 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-04-25T04:35:29.6092912Z 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-04-25T04:35:29.6111991Z 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-04-25T04:35:29.6118039Z 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-04-25T04:35:29.6123867Z 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-04-25T04:35:29.6129471Z 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-04-25T04:35:29.6135321Z 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-04-25T04:35:29.6140813Z 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-04-25T04:35:29.6146365Z 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-04-25T04:35:29.6151773Z 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-04-25T04:35:29.6157098Z 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-04-25T04:35:29.6162984Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-04-25T04:35:29.6166586Z 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-04-25T04:35:29.6172415Z 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-04-25T04:35:29.6177506Z 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-04-25T04:35:29.6193160Z 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-04-25T04:35:29.6198520Z 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-04-25T04:35:29.6203702Z 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-04-25T04:35:29.6209035Z 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-04-25T04:35:29.6214188Z 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-04-25T04:35:29.6219500Z 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-04-25T04:35:29.6258440Z 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-04-25T04:35:29.6268384Z 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-04-25T04:35:29.6273609Z 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-04-25T04:35:29.6278890Z 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-04-25T04:35:29.6284338Z 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-04-25T04:35:29.6289488Z 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-04-25T04:35:29.6295682Z 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-04-25T04:35:29.6301606Z 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-04-25T04:35:29.6307204Z 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-04-25T04:35:29.6312552Z 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-04-25T04:35:29.6327686Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:35:29.6331177Z 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-04-25T04:35:29.6336528Z 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-04-25T04:35:29.6342340Z 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-04-25T04:35:29.6356545Z 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-04-25T04:35:29.6372140Z 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-04-25T04:35:29.6378851Z 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-04-25T04:35:29.6384407Z 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-04-25T04:35:29.6390835Z 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-04-25T04:35:29.6396058Z 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-04-25T04:35:29.6401841Z 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-04-25T04:35:29.6406940Z 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-04-25T04:35:29.6412495Z 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-04-25T04:35:29.6418784Z 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-04-25T04:35:29.6424424Z 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-04-25T04:35:29.6429692Z 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-04-25T04:35:29.6435404Z 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-04-25T04:35:29.6440715Z 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-04-25T04:35:29.6456941Z 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-04-25T04:35:29.6462265Z 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-04-25T04:35:29.6467601Z 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-04-25T04:35:29.6473442Z 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-04-25T04:35:29.6479103Z 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-04-25T04:35:29.6484677Z 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-04-25T04:35:29.6490581Z 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-04-25T04:35:29.6496553Z 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-04-25T04:35:29.6502139Z 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-04-25T04:35:29.6508026Z 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-04-25T04:35:29.6513933Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-04-25T04:35:29.6517664Z 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-04-25T04:35:29.6523401Z 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-04-25T04:35:29.6528627Z 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-04-25T04:35:29.6544652Z 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-04-25T04:35:29.6550040Z 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-04-25T04:35:29.6559941Z 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-04-25T04:35:29.6565341Z 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-04-25T04:35:29.6570829Z 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-04-25T04:35:29.6576252Z 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-04-25T04:35:29.6582842Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-04-25T04:35:29.6586167Z 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-04-25T04:35:29.6591401Z 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-04-25T04:35:29.6596735Z 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-04-25T04:35:29.6602672Z 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-04-25T04:35:29.6613712Z 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-04-25T04:35:29.6628942Z 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-04-25T04:35:29.6634337Z 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-04-25T04:35:29.6640377Z 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-04-25T04:35:29.6646143Z 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-04-25T04:35:29.6651459Z 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-04-25T04:35:29.6657909Z 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-04-25T04:35:29.6663329Z 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-04-25T04:35:29.6668948Z 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-04-25T04:35:29.6674312Z 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-04-25T04:35:29.6679717Z 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-04-25T04:35:29.6684907Z 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-04-25T04:35:29.6690014Z 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-04-25T04:35:29.6696066Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-04-25T04:35:29.6699451Z 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-04-25T04:35:29.6705281Z 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-04-25T04:35:29.6710587Z 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-04-25T04:35:29.6715885Z 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-04-25T04:35:29.6731909Z 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-04-25T04:35:29.6737247Z 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-04-25T04:35:29.6742213Z 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-04-25T04:35:29.6747635Z 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-04-25T04:35:29.6753490Z 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-04-25T04:35:29.6759071Z 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-04-25T04:35:29.6764423Z 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-04-25T04:35:29.6770363Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-04-25T04:35:29.6773745Z 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-04-25T04:35:29.6779065Z 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-04-25T04:35:29.6784932Z 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-04-25T04:35:29.6790144Z 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-04-25T04:35:29.6806333Z 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-04-25T04:35:29.6811764Z 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-04-25T04:35:29.6817058Z 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-04-25T04:35:29.6822125Z 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-04-25T04:35:29.6827426Z 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-04-25T04:35:29.6832684Z 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-04-25T04:35:29.6837885Z 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-04-25T04:35:29.6843063Z 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-04-25T04:35:29.6857596Z 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-04-25T04:35:29.6867385Z 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-04-25T04:35:29.6873465Z 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-04-25T04:35:29.6878992Z 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-04-25T04:35:29.6884091Z 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-04-25T04:35:29.6889196Z 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-04-25T04:35:29.6894864Z 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-04-25T04:35:29.6900551Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:35:29.6903851Z 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-04-25T04:35:29.6908975Z 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-04-25T04:35:29.6915128Z 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-04-25T04:35:29.6920157Z 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-04-25T04:35:29.6925418Z 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-04-25T04:35:29.6930645Z 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-04-25T04:35:29.6946075Z 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-04-25T04:35:29.6951576Z 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-04-25T04:35:29.6957102Z 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-04-25T04:35:29.6962573Z 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-04-25T04:35:29.6968215Z 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-04-25T04:35:29.6982643Z 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-04-25T04:35:29.6988369Z 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-04-25T04:35:29.6993506Z 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-04-25T04:35:29.6998990Z 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-04-25T04:35:29.7005116Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-04-25T04:35:29.7008835Z 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-04-25T04:35:29.7014182Z 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-04-25T04:35:29.7020434Z 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-04-25T04:35:29.7036220Z 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-04-25T04:35:29.7041766Z 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-04-25T04:35:29.7046969Z 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-04-25T04:35:29.7052540Z 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-04-25T04:35:29.7058019Z 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-04-25T04:35:29.7063390Z 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-04-25T04:35:29.7068762Z 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-04-25T04:35:29.7074499Z 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-04-25T04:35:29.7080370Z 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-04-25T04:35:29.7087196Z 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-04-25T04:35:29.7092428Z 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-04-25T04:35:29.7097976Z 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-04-25T04:35:29.7103990Z 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-04-25T04:35:29.7109478Z 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-04-25T04:35:29.7115731Z 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-04-25T04:35:29.7121304Z 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-04-25T04:35:29.7128260Z 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-04-25T04:35:29.7143168Z 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-04-25T04:35:29.7149557Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:35:29.7153086Z 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-04-25T04:35:29.7158537Z 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-04-25T04:35:29.7163996Z 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-04-25T04:35:29.7169327Z 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-04-25T04:35:29.7184577Z 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-04-25T04:35:29.7189871Z 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-04-25T04:35:29.7195469Z 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-04-25T04:35:29.7200816Z 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-04-25T04:35:29.7206123Z 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-04-25T04:35:29.7211512Z 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-04-25T04:35:29.7216665Z 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-04-25T04:35:29.7221938Z 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-04-25T04:35:29.7227295Z 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-04-25T04:35:29.7233161Z 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-04-25T04:35:29.7238502Z 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-04-25T04:35:29.7244009Z 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-04-25T04:35:29.7249277Z 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-04-25T04:35:29.7254780Z 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-04-25T04:35:29.7260223Z 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-04-25T04:35:29.7265618Z 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-04-25T04:35:29.7270861Z 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-04-25T04:35:29.7285991Z 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-04-25T04:35:29.7291301Z 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-04-25T04:35:29.7296583Z 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-04-25T04:35:29.7302491Z 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-04-25T04:35:29.7307529Z 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-04-25T04:35:29.7312717Z 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-04-25T04:35:29.7318466Z 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-04-25T04:35:29.7323892Z 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-04-25T04:35:29.7329158Z 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-04-25T04:35:29.7334293Z 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-04-25T04:35:29.7340159Z 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-04-25T04:35:29.7355144Z 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-04-25T04:35:29.7360780Z 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-04-25T04:35:29.7366829Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:35:29.7370352Z 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-04-25T04:35:29.7381739Z 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-04-25T04:35:29.7386685Z 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-04-25T04:35:29.7391743Z 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-04-25T04:35:29.7396903Z 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-04-25T04:35:29.7412168Z 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-04-25T04:35:29.7417442Z 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-04-25T04:35:29.7422615Z 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-04-25T04:35:29.7428275Z 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-04-25T04:35:29.7434048Z 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-04-25T04:35:29.7439083Z 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-04-25T04:35:29.7444321Z 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-04-25T04:35:29.7450043Z 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-04-25T04:35:29.7455370Z 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-04-25T04:35:29.7460758Z 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-04-25T04:35:29.7466036Z 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-04-25T04:35:29.7471595Z 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-04-25T04:35:29.7477510Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-04-25T04:35:29.7481013Z 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-04-25T04:35:29.7486550Z 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-04-25T04:35:29.7492322Z 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-04-25T04:35:29.7497763Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.7503345Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-04-25T04:35:29.7507033Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-04-25T04:35:29.7510273Z 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-04-25T04:35:29.7515673Z 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-04-25T04:35:29.7521064Z 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-04-25T04:35:29.7526611Z 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-04-25T04:35:29.7541759Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-04-25T04:35:29.7545184Z 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-04-25T04:35:29.7550479Z 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-04-25T04:35:29.7555790Z 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-04-25T04:35:29.7561246Z 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-04-25T04:35:29.7566650Z 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-04-25T04:35:29.7582212Z 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-04-25T04:35:29.7587909Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-04-25T04:35:29.7591359Z 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-04-25T04:35:29.7597443Z 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-04-25T04:35:29.7602787Z 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-04-25T04:35:29.7608746Z 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-04-25T04:35:29.7614326Z 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-04-25T04:35:29.7620214Z 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-04-25T04:35:29.7626392Z 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-04-25T04:35:29.7632006Z 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-04-25T04:35:29.7637621Z 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-04-25T04:35:29.7643427Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-04-25T04:35:29.7646777Z 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-04-25T04:35:29.7652669Z 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-04-25T04:35:29.7657963Z 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-04-25T04:35:29.7663359Z 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-04-25T04:35:29.7668928Z 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-04-25T04:35:29.7674249Z 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-04-25T04:35:29.7679657Z 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-04-25T04:35:29.7684888Z 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-04-25T04:35:29.7690186Z 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-04-25T04:35:29.7695743Z 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-04-25T04:35:29.7700968Z 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-04-25T04:35:29.7716168Z 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-04-25T04:35:29.7721480Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-04-25T04:35:29.7724777Z 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-04-25T04:35:29.7733515Z 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-04-25T04:35:29.7739666Z 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-04-25T04:35:29.7745215Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-04-25T04:35:29.7748419Z 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-04-25T04:35:29.7753889Z 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-04-25T04:35:29.7759020Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-04-25T04:35:29.7772955Z 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-04-25T04:35:29.7778037Z 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-04-25T04:35:29.7783302Z 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-04-25T04:35:29.7788947Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-04-25T04:35:29.7809044Z 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-04-25T04:35:29.7814696Z 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-04-25T04:35:29.7819868Z 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-04-25T04:35:29.7825702Z 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-04-25T04:35:29.7830724Z 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-04-25T04:35:29.7836155Z 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-04-25T04:35:29.7841515Z 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-04-25T04:35:29.7846764Z 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-04-25T04:35:29.7856412Z 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-04-25T04:35:29.7862050Z 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-04-25T04:35:29.7867215Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.7883042Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.7888681Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-04-25T04:35:29.7891944Z 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-04-25T04:35:29.7931439Z 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-04-25T04:35:29.7936434Z 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-04-25T04:35:29.7941926Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-04-25T04:35:29.7945359Z 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-04-25T04:35:29.7950647Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-04-25T04:35:29.7954178Z 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-04-25T04:35:29.7959229Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-04-25T04:35:29.7962624Z 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-04-25T04:35:29.7968138Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-04-25T04:35:29.7971392Z 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-04-25T04:35:29.7976731Z 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-04-25T04:35:29.7981952Z 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-04-25T04:35:29.7987619Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-04-25T04:35:29.7990888Z 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-04-25T04:35:29.7996092Z 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-04-25T04:35:29.8001945Z 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-04-25T04:35:29.8007307Z 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-04-25T04:35:29.8017180Z 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-04-25T04:35:29.8022541Z 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-04-25T04:35:29.8028408Z 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-04-25T04:35:29.8033651Z 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-04-25T04:35:29.8039477Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:35:29.8043021Z 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-04-25T04:35:29.8048403Z 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-04-25T04:35:29.8053785Z 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-04-25T04:35:29.8058996Z 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-04-25T04:35:29.8064172Z 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-04-25T04:35:29.8069849Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-04-25T04:35:29.8073233Z 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-04-25T04:35:29.8079137Z 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-04-25T04:35:29.8084409Z 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-04-25T04:35:29.8090070Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:35:29.8093719Z 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-04-25T04:35:29.8099164Z 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-04-25T04:35:29.8104270Z 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-04-25T04:35:29.8119375Z 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-04-25T04:35:29.8126398Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:35:29.8129960Z 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-04-25T04:35:29.8135990Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:35:29.8139267Z 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-04-25T04:35:29.8144668Z 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-04-25T04:35:29.8150497Z 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-04-25T04:35:29.8155905Z 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-04-25T04:35:29.8171934Z 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-04-25T04:35:29.8177252Z 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-04-25T04:35:29.8182577Z 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-04-25T04:35:29.8187778Z 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-04-25T04:35:29.8193147Z 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-04-25T04:35:29.8198498Z 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-04-25T04:35:29.8203758Z 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-04-25T04:35:29.8214977Z 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-04-25T04:35:29.8220387Z 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-04-25T04:35:29.8225588Z 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-04-25T04:35:29.8230650Z 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-04-25T04:35:29.8236029Z 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-04-25T04:35:29.8241195Z 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-04-25T04:35:29.8246461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8251458Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8261437Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8266887Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8271842Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8277408Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8282733Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-04-25T04:35:29.8299371Z 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-04-25T04:35:29.8304726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8310266Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8315292Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8324543Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8329888Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-04-25T04:35:29.8333181Z 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-04-25T04:35:29.8338967Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8343894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8349050Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8354058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8359937Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-04-25T04:35:29.8363198Z 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-04-25T04:35:29.8368469Z 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-04-25T04:35:29.8373455Z 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-04-25T04:35:29.8378525Z 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-04-25T04:35:29.8393605Z 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-04-25T04:35:29.8399534Z 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-04-25T04:35:29.8407179Z 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-04-25T04:35:29.8412137Z 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-04-25T04:35:29.8417083Z 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-04-25T04:35:29.8422448Z 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-04-25T04:35:29.8427609Z 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-04-25T04:35:29.8432916Z 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-04-25T04:35:29.8438126Z 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-04-25T04:35:29.8443552Z 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-04-25T04:35:29.8449678Z 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-04-25T04:35:29.8454793Z 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-04-25T04:35:29.8460843Z 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-04-25T04:35:29.8466995Z 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-04-25T04:35:29.8472489Z 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-04-25T04:35:29.8477766Z 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-04-25T04:35:29.8492727Z 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-04-25T04:35:29.8498269Z 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-04-25T04:35:29.8504019Z 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-04-25T04:35:29.8509939Z 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-04-25T04:35:29.8515318Z 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-04-25T04:35:29.8521028Z 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-04-25T04:35:29.8526611Z 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-04-25T04:35:29.8532115Z 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-04-25T04:35:29.8537540Z 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-04-25T04:35:29.8542933Z 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-04-25T04:35:29.8558682Z 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-04-25T04:35:29.8563960Z 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-04-25T04:35:29.8569055Z 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-04-25T04:35:29.8574526Z 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-04-25T04:35:29.8579730Z 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-04-25T04:35:29.8585129Z 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-04-25T04:35:29.8590411Z 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-04-25T04:35:29.8596182Z 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-04-25T04:35:29.8601644Z 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-04-25T04:35:29.8618266Z 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-04-25T04:35:29.8624436Z 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-04-25T04:35:29.8630260Z 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-04-25T04:35:29.8635955Z 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-04-25T04:35:29.8641363Z 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-04-25T04:35:29.8646810Z 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-04-25T04:35:29.8652095Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-04-25T04:35:29.8657777Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-04-25T04:35:29.8661578Z 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-04-25T04:35:29.8666737Z 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-04-25T04:35:29.8671823Z 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-04-25T04:35:29.8678000Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:35:29.8683915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:35:29.8689309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:35:29.8704314Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:35:29.8710235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:35:29.8716225Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:35:29.8732512Z creating build\bdist.win-amd64\wheel\torch\jit 2025-04-25T04:35:29.8735766Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8741486Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8747811Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8753248Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-04-25T04:35:29.8756551Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-04-25T04:35:29.8761811Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8777592Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8783317Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8788441Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8793626Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8798801Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8805314Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8810977Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8816708Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8822460Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8827516Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8832664Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8838400Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8843710Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8848697Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8854247Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-04-25T04:35:29.8857742Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-04-25T04:35:29.8863777Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-04-25T04:35:29.8867863Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8873344Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8879380Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8885720Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8896406Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8911484Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8917671Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8923474Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8929711Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:35:29.8935899Z creating build\bdist.win-amd64\wheel\torch\lib 2025-04-25T04:35:29.8939226Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.8947367Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.8953303Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.8971595Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.8978628Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.8996629Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.9002583Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.9016669Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.9028708Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:29.9035584Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5078952Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5125782Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5143728Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5162264Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5170816Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5177608Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5364396Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5413606Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.5744774Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6087651Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-04-25T04:35:30.6091189Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:35:30.6096460Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:35:30.6101941Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:35:30.6107228Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:35:30.6113082Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-04-25T04:35:30.6116891Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-04-25T04:35:30.6122281Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6153636Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6161059Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6166914Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6181775Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6264348Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6269584Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6275185Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6285214Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:30.6291131Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.1549294Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.1817450Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.1822790Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.1975030Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.1983481Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.2012322Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:35:31.2025339Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.2032393Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-04-25T04:35:31.2035532Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-04-25T04:35:31.2047115Z creating build\bdist.win-amd64\wheel\torch\masked 2025-04-25T04:35:31.2050667Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-04-25T04:35:31.2053901Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2059207Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2064356Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2069672Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2074619Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2086902Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2092133Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2102172Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:35:31.2106982Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:35:31.2113197Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:35:31.2119243Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:35:31.2124937Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-04-25T04:35:31.2128069Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-04-25T04:35:31.2133454Z creating build\bdist.win-amd64\wheel\torch\mps 2025-04-25T04:35:31.2136506Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:35:31.2141712Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:35:31.2146665Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:35:31.2152722Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-04-25T04:35:31.2155907Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:35:31.2161135Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:35:31.2166125Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:35:31.2171895Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-04-25T04:35:31.2175098Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2180273Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2186617Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2192152Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2197209Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2208353Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:35:31.2213570Z creating build\bdist.win-amd64\wheel\torch\nested 2025-04-25T04:35:31.2218074Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-04-25T04:35:31.2221474Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:35:31.2227393Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:35:31.2234084Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:35:31.2240738Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:35:31.2252348Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:35:31.2256988Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-04-25T04:35:31.2263344Z creating build\bdist.win-amd64\wheel\torch\nn 2025-04-25T04:35:31.2267248Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-04-25T04:35:31.2270752Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:35:31.2276668Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-04-25T04:35:31.2280509Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-04-25T04:35:31.2286758Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-04-25T04:35:31.2291885Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:35:31.2298206Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:35:31.2310084Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:35:31.2335250Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-04-25T04:35:31.2338324Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-04-25T04:35:31.2343364Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-04-25T04:35:31.2347797Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2353677Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2359266Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2372369Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2377981Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2383168Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2389123Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-04-25T04:35:31.2392334Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-04-25T04:35:31.2395594Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-04-25T04:35:31.2404860Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-04-25T04:35:31.2409928Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-04-25T04:35:31.2413156Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-04-25T04:35:31.2416330Z 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-04-25T04:35:31.2421664Z 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-04-25T04:35:31.2426665Z 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-04-25T04:35:31.2431529Z 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-04-25T04:35:31.2441083Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-04-25T04:35:31.2446065Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-04-25T04:35:31.2449238Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:35:31.2452659Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:35:31.2455986Z 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-04-25T04:35:31.2460988Z 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-04-25T04:35:31.2466272Z 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-04-25T04:35:31.2470978Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-04-25T04:35:31.2474406Z 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-04-25T04:35:31.2479409Z 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-04-25T04:35:31.2484639Z 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-04-25T04:35:31.2489582Z 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-04-25T04:35:31.2494521Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-04-25T04:35:31.2499569Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-04-25T04:35:31.2505216Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-04-25T04:35:31.2508371Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2514648Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2520384Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2526256Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2536859Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2542944Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2549240Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2554590Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2559876Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2565282Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2571151Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2576907Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2582189Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2587479Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2594382Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2602016Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2610349Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2614942Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2620307Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2626484Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2632632Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2638571Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2644765Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2650724Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2655872Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2661388Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:35:31.2666967Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-04-25T04:35:31.2670175Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2675923Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2681374Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2688489Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2700274Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2705619Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2711562Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2717478Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:35:31.2722987Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2728942Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.2734664Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-04-25T04:35:31.2738225Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-04-25T04:35:31.2741472Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-04-25T04:35:31.2745072Z 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-04-25T04:35:31.2750067Z 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-04-25T04:35:31.2755143Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-04-25T04:35:31.2760346Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-04-25T04:35:31.2763446Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-04-25T04:35:31.2768796Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-04-25T04:35:31.2773779Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-04-25T04:35:31.2779378Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-04-25T04:35:31.2784214Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-04-25T04:35:31.2789292Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-04-25T04:35:31.2792866Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-04-25T04:35:31.2796153Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-04-25T04:35:31.2801030Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-04-25T04:35:31.2805835Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-04-25T04:35:31.2811260Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-04-25T04:35:31.2816370Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-04-25T04:35:31.2819661Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-04-25T04:35:31.2822827Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-04-25T04:35:31.2826014Z 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-04-25T04:35:31.2831009Z 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-04-25T04:35:31.2835926Z 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-04-25T04:35:31.2841041Z 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-04-25T04:35:31.2846367Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-04-25T04:35:31.2851284Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-04-25T04:35:31.2856494Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-04-25T04:35:31.2859730Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2864742Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2869665Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2874603Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2879473Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2889522Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2894371Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2899373Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2904807Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2910134Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2915020Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-04-25T04:35:31.2920451Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-04-25T04:35:31.2928567Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-04-25T04:35:31.2931927Z 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-04-25T04:35:31.2936924Z 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-04-25T04:35:31.2941698Z 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-04-25T04:35:31.2946572Z 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-04-25T04:35:31.2951361Z 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-04-25T04:35:31.2956442Z 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-04-25T04:35:31.2961742Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-04-25T04:35:31.2966599Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-04-25T04:35:31.2972031Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-04-25T04:35:31.2975203Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.2981338Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.2986750Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.2996774Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3001975Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3013880Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3020005Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3025900Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3031947Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3037626Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3048983Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3054861Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3060288Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3065953Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-04-25T04:35:31.3069550Z 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-04-25T04:35:31.3075057Z 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-04-25T04:35:31.3080994Z 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-04-25T04:35:31.3091989Z 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-04-25T04:35:31.3097378Z 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-04-25T04:35:31.3102951Z 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-04-25T04:35:31.3108393Z 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-04-25T04:35:31.3113826Z 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-04-25T04:35:31.3119357Z 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-04-25T04:35:31.3124994Z 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-04-25T04:35:31.3130001Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3135436Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3140885Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:35:31.3146238Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.3151546Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:35:31.3157982Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-04-25T04:35:31.3161172Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3166429Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3172915Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-04-25T04:35:31.3176080Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-04-25T04:35:31.3181475Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-04-25T04:35:31.3186734Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_caffe2.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3196839Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3207786Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3214579Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3221421Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3227081Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3233329Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3239094Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3244651Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3250849Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3256726Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3262479Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3267841Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3274731Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3280481Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3286010Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3293813Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3306541Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3313355Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3318716Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3323982Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3329102Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3334630Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-04-25T04:35:31.3338106Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3341563Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3346788Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3358928Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3364266Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3375170Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3380221Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3386561Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3391776Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3397350Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3407300Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3412322Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3417737Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3423045Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3428437Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3433941Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3439764Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3445185Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3450548Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3456260Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3461620Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3467190Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:35:31.3472220Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:35:31.3475771Z 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-04-25T04:35:31.3481130Z 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-04-25T04:35:31.3486399Z 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-04-25T04:35:31.3491707Z 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-04-25T04:35:31.3496890Z 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-04-25T04:35:31.3501937Z 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-04-25T04:35:31.3507711Z 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-04-25T04:35:31.3513326Z 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-04-25T04:35:31.3523020Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3528725Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-04-25T04:35:31.3533361Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-04-25T04:35:31.3536591Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\decomposition_table.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3542017Z 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-04-25T04:35:31.3547577Z 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-04-25T04:35:31.3558289Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3564730Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-04-25T04:35:31.3568137Z 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-04-25T04:35:31.3573820Z 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-04-25T04:35:31.3579146Z 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-04-25T04:35:31.3585134Z 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-04-25T04:35:31.3595078Z 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-04-25T04:35:31.3608712Z 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-04-25T04:35:31.3614045Z 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-04-25T04:35:31.3619283Z 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-04-25T04:35:31.3624285Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3629596Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3635602Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3641000Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3646294Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3651418Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-04-25T04:35:31.3656497Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\io_adapter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3662304Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3685820Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnxruntime.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3692602Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3698234Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3703767Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3709369Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3715087Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:35:31.3719469Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3724758Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3730102Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:35:31.3736734Z creating build\bdist.win-amd64\wheel\torch\optim 2025-04-25T04:35:31.3739981Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3745646Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3751168Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3757117Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3763012Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3768163Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3773914Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3784675Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3790970Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3796871Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3802998Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3808567Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3840638Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3846308Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3852292Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3857516Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3863497Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3869344Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3875069Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-04-25T04:35:31.3878302Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-04-25T04:35:31.3883430Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-04-25T04:35:31.3888362Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:35:31.3893577Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.3900594Z creating build\bdist.win-amd64\wheel\torch\package 2025-04-25T04:35:31.3903839Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-04-25T04:35:31.3907124Z 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-04-25T04:35:31.3912682Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-04-25T04:35:31.3917758Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-04-25T04:35:31.3928780Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-04-25T04:35:31.3933801Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3939012Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3944109Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3955706Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3966409Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3968178Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3973835Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3979147Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3984448Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3989674Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.3994920Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.4000603Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.4006166Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.4011367Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.4016466Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:35:31.4022312Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-04-25T04:35:31.4031519Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4036937Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4042824Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4048039Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4054212Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4066049Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4071542Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:35:31.4076965Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4081754Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-04-25T04:35:31.4085037Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4090550Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4095930Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4106374Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-04-25T04:35:31.4109509Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4114687Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4120143Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4125303Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4130475Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4140537Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4145814Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4150881Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4156236Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4161296Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4166478Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4171952Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:35:31.4177148Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4182304Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4187583Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4192855Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4198306Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4203677Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4208996Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4215166Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4237642Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4243062Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4248601Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4254377Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4259711Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:35:31.4264941Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4270398Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4275714Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4281202Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4286960Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4293864Z creating build\bdist.win-amd64\wheel\torch\share 2025-04-25T04:35:31.4297211Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-04-25T04:35:31.4301286Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-04-25T04:35:31.4304562Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-04-25T04:35:31.4310026Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4313418Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4318901Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4324003Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4334229Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4340122Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4349923Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4355340Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-04-25T04:35:31.4361114Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:35:31.4364551Z 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-04-25T04:35:31.4370152Z 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-04-25T04:35:31.4376806Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-04-25T04:35:31.4386694Z 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-04-25T04:35:31.4392345Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-04-25T04:35:31.4395861Z 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-04-25T04:35:31.4401181Z 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-04-25T04:35:31.4406644Z 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-04-25T04:35:31.4417613Z 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-04-25T04:35:31.4423009Z 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-04-25T04:35:31.4429857Z 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-04-25T04:35:31.4441288Z 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-04-25T04:35:31.4446925Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-04-25T04:35:31.4450122Z 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-04-25T04:35:31.4455768Z 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-04-25T04:35:31.4460984Z 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-04-25T04:35:31.4466441Z 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-04-25T04:35:31.4477348Z 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-04-25T04:35:31.4482677Z 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-04-25T04:35:31.4488371Z 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-04-25T04:35:31.4493806Z 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-04-25T04:35:31.4499636Z 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-04-25T04:35:31.4505497Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-04-25T04:35:31.4508753Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-04-25T04:35:31.4514280Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-04-25T04:35:31.4519752Z creating build\bdist.win-amd64\wheel\torch\signal 2025-04-25T04:35:31.4523041Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-04-25T04:35:31.4526287Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-04-25T04:35:31.4531956Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-04-25T04:35:31.4536953Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-04-25T04:35:31.4542119Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-04-25T04:35:31.4545433Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4551440Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4557178Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4569417Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4575986Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4586211Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:35:31.4592455Z creating build\bdist.win-amd64\wheel\torch\special 2025-04-25T04:35:31.4595648Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-04-25T04:35:31.4602066Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.4611084Z creating build\bdist.win-amd64\wheel\torch\test 2025-04-25T04:35:31.4619668Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4628722Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4638615Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4647620Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4662462Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4671938Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4680591Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4689010Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4697820Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4707041Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4715856Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4725267Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4734388Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4743318Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4752128Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4761241Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4769499Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4777986Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4792383Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4801144Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4809727Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4818381Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4826500Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4834965Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4843482Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4851884Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4868234Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4876249Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4891172Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4899441Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4907777Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4917041Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4925672Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4934126Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4943037Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4957759Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4967178Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4975444Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4983968Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.4992649Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5006555Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5019419Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5027939Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5036632Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5057532Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5066114Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5074644Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5083706Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5092633Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5101512Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5109979Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5118782Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5133289Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5142111Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5151059Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5160582Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5169657Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5181886Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5192048Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5201156Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5210118Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5226927Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5236869Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5246453Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5256958Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5270132Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5280992Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5293682Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5305161Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5323844Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5335429Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5345583Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5354867Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5365449Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5377067Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5388318Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5397309Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5407163Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5416698Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5425740Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5434861Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5444312Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5453473Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5462749Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5471451Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5479837Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5508647Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5521936Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5531107Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5540765Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5549930Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5559572Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5568880Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5578566Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5587550Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5597226Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5607436Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5616462Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5623423Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5632266Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5641609Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5650697Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5657086Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5666705Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5682216Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:35:31.5691733Z creating build\bdist.win-amd64\wheel\torch\testing 2025-04-25T04:35:31.5694803Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:35:31.5701145Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:35:31.5707568Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-04-25T04:35:31.5710976Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5716967Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5722960Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5735051Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-04-25T04:35:31.5738167Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-04-25T04:35:31.5743419Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5749272Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5756405Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5763028Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5768983Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5774907Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5782382Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5789332Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5805955Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5811712Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5819470Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5826962Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5856273Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5861719Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5868777Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5880285Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5885750Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5898132Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5904552Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5909959Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.5915571Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-04-25T04:35:31.5918805Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-04-25T04:35:31.5923804Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-04-25T04:35:31.5928826Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-04-25T04:35:31.5934394Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-04-25T04:35:31.5937671Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.5942994Z 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-04-25T04:35:31.5948370Z 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-04-25T04:35:31.5963971Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.5973359Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.5978696Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.5984161Z 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-04-25T04:35:31.5989882Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-04-25T04:35:31.5993152Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-04-25T04:35:31.5996907Z 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-04-25T04:35:31.6003071Z 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-04-25T04:35:31.6007715Z 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-04-25T04:35:31.6012056Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-04-25T04:35:31.6015378Z 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-04-25T04:35:31.6021980Z 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-04-25T04:35:31.6027861Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:35:31.6031035Z 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-04-25T04:35:31.6036777Z 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-04-25T04:35:31.6042050Z 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-04-25T04:35:31.6046653Z 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-04-25T04:35:31.6056421Z 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-04-25T04:35:31.6061818Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:35:31.6065597Z 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-04-25T04:35:31.6070920Z 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-04-25T04:35:31.6077106Z 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-04-25T04:35:31.6082465Z 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-04-25T04:35:31.6086840Z 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-04-25T04:35:31.6092099Z 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-04-25T04:35:31.6100377Z 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-04-25T04:35:31.6105738Z 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-04-25T04:35:31.6110010Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.6115606Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-04-25T04:35:31.6118796Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-04-25T04:35:31.6122262Z 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-04-25T04:35:31.6127710Z 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-04-25T04:35:31.6132975Z 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-04-25T04:35:31.6138161Z 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-04-25T04:35:31.6143294Z 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-04-25T04:35:31.6148609Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-04-25T04:35:31.6151865Z 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-04-25T04:35:31.6157803Z 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-04-25T04:35:31.6162262Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-04-25T04:35:31.6166533Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6171980Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6177320Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6182769Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6193530Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6199323Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-04-25T04:35:31.6202721Z 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-04-25T04:35:31.6213779Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-04-25T04:35:31.6218212Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6223823Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6229928Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6235717Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6242637Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6249457Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6255828Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6262021Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-04-25T04:35:31.6271350Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-04-25T04:35:31.6278851Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-04-25T04:35:31.6282194Z 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-04-25T04:35:31.6288047Z 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-04-25T04:35:31.6294524Z 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-04-25T04:35:31.6300694Z 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-04-25T04:35:31.6305866Z 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-04-25T04:35:31.6311663Z 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-04-25T04:35:31.6323390Z 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-04-25T04:35:31.6329171Z 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-04-25T04:35:31.6334145Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-04-25T04:35:31.6339236Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-04-25T04:35:31.6344342Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-04-25T04:35:31.6349565Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-04-25T04:35:31.6352986Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6362891Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6368082Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6373059Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6383542Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6389229Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-04-25T04:35:31.6394483Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6400770Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6406288Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6411887Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-04-25T04:35:31.6415269Z 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-04-25T04:35:31.6421043Z 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-04-25T04:35:31.6426241Z 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-04-25T04:35:31.6430492Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6436208Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6442616Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6448125Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:35:31.6452466Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:35:31.6464208Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:35:31.6469252Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.6474614Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.6480638Z creating build\bdist.win-amd64\wheel\torch\utils 2025-04-25T04:35:31.6483883Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-04-25T04:35:31.6487078Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-04-25T04:35:31.6492101Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6498159Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-04-25T04:35:31.6502173Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-04-25T04:35:31.6505450Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\blas_compare_setup.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6510785Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6515919Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6521135Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6526351Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6538523Z 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-04-25T04:35:31.6544236Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-04-25T04:35:31.6549010Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-04-25T04:35:31.6552242Z 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-04-25T04:35:31.6557954Z 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-04-25T04:35:31.6563643Z 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-04-25T04:35:31.6568745Z 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-04-25T04:35:31.6580966Z 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-04-25T04:35:31.6586479Z 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-04-25T04:35:31.6592229Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-04-25T04:35:31.6595503Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6600744Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6605979Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6611523Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6617394Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6623204Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6632887Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6638376Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6644760Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:35:31.6648328Z 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-04-25T04:35:31.6653860Z 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-04-25T04:35:31.6659358Z 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-04-25T04:35:31.6671336Z 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-04-25T04:35:31.6677648Z 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-04-25T04:35:31.6687263Z 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-04-25T04:35:31.6691601Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6697221Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-04-25T04:35:31.6701328Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-04-25T04:35:31.6706449Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-04-25T04:35:31.6714510Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-04-25T04:35:31.6722836Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-04-25T04:35:31.6728643Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6735100Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6741595Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6747721Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6753041Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.6760476Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-04-25T04:35:31.6763764Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.6768805Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.6775941Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-04-25T04:35:31.6779307Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-04-25T04:35:31.6782615Z 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-04-25T04:35:31.6788239Z 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-04-25T04:35:31.6793558Z 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-04-25T04:35:31.6806076Z 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-04-25T04:35:31.6811501Z 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-04-25T04:35:31.6816501Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.6822123Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.6827851Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.6833302Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-04-25T04:35:31.6842214Z 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-04-25T04:35:31.6847449Z 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-04-25T04:35:31.6852731Z 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-04-25T04:35:31.6858734Z 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-04-25T04:35:31.6873016Z 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-04-25T04:35:31.6878422Z 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-04-25T04:35:31.6883742Z 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-04-25T04:35:31.6889117Z 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-04-25T04:35:31.6894361Z 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-04-25T04:35:31.6899431Z 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-04-25T04:35:31.6904573Z 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-04-25T04:35:31.6909652Z 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-04-25T04:35:31.6915189Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-04-25T04:35:31.6918454Z 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-04-25T04:35:31.6923870Z 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-04-25T04:35:31.6929003Z 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-04-25T04:35:31.6934157Z 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-04-25T04:35:31.6939229Z 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-04-25T04:35:31.6951158Z 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-04-25T04:35:31.6956497Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-04-25T04:35:31.6959609Z 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-04-25T04:35:31.6964913Z 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-04-25T04:35:31.6970112Z 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-04-25T04:35:31.6975410Z 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-04-25T04:35:31.6980123Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.6985517Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.6995552Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.7001193Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-04-25T04:35:31.7006341Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7016554Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7021872Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7027327Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7032919Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7038524Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-04-25T04:35:31.7042202Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7047526Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7052831Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7058252Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7064738Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7076620Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-04-25T04:35:31.7082160Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:35:31.7087576Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7092933Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7098234Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7104016Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7110145Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-04-25T04:35:31.7113344Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:35:31.7118838Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:35:31.7128314Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:35:31.7134226Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:35:31.7145510Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:35:31.7151302Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7157106Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-04-25T04:35:31.7160581Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-04-25T04:35:31.7166632Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-04-25T04:35:31.7170964Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7176454Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7182504Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-04-25T04:35:31.7185762Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7191607Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7197016Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7202477Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7207664Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7217264Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-04-25T04:35:31.7222587Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7228208Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7239924Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-04-25T04:35:31.7243182Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-04-25T04:35:31.7248297Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-04-25T04:35:31.7253296Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7258928Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-04-25T04:35:31.7262255Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7268255Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7274491Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7279654Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7291151Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7296350Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7301580Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7306796Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7311905Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:35:31.7317173Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7322707Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-04-25T04:35:31.7325964Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-04-25T04:35:31.7331625Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-04-25T04:35:31.7336521Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7342487Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7347710Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7353193Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.7359111Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9080682Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9127391Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9152145Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9158112Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9163785Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9169824Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9175238Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9180772Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9186131Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9191489Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9196994Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9209290Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9214740Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9220285Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9225514Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9231191Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9237144Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9243874Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9250536Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-04-25T04:35:31.9254541Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-04-25T04:35:31.9261194Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-04-25T04:35:31.9266414Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-04-25T04:35:31.9269741Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9276262Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9281608Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9286941Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9292613Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9305665Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9310877Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9316157Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9321320Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9327361Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:35:31.9331816Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9336906Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9350509Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9355778Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9360845Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9365975Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:35:31.9371697Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9377914Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-04-25T04:35:31.9381545Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9386688Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9391808Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9397246Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9402598Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9407746Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:35:31.9420821Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9426883Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-04-25T04:35:31.9430040Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-04-25T04:35:31.9435818Z creating build\bdist.win-amd64\wheel\torch\_C 2025-04-25T04:35:31.9438879Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9444191Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9449424Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9454380Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9459352Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9471427Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9477028Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9482783Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9488217Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9493789Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-04-25T04:35:31.9497046Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:35:31.9502110Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:35:31.9507415Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:35:31.9512570Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:35:31.9517804Z copying build\lib.win-amd64-cpython-39\torch\_C\_export.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9522684Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9527823Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9533189Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9538166Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9543023Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9548452Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9553758Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9559118Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9565054Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9570072Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9575407Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9581004Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9598199Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9609269Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:35:31.9619913Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9625604Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9630856Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9636987Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-04-25T04:35:31.9640622Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:35:31.9646132Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:35:31.9652189Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:35:31.9656634Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9662673Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-04-25T04:35:31.9670571Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-04-25T04:35:31.9676090Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-04-25T04:35:31.9679376Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:35:31.9687621Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:35:31.9693330Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:35:31.9705485Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:35:31.9711297Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:31.9716833Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-04-25T04:35:31.9720178Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-04-25T04:35:31.9725610Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-04-25T04:35:31.9730696Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-04-25T04:35:31.9733853Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-04-25T04:35:31.9737113Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9742572Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9748796Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9754928Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9767129Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9772435Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9777759Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9783226Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9788491Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9793860Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9799187Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:35:31.9803597Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9809699Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9815721Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9828051Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9833160Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9838872Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9844244Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9850591Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9855761Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9861449Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9868022Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9873395Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9879424Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9885720Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9891670Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9897212Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9903145Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9909994Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9915961Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9921621Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9926947Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9938070Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9943604Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9948915Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9954328Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9961466Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9966785Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9972241Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9977590Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9983213Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9990350Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:31.9996421Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-04-25T04:35:32.0005011Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0010519Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0015799Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0021202Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0031264Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0036721Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0041741Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0047091Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0052298Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0057131Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0062405Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:35:32.0067512Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0072770Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0078364Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-04-25T04:35:32.0081440Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:35:32.0087800Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:35:32.0093669Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:35:32.0099400Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:35:32.0103686Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0109611Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0116502Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0122442Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0129878Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0135272Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0141320Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0147017Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0159015Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0166215Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0171779Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0179215Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-04-25T04:35:32.0182698Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0188534Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0195697Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0202936Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0207495Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0222165Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0228362Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0234377Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0241121Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0248068Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0253750Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0258985Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0266151Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0272604Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0280099Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0286697Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0292512Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0298261Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0304998Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0311784Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0317873Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0324761Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:35:32.0330474Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0336025Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:35:32.0341914Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:32.0347409Z creating build\bdist.win-amd64\wheel\torch\_export 2025-04-25T04:35:32.0350512Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:32.0357522Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-04-25T04:35:32.0360580Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:35:32.0366752Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-04-25T04:35:32.0370131Z 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-04-25T04:35:32.0375219Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0380606Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0394081Z 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-04-25T04:35:32.0399678Z 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-04-25T04:35:32.0405122Z 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-04-25T04:35:32.0410738Z 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-04-25T04:35:32.0415776Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0420961Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0426862Z 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-04-25T04:35:32.0432355Z 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-04-25T04:35:32.0438119Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0443173Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0448362Z 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-04-25T04:35:32.0453441Z 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-04-25T04:35:32.0458507Z 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-04-25T04:35:32.0463890Z 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-04-25T04:35:32.0469121Z 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-04-25T04:35:32.0481036Z 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-04-25T04:35:32.0486327Z 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-04-25T04:35:32.0491654Z 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-04-25T04:35:32.0496979Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0502076Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0507412Z 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-04-25T04:35:32.0512634Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0517867Z 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-04-25T04:35:32.0527408Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0532950Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0537987Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0543452Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0548752Z 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-04-25T04:35:32.0554443Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0560039Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.0577395Z 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-04-25T04:35:32.0578574Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.5723122Z 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-04-25T04:35:32.5727992Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-04-25T04:35:32.5733828Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:35:32.5738831Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:35:32.5744433Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:35:32.5749495Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:32.5754867Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:32.5762018Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-04-25T04:35:33.0806576Z 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-04-25T04:35:33.0823440Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.0829096Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.0917835Z 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-04-25T04:35:33.0923106Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.0928734Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.0934578Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.0939818Z 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-04-25T04:35:33.0945378Z 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-04-25T04:35:33.0951307Z 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-04-25T04:35:33.5742443Z 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-04-25T04:35:33.5748672Z 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-04-25T04:35:33.5754466Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.5760350Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:35:33.5765958Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:33.5772722Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-04-25T04:35:33.5777338Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-04-25T04:35:33.5783236Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-04-25T04:35:33.5788875Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-04-25T04:35:33.5794183Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-04-25T04:35:33.5797446Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\aoti_schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:33.5803515Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:33.5810306Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:33.5816250Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1474275Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1479586Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1485314Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1492009Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1497191Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:35:34.1501334Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:34.1506324Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:34.1512416Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:34.1517781Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:34.1522980Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:35:34.1529006Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-04-25T04:35:34.1532333Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.1539053Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.1544758Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.1550384Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2952987Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2958303Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2963878Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2969744Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2975031Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2980385Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2987019Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2992556Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.2998447Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3004199Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3010848Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3016444Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3021720Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3027011Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3032645Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3037920Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.3044329Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:34.4068004Z 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-04-25T04:35:34.4075256Z 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-04-25T04:35:34.4080675Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:34.4230199Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:34.4236400Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-04-25T04:35:34.4242765Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4266963Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4273051Z 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-04-25T04:35:34.4279438Z 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-04-25T04:35:34.4290609Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4296710Z 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-04-25T04:35:34.4302754Z 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-04-25T04:35:34.4309756Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4315307Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4321879Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4327844Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4333079Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4338918Z 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-04-25T04:35:34.4345012Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4350630Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-04-25T04:35:34.4355943Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:35:34.4361366Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.4368137Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-04-25T04:35:34.4371626Z 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-04-25T04:35:34.4377080Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4382748Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4395058Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4400170Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4406094Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4411551Z 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-04-25T04:35:34.4418060Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4423626Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4429967Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4435462Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4440882Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4446796Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4451854Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4457138Z 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-04-25T04:35:34.4462222Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4468342Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4473704Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4479152Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4484576Z 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-04-25T04:35:34.4490840Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4497066Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4511899Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4517464Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4522692Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-04-25T04:35:34.4529175Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-04-25T04:35:34.4532626Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4537937Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4543313Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4554575Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4558020Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4561308Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4566560Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4571656Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4584233Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4590224Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4595774Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:35:34.4600071Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4605355Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4617500Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4622603Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4627726Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:35:34.4631767Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4637354Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4642583Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4648116Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.4656010Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-04-25T04:35:34.4659329Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4670909Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:35:34.4671784Z 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-04-25T04:35:34.4675622Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4681090Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4694716Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4702566Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4708047Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4714081Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4720433Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4726154Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4732308Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4738106Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4743398Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4749592Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4755716Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4762596Z 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-04-25T04:35:34.4768525Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4774453Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4779968Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4783233Z 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-04-25T04:35:34.4788301Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4793177Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4798962Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4812543Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:34.4815762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:34.4820990Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:34.4826481Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:35:34.4836326Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4841874Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4846939Z 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-04-25T04:35:34.4852112Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4858249Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-04-25T04:35:34.4863033Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4875200Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4880450Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4886772Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4892650Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4898686Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4903826Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4909521Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4913367Z 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-04-25T04:35:34.4920501Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4926505Z 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-04-25T04:35:34.4938884Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4944460Z 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-04-25T04:35:34.4950082Z 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-04-25T04:35:34.4955486Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4960896Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4966451Z 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-04-25T04:35:34.4972107Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-04-25T04:35:34.4976418Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4982963Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4988907Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.4994560Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5001828Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5012903Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5018063Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5023309Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5030129Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-04-25T04:35:34.5033479Z 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-04-25T04:35:34.5038637Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-04-25T04:35:34.5042849Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:35:34.5046916Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5052471Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5057529Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5062808Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5068744Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5077777Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5083994Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5090988Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5096612Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-04-25T04:35:34.5099822Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-04-25T04:35:34.5104953Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-04-25T04:35:34.5109929Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-04-25T04:35:34.5113999Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-04-25T04:35:34.5118890Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5125054Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5130489Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5143236Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5148717Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5155389Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5160790Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5166091Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5171762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5177407Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5183558Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5188906Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5194206Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5199174Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5211378Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5216580Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5222813Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-04-25T04:35:34.5226153Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5232589Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5238425Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5244229Z 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-04-25T04:35:34.5256096Z 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-04-25T04:35:34.5261482Z 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-04-25T04:35:34.5267084Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5272454Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5278401Z 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-04-25T04:35:34.5284699Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5290468Z 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-04-25T04:35:34.5296464Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5301683Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5307590Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5312973Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5318874Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5325507Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5331219Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5338272Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5344177Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5355427Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:35:34.5359063Z 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-04-25T04:35:34.5364601Z 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-04-25T04:35:34.5369906Z 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-04-25T04:35:34.5384679Z 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-04-25T04:35:34.5390246Z 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-04-25T04:35:34.5395843Z 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-04-25T04:35:34.5401388Z 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-04-25T04:35:34.5406874Z 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-04-25T04:35:34.5413045Z 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-04-25T04:35:34.5436632Z 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-04-25T04:35:34.5442665Z 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-04-25T04:35:34.5448802Z 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-04-25T04:35:34.5454850Z 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-04-25T04:35:34.5460786Z 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-04-25T04:35:34.5466540Z 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-04-25T04:35:34.5472036Z 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-04-25T04:35:34.5477831Z 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-04-25T04:35:34.5483900Z 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-04-25T04:35:34.5489373Z 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-04-25T04:35:34.5500779Z 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-04-25T04:35:34.5506331Z 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-04-25T04:35:34.5511929Z 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-04-25T04:35:34.5517625Z 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-04-25T04:35:34.5521814Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5528631Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-04-25T04:35:34.5532976Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5559929Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5566214Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5572280Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5578238Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5583694Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5592241Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5598024Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-04-25T04:35:34.5601199Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5606454Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5612372Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5618988Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5624518Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5637866Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5643252Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5648575Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_scaled_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5653868Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:35:34.5658630Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5670002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5678545Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5684315Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5689779Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5695786Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5702035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5707566Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5713682Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5719108Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5725283Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-04-25T04:35:34.5728539Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:35:34.5734580Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:35:34.5740060Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\pt2_archive_constants.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:35:34.5745232Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:35:34.5750656Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5757499Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5775472Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5781227Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-04-25T04:35:34.5784643Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5790391Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5795992Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5801449Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5814972Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5820396Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5825785Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5831132Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5836681Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5842114Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5847813Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5854657Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5861777Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:35:34.5866911Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5874969Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5880115Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5886785Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5892990Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5898504Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5904330Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5910185Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5921622Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5926910Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5932384Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5939327Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5944848Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5950359Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5955993Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:35:34.5962051Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.5968147Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-04-25T04:35:34.5971184Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.5976521Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.5981597Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.5986427Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.5991477Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6003232Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6008565Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6013673Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6018596Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6023716Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6028578Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:35:34.6034053Z creating build\bdist.win-amd64\wheel\torch\_library 2025-04-25T04:35:34.6044239Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6049347Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6055191Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6060541Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6075002Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6080254Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6085539Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6090717Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6095789Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6101327Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:35:34.6106306Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6111585Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6117689Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-04-25T04:35:34.6120816Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:35:34.6126159Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:35:34.6131350Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:35:34.6137398Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:35:34.6148143Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:35:34.6153287Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6158562Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6166761Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6172439Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-04-25T04:35:34.6175545Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6180846Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6186303Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6191606Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-04-25T04:35:34.6194947Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-04-25T04:35:34.6201315Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-04-25T04:35:34.6206417Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6211696Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6223598Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6228921Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6234427Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6239619Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6246109Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6251649Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6257392Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6262844Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6268443Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6273855Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6279799Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6285059Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:35:34.6290139Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6296749Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-04-25T04:35:34.6299863Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:35:34.6305805Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:35:34.6311906Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:35:34.6317506Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:35:34.6322846Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:35:34.6339940Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-04-25T04:35:34.6343194Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-04-25T04:35:34.6348830Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-04-25T04:35:34.6355278Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6361029Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-04-25T04:35:34.6364102Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:35:34.6370106Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-04-25T04:35:34.6373143Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-04-25T04:35:34.6378552Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-04-25T04:35:34.6381749Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-04-25T04:35:34.6385036Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-04-25T04:35:34.6390838Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-04-25T04:35:34.6395945Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-04-25T04:35:34.6399125Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-04-25T04:35:34.6404597Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:35:34.6409666Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:35:34.6424222Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6446547Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6451893Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6457151Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6462347Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-04-25T04:35:34.6465920Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:35:34.6471134Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:35:34.6476353Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:35:34.6486479Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-04-25T04:35:34.6489608Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6495483Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6502413Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6512430Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6518239Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6524979Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6530322Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6535548Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:35:34.6540390Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6547154Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6554693Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6560579Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6564950Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6574395Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6580246Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6591711Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-04-25T04:35:34.6595028Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-04-25T04:35:34.6598256Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:35:34.6603919Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:35:34.6609106Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:35:34.6613919Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-04-25T04:35:34.6618374Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6623248Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6639124Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6644615Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6650342Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6655660Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6666336Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:35:34.6680686Z creating build\bdist.win-amd64\wheel\torchgen 2025-04-25T04:35:34.6683629Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-04-25T04:35:34.6686758Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-04-25T04:35:34.6692133Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-04-25T04:35:34.6696863Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-04-25T04:35:34.6699916Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6705602Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6711297Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6716584Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6721586Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6733478Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6738351Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6743463Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6749444Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6755061Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6761022Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-04-25T04:35:34.6764163Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:35:34.6769356Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:35:34.6774483Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:35:34.6779669Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:35:34.6784513Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6789654Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6795423Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:35:34.6799615Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6805376Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6810731Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-04-25T04:35:34.6813821Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6819505Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6824759Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6830072Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6841662Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6847213Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:35:34.6852582Z creating build\bdist.win-amd64\wheel\torchgen\executorch 2025-04-25T04:35:34.6861509Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api 2025-04-25T04:35:34.6864754Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\custom_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:35:34.6870309Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\et_cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:35:34.6875876Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api\types 2025-04-25T04:35:34.6879238Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-04-25T04:35:34.6884447Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-04-25T04:35:34.6889711Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-04-25T04:35:34.6894670Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:35:34.6900013Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:35:34.6904243Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\model.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:35:34.6909511Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\parse.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:35:34.6914909Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:35:34.6919231Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6926429Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6932876Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6938826Z copying build\lib.win-amd64-cpython-39\torchgen\gen_executorch.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6945561Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6952113Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6958122Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6963481Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6968919Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6974217Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6981497Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.6987437Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-04-25T04:35:34.6990939Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-04-25T04:35:34.6996551Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-04-25T04:35:34.7001515Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-04-25T04:35:34.7013239Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-04-25T04:35:34.7016548Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-04-25T04:35:34.7019827Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-04-25T04:35:34.7023179Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-04-25T04:35:34.7033907Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-04-25T04:35:34.7040546Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7043866Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7049477Z 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-04-25T04:35:34.7055158Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7068047Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7073360Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7078842Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7084208Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7089490Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7094483Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7099369Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7104346Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7127251Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7132503Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7137810Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7143015Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7148112Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7153718Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7158900Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7164198Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7175868Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7181432Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7186431Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7191355Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7196920Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7201954Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7207275Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7212665Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7218108Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7223206Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7234504Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7239931Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7245524Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7250663Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7256723Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7262227Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7267702Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7272926Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7278473Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7291257Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-04-25T04:35:34.7297184Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-04-25T04:35:34.7300770Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7305841Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7311237Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7316595Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7322043Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7337695Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7343116Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7348603Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7354938Z 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-04-25T04:35:34.7361077Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7366993Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7372952Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7378347Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7384970Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7390464Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7397117Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7403436Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7407211Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7412737Z 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-04-25T04:35:34.7417847Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7431455Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7437782Z 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-04-25T04:35:34.7442894Z 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-04-25T04:35:34.7448349Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7453837Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7459384Z 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-04-25T04:35:34.7465015Z 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-04-25T04:35:34.7470338Z 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-04-25T04:35:34.7475934Z 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-04-25T04:35:34.7481332Z 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-04-25T04:35:34.7487069Z 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-04-25T04:35:34.7492672Z 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-04-25T04:35:34.7498286Z 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-04-25T04:35:34.7503754Z 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-04-25T04:35:34.7521645Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7526983Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7532285Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7537687Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7542992Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7548041Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-04-25T04:35:34.7553216Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:35:34.7558467Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-04-25T04:35:34.7561693Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:35:34.7566955Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:35:34.7572119Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:35:34.7576548Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-04-25T04:35:34.7579840Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:35:34.7585210Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:35:34.7591119Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:35:34.7603927Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:35:34.7608231Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.7614133Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.7625411Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:35:34.7636850Z running install_egg_info 2025-04-25T04:35:34.7775716Z running egg_info 2025-04-25T04:35:34.7855612Z creating torch.egg-info 2025-04-25T04:35:34.7858203Z writing torch.egg-info\PKG-INFO 2025-04-25T04:35:34.7885293Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-04-25T04:35:34.7889488Z writing entry points to torch.egg-info\entry_points.txt 2025-04-25T04:35:34.7903071Z writing requirements to torch.egg-info\requires.txt 2025-04-25T04:35:34.7906861Z writing top-level names to torch.egg-info\top_level.txt 2025-04-25T04:35:34.7910033Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:35:35.9426279Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:35:35.9432600Z reading manifest template 'MANIFEST.in' 2025-04-25T04:35:38.6124990Z warning: no files found matching '*.*' under directory 'ios' 2025-04-25T04:36:06.4010705Z warning: no files found matching '*.*' under directory 'modules' 2025-04-25T04:36:06.6006533Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-04-25T04:36:06.7483448Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-04-25T04:36:06.8965405Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-04-25T04:36:07.0444735Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-04-25T04:36:07.4564925Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-04-25T04:36:07.4565457Z adding license file 'LICENSE' 2025-04-25T04:36:07.4565729Z adding license file 'NOTICE' 2025-04-25T04:36:14.5801038Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:36:14.6336711Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.8.0a0+gitb68c0ef-py3.9.egg-info 2025-04-25T04:36:14.6452474Z running install_scripts 2025-04-25T04:36:14.6472228Z 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-04-25T04:36:14.6473094Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-04-25T04:36:14.7487605Z creating build\bdist.win-amd64\wheel\torch-2.8.0a0+gitb68c0ef.dist-info\WHEEL 2025-04-25T04:36:14.7502027Z creating 'dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-04-25T04:36:14.7741901Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-04-25T04:36:14.7763744Z adding 'functorch/__init__.py' 2025-04-25T04:36:14.7767747Z adding 'functorch/_src/__init__.py' 2025-04-25T04:36:14.7771413Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-04-25T04:36:14.7775039Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-04-25T04:36:14.7778774Z adding 'functorch/_src/make_functional/__init__.py' 2025-04-25T04:36:14.7782550Z adding 'functorch/_src/vmap/__init__.py' 2025-04-25T04:36:14.7786220Z adding 'functorch/compile/__init__.py' 2025-04-25T04:36:14.7791402Z adding 'functorch/dim/__init__.py' 2025-04-25T04:36:14.7794849Z adding 'functorch/dim/batch_tensor.py' 2025-04-25T04:36:14.7798257Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-04-25T04:36:14.7802130Z adding 'functorch/dim/dim.py' 2025-04-25T04:36:14.7805889Z adding 'functorch/dim/magic_trace.py' 2025-04-25T04:36:14.7810183Z adding 'functorch/dim/op_properties.py' 2025-04-25T04:36:14.7819336Z adding 'functorch/dim/reference.py' 2025-04-25T04:36:14.7823164Z adding 'functorch/dim/tree_map.py' 2025-04-25T04:36:14.7826977Z adding 'functorch/dim/wrap_type.py' 2025-04-25T04:36:14.7831438Z adding 'functorch/einops/__init__.py' 2025-04-25T04:36:14.7837710Z adding 'functorch/einops/_parsing.py' 2025-04-25T04:36:14.7843092Z adding 'functorch/einops/rearrange.py' 2025-04-25T04:36:14.7847213Z adding 'functorch/experimental/__init__.py' 2025-04-25T04:36:14.7850089Z adding 'functorch/experimental/control_flow.py' 2025-04-25T04:36:14.7852955Z adding 'functorch/experimental/ops.py' 2025-04-25T04:36:14.7861664Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-04-25T04:36:14.7864995Z adding 'torch/_VF.py' 2025-04-25T04:36:14.8086561Z adding 'torch/_VF.pyi' 2025-04-25T04:36:14.8117160Z adding 'torch/__config__.py' 2025-04-25T04:36:14.8120625Z adding 'torch/__future__.py' 2025-04-25T04:36:14.8158436Z adding 'torch/__init__.py' 2025-04-25T04:36:14.8169039Z adding 'torch/_appdirs.py' 2025-04-25T04:36:14.8173106Z adding 'torch/_classes.py' 2025-04-25T04:36:14.8176451Z adding 'torch/_compile.py' 2025-04-25T04:36:14.8182255Z adding 'torch/_custom_ops.py' 2025-04-25T04:36:14.8186363Z adding 'torch/_deploy.py' 2025-04-25T04:36:14.8189239Z adding 'torch/_environment.py' 2025-04-25T04:36:14.8203781Z adding 'torch/_guards.py' 2025-04-25T04:36:14.8226895Z adding 'torch/_jit_internal.py' 2025-04-25T04:36:14.8232402Z adding 'torch/_linalg_utils.py' 2025-04-25T04:36:14.8248445Z adding 'torch/_lobpcg.py' 2025-04-25T04:36:14.8254986Z adding 'torch/_lowrank.py' 2025-04-25T04:36:14.8328574Z adding 'torch/_meta_registrations.py' 2025-04-25T04:36:14.8338417Z adding 'torch/_namedtensor_internals.py' 2025-04-25T04:36:14.8360554Z adding 'torch/_ops.py' 2025-04-25T04:36:14.8366849Z adding 'torch/_python_dispatcher.py' 2025-04-25T04:36:14.8370206Z adding 'torch/_size_docs.py' 2025-04-25T04:36:14.8374234Z adding 'torch/_sources.py' 2025-04-25T04:36:14.8377595Z adding 'torch/_storage_docs.py' 2025-04-25T04:36:14.8380685Z adding 'torch/_streambase.py' 2025-04-25T04:36:14.8404927Z adding 'torch/_tensor.py' 2025-04-25T04:36:14.8449287Z adding 'torch/_tensor_docs.py' 2025-04-25T04:36:14.8462866Z adding 'torch/_tensor_str.py' 2025-04-25T04:36:14.8466679Z adding 'torch/_thread_safe_fork.py' 2025-04-25T04:36:14.8602067Z adding 'torch/_torch_docs.py' 2025-04-25T04:36:14.8627279Z adding 'torch/_utils.py' 2025-04-25T04:36:14.8633632Z adding 'torch/_utils_internal.py' 2025-04-25T04:36:14.8639199Z adding 'torch/_vmap_internals.py' 2025-04-25T04:36:14.8647908Z adding 'torch/_weights_only_unpickler.py' 2025-04-25T04:36:14.8679443Z adding 'torch/functional.py' 2025-04-25T04:36:14.8694219Z adding 'torch/hub.py' 2025-04-25T04:36:14.8716846Z adding 'torch/library.py' 2025-04-25T04:36:14.8745065Z adding 'torch/overrides.py' 2025-04-25T04:36:14.8750506Z adding 'torch/py.typed' 2025-04-25T04:36:14.8755302Z adding 'torch/quasirandom.py' 2025-04-25T04:36:14.8760282Z adding 'torch/random.py' 2025-04-25T04:36:14.8763754Z adding 'torch/return_types.py' 2025-04-25T04:36:14.8767953Z adding 'torch/return_types.pyi' 2025-04-25T04:36:14.8797808Z adding 'torch/serialization.py' 2025-04-25T04:36:14.8815134Z adding 'torch/storage.py' 2025-04-25T04:36:14.8819923Z adding 'torch/torch_version.py' 2025-04-25T04:36:14.8823812Z adding 'torch/types.py' 2025-04-25T04:36:14.8826822Z adding 'torch/version.py' 2025-04-25T04:36:14.9049769Z adding 'torch/_C/_VariableFunctions.pyi' 2025-04-25T04:36:14.9166443Z adding 'torch/_C/__init__.pyi' 2025-04-25T04:36:14.9179004Z adding 'torch/_C/_aoti.pyi' 2025-04-25T04:36:14.9182965Z adding 'torch/_C/_autograd.pyi' 2025-04-25T04:36:14.9186074Z adding 'torch/_C/_cpu.pyi' 2025-04-25T04:36:14.9189075Z adding 'torch/_C/_cudnn.pyi' 2025-04-25T04:36:14.9191839Z adding 'torch/_C/_cusparselt.pyi' 2025-04-25T04:36:14.9195090Z adding 'torch/_C/_distributed_autograd.pyi' 2025-04-25T04:36:14.9202563Z adding 'torch/_C/_distributed_c10d.pyi' 2025-04-25T04:36:14.9207389Z adding 'torch/_C/_distributed_rpc.pyi' 2025-04-25T04:36:14.9210698Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-04-25T04:36:14.9213708Z adding 'torch/_C/_export.pyi' 2025-04-25T04:36:14.9216720Z adding 'torch/_C/_functions.pyi' 2025-04-25T04:36:14.9220354Z adding 'torch/_C/_functorch.pyi' 2025-04-25T04:36:14.9223336Z adding 'torch/_C/_instruction_counter.pyi' 2025-04-25T04:36:14.9226154Z adding 'torch/_C/_itt.pyi' 2025-04-25T04:36:14.9229240Z adding 'torch/_C/_lazy.pyi' 2025-04-25T04:36:14.9232215Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-04-25T04:36:14.9235530Z adding 'torch/_C/_monitor.pyi' 2025-04-25T04:36:14.9239121Z adding 'torch/_C/_nn.pyi' 2025-04-25T04:36:14.9242246Z adding 'torch/_C/_nvtx.pyi' 2025-04-25T04:36:14.9245221Z adding 'torch/_C/_onnx.pyi' 2025-04-25T04:36:14.9249476Z adding 'torch/_C/_profiler.pyi' 2025-04-25T04:36:14.9252607Z adding 'torch/_C/_verbose.pyi' 2025-04-25T04:36:14.9256298Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-04-25T04:36:14.9259661Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-04-25T04:36:14.9263052Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-04-25T04:36:14.9266809Z adding 'torch/_C/_dynamo/guards.pyi' 2025-04-25T04:36:14.9270802Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-04-25T04:36:14.9274994Z adding 'torch/_awaits/__init__.py' 2025-04-25T04:36:14.9278537Z adding 'torch/_custom_op/__init__.py' 2025-04-25T04:36:14.9284289Z adding 'torch/_custom_op/autograd.py' 2025-04-25T04:36:14.9294281Z adding 'torch/_custom_op/impl.py' 2025-04-25T04:36:14.9303087Z adding 'torch/_decomp/__init__.py' 2025-04-25T04:36:14.9364665Z adding 'torch/_decomp/decompositions.py' 2025-04-25T04:36:14.9374391Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-04-25T04:36:14.9379940Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-04-25T04:36:14.9383930Z adding 'torch/_dispatch/__init__.py' 2025-04-25T04:36:14.9388318Z adding 'torch/_dispatch/python.py' 2025-04-25T04:36:14.9394310Z adding 'torch/_dynamo/__init__.py' 2025-04-25T04:36:14.9399801Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-04-25T04:36:14.9404849Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-04-25T04:36:14.9426379Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-04-25T04:36:14.9432784Z adding 'torch/_dynamo/cache_size.py' 2025-04-25T04:36:14.9436821Z adding 'torch/_dynamo/callback.py' 2025-04-25T04:36:14.9440374Z adding 'torch/_dynamo/code_context.py' 2025-04-25T04:36:14.9450224Z adding 'torch/_dynamo/codegen.py' 2025-04-25T04:36:14.9470002Z adding 'torch/_dynamo/compiled_autograd.py' 2025-04-25T04:36:14.9477693Z adding 'torch/_dynamo/comptime.py' 2025-04-25T04:36:14.9490579Z adding 'torch/_dynamo/config.py' 2025-04-25T04:36:14.9510779Z adding 'torch/_dynamo/convert_frame.py' 2025-04-25T04:36:14.9515751Z adding 'torch/_dynamo/create_parameter_op.py' 2025-04-25T04:36:14.9518991Z adding 'torch/_dynamo/current_scope_id.py' 2025-04-25T04:36:14.9531381Z adding 'torch/_dynamo/debug_utils.py' 2025-04-25T04:36:14.9542478Z adding 'torch/_dynamo/decorators.py' 2025-04-25T04:36:14.9548769Z adding 'torch/_dynamo/device_interface.py' 2025-04-25T04:36:14.9552437Z adding 'torch/_dynamo/distributed.py' 2025-04-25T04:36:14.9579907Z adding 'torch/_dynamo/eval_frame.py' 2025-04-25T04:36:14.9590765Z adding 'torch/_dynamo/exc.py' 2025-04-25T04:36:14.9595805Z adding 'torch/_dynamo/external_utils.py' 2025-04-25T04:36:14.9599989Z adding 'torch/_dynamo/funcname_cache.py' 2025-04-25T04:36:14.9603394Z adding 'torch/_dynamo/graph_break_hints.py' 2025-04-25T04:36:14.9608526Z adding 'torch/_dynamo/graph_deduplication.py' 2025-04-25T04:36:14.9615842Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-04-25T04:36:14.9619535Z adding 'torch/_dynamo/graph_utils.py' 2025-04-25T04:36:14.9664193Z adding 'torch/_dynamo/guards.py' 2025-04-25T04:36:14.9670465Z adding 'torch/_dynamo/hooks.py' 2025-04-25T04:36:14.9674119Z adding 'torch/_dynamo/logging.py' 2025-04-25T04:36:14.9678777Z adding 'torch/_dynamo/metrics_context.py' 2025-04-25T04:36:14.9683289Z adding 'torch/_dynamo/mutation_guard.py' 2025-04-25T04:36:14.9728504Z adding 'torch/_dynamo/output_graph.py' 2025-04-25T04:36:14.9742002Z adding 'torch/_dynamo/pgo.py' 2025-04-25T04:36:14.9746993Z adding 'torch/_dynamo/profiler.py' 2025-04-25T04:36:14.9751188Z adding 'torch/_dynamo/replay_record.py' 2025-04-25T04:36:14.9760700Z adding 'torch/_dynamo/resume_execution.py' 2025-04-25T04:36:14.9776711Z adding 'torch/_dynamo/side_effects.py' 2025-04-25T04:36:14.9786373Z adding 'torch/_dynamo/source.py' 2025-04-25T04:36:14.9843675Z adding 'torch/_dynamo/symbolic_convert.py' 2025-04-25T04:36:14.9851333Z adding 'torch/_dynamo/tensor_version_op.py' 2025-04-25T04:36:14.9855210Z adding 'torch/_dynamo/test_case.py' 2025-04-25T04:36:14.9861282Z adding 'torch/_dynamo/test_minifier_common.py' 2025-04-25T04:36:14.9868898Z adding 'torch/_dynamo/testing.py' 2025-04-25T04:36:14.9907094Z adding 'torch/_dynamo/trace_rules.py' 2025-04-25T04:36:14.9915292Z adding 'torch/_dynamo/types.py' 2025-04-25T04:36:14.9974707Z adding 'torch/_dynamo/utils.py' 2025-04-25T04:36:14.9982263Z adding 'torch/_dynamo/backends/__init__.py' 2025-04-25T04:36:14.9986369Z adding 'torch/_dynamo/backends/common.py' 2025-04-25T04:36:14.9991641Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-04-25T04:36:14.9999054Z adding 'torch/_dynamo/backends/debugging.py' 2025-04-25T04:36:15.0009924Z adding 'torch/_dynamo/backends/distributed.py' 2025-04-25T04:36:15.0013661Z adding 'torch/_dynamo/backends/inductor.py' 2025-04-25T04:36:15.0016926Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-04-25T04:36:15.0021181Z adding 'torch/_dynamo/backends/registry.py' 2025-04-25T04:36:15.0024270Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-04-25T04:36:15.0027402Z adding 'torch/_dynamo/backends/torchxla.py' 2025-04-25T04:36:15.0032147Z adding 'torch/_dynamo/backends/tvm.py' 2025-04-25T04:36:15.0038289Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-04-25T04:36:15.0041759Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-04-25T04:36:15.0044911Z adding 'torch/_dynamo/polyfills/functools.py' 2025-04-25T04:36:15.0048038Z adding 'torch/_dynamo/polyfills/fx.py' 2025-04-25T04:36:15.0052361Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-04-25T04:36:15.0055719Z adding 'torch/_dynamo/polyfills/loader.py' 2025-04-25T04:36:15.0059197Z adding 'torch/_dynamo/polyfills/operator.py' 2025-04-25T04:36:15.0062369Z adding 'torch/_dynamo/polyfills/os.py' 2025-04-25T04:36:15.0068458Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-04-25T04:36:15.0071843Z adding 'torch/_dynamo/polyfills/sys.py' 2025-04-25T04:36:15.0075182Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-04-25T04:36:15.0078760Z adding 'torch/_dynamo/repro/__init__.py' 2025-04-25T04:36:15.0091859Z adding 'torch/_dynamo/repro/after_aot.py' 2025-04-25T04:36:15.0100628Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-04-25T04:36:15.0109589Z adding 'torch/_dynamo/repro/aoti.py' 2025-04-25T04:36:15.0115433Z adding 'torch/_dynamo/variables/__init__.py' 2025-04-25T04:36:15.0124509Z adding 'torch/_dynamo/variables/base.py' 2025-04-25T04:36:15.0173772Z adding 'torch/_dynamo/variables/builder.py' 2025-04-25T04:36:15.0206252Z adding 'torch/_dynamo/variables/builtin.py' 2025-04-25T04:36:15.0215346Z adding 'torch/_dynamo/variables/constant.py' 2025-04-25T04:36:15.0230044Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-04-25T04:36:15.0242985Z adding 'torch/_dynamo/variables/dicts.py' 2025-04-25T04:36:15.0250138Z adding 'torch/_dynamo/variables/distributed.py' 2025-04-25T04:36:15.0277007Z adding 'torch/_dynamo/variables/functions.py' 2025-04-25T04:36:15.0315779Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-04-25T04:36:15.0325651Z adding 'torch/_dynamo/variables/iter.py' 2025-04-25T04:36:15.0330785Z adding 'torch/_dynamo/variables/lazy.py' 2025-04-25T04:36:15.0343085Z adding 'torch/_dynamo/variables/lists.py' 2025-04-25T04:36:15.0367025Z adding 'torch/_dynamo/variables/misc.py' 2025-04-25T04:36:15.0384849Z adding 'torch/_dynamo/variables/nn_module.py' 2025-04-25T04:36:15.0393295Z adding 'torch/_dynamo/variables/optimizer.py' 2025-04-25T04:36:15.0397582Z adding 'torch/_dynamo/variables/script_object.py' 2025-04-25T04:36:15.0401151Z adding 'torch/_dynamo/variables/sdpa.py' 2025-04-25T04:36:15.0421039Z adding 'torch/_dynamo/variables/tensor.py' 2025-04-25T04:36:15.0444353Z adding 'torch/_dynamo/variables/torch.py' 2025-04-25T04:36:15.0456408Z adding 'torch/_dynamo/variables/torch_function.py' 2025-04-25T04:36:15.0478796Z adding 'torch/_dynamo/variables/user_defined.py' 2025-04-25T04:36:15.0485831Z adding 'torch/_export/__init__.py' 2025-04-25T04:36:15.0508592Z adding 'torch/_export/converter.py' 2025-04-25T04:36:15.0513622Z adding 'torch/_export/error.py' 2025-04-25T04:36:15.0526366Z adding 'torch/_export/non_strict_utils.py' 2025-04-25T04:36:15.0533804Z adding 'torch/_export/pass_base.py' 2025-04-25T04:36:15.0538287Z adding 'torch/_export/tools.py' 2025-04-25T04:36:15.0559798Z adding 'torch/_export/utils.py' 2025-04-25T04:36:15.0568104Z adding 'torch/_export/verifier.py' 2025-04-25T04:36:15.0573641Z adding 'torch/_export/wrappers.py' 2025-04-25T04:36:15.0577601Z adding 'torch/_export/db/__init__.py' 2025-04-25T04:36:15.0581712Z adding 'torch/_export/db/case.py' 2025-04-25T04:36:15.0584872Z adding 'torch/_export/db/gen_example.py' 2025-04-25T04:36:15.0588150Z adding 'torch/_export/db/logging.py' 2025-04-25T04:36:15.0593334Z adding 'torch/_export/db/examples/__init__.py' 2025-04-25T04:36:15.0596589Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-04-25T04:36:15.0599747Z adding 'torch/_export/db/examples/autograd_function.py' 2025-04-25T04:36:15.0603121Z adding 'torch/_export/db/examples/class_method.py' 2025-04-25T04:36:15.0606648Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-04-25T04:36:15.0610427Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-04-25T04:36:15.0614479Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-04-25T04:36:15.0618164Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-04-25T04:36:15.0621746Z adding 'torch/_export/db/examples/cond_operands.py' 2025-04-25T04:36:15.0652389Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-04-25T04:36:15.0655794Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-04-25T04:36:15.0658910Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-04-25T04:36:15.0662049Z adding 'torch/_export/db/examples/decorator.py' 2025-04-25T04:36:15.0665026Z adding 'torch/_export/db/examples/dictionary.py' 2025-04-25T04:36:15.0668158Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-04-25T04:36:15.0671207Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-04-25T04:36:15.0674467Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-04-25T04:36:15.0677479Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-04-25T04:36:15.0680726Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-04-25T04:36:15.0683703Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-04-25T04:36:15.0686823Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-04-25T04:36:15.0690034Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-04-25T04:36:15.0693008Z adding 'torch/_export/db/examples/list_contains.py' 2025-04-25T04:36:15.0696073Z adding 'torch/_export/db/examples/list_unpack.py' 2025-04-25T04:36:15.0705219Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-04-25T04:36:15.0705694Z adding 'torch/_export/db/examples/nested_function.py' 2025-04-25T04:36:15.0706099Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-04-25T04:36:15.0708454Z adding 'torch/_export/db/examples/optional_input.py' 2025-04-25T04:36:15.0711316Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-04-25T04:36:15.0714543Z adding 'torch/_export/db/examples/scalar_output.py' 2025-04-25T04:36:15.0717574Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-04-25T04:36:15.0720689Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-04-25T04:36:15.0723646Z adding 'torch/_export/db/examples/static_if.py' 2025-04-25T04:36:15.0726729Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-04-25T04:36:15.0729879Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-04-25T04:36:15.0732854Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-04-25T04:36:15.0735872Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-04-25T04:36:15.0739475Z adding 'torch/_export/pass_infra/__init__.py' 2025-04-25T04:36:15.0742611Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-04-25T04:36:15.0745806Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-04-25T04:36:15.0749717Z adding 'torch/_export/passes/__init__.py' 2025-04-25T04:36:15.0753432Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-04-25T04:36:15.0758724Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-04-25T04:36:15.0763237Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-04-25T04:36:15.0769338Z adding 'torch/_export/passes/constant_folding.py' 2025-04-25T04:36:15.0773362Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-04-25T04:36:15.0777055Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-04-25T04:36:15.0783666Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-04-25T04:36:15.0787836Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-04-25T04:36:15.0792165Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-04-25T04:36:15.0801564Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-04-25T04:36:15.0805982Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-04-25T04:36:15.0809501Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-04-25T04:36:15.0814216Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-04-25T04:36:15.0818064Z adding 'torch/_export/serde/__init__.py' 2025-04-25T04:36:15.0820894Z adding 'torch/_export/serde/aoti_schema.py' 2025-04-25T04:36:15.0826279Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-04-25T04:36:15.0831128Z adding 'torch/_export/serde/export_schema.thrift' 2025-04-25T04:36:15.0837667Z adding 'torch/_export/serde/schema.py' 2025-04-25T04:36:15.0842747Z adding 'torch/_export/serde/schema.yaml' 2025-04-25T04:36:15.0851994Z adding 'torch/_export/serde/schema_check.py' 2025-04-25T04:36:15.0896499Z adding 'torch/_export/serde/serialize.py' 2025-04-25T04:36:15.0903271Z adding 'torch/_export/serde/union.py' 2025-04-25T04:36:15.0907314Z adding 'torch/_functorch/__init__.py' 2025-04-25T04:36:15.0934572Z adding 'torch/_functorch/aot_autograd.py' 2025-04-25T04:36:15.0943982Z adding 'torch/_functorch/apis.py' 2025-04-25T04:36:15.0955389Z adding 'torch/_functorch/autograd_function.py' 2025-04-25T04:36:15.0959506Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-04-25T04:36:15.0963872Z adding 'torch/_functorch/benchmark_utils.py' 2025-04-25T04:36:15.0968419Z adding 'torch/_functorch/compile_utils.py' 2025-04-25T04:36:15.0974828Z adding 'torch/_functorch/compilers.py' 2025-04-25T04:36:15.0981862Z adding 'torch/_functorch/config.py' 2025-04-25T04:36:15.0985981Z adding 'torch/_functorch/deprecated.py' 2025-04-25T04:36:15.1010747Z adding 'torch/_functorch/eager_transforms.py' 2025-04-25T04:36:15.1018151Z adding 'torch/_functorch/functional_call.py' 2025-04-25T04:36:15.1025581Z adding 'torch/_functorch/fx_minifier.py' 2025-04-25T04:36:15.1034489Z adding 'torch/_functorch/make_functional.py' 2025-04-25T04:36:15.1065640Z adding 'torch/_functorch/partitioners.py' 2025-04-25T04:36:15.1073330Z adding 'torch/_functorch/pyfunctorch.py' 2025-04-25T04:36:15.1076764Z adding 'torch/_functorch/python_key.py' 2025-04-25T04:36:15.1080027Z adding 'torch/_functorch/pytree_hacks.py' 2025-04-25T04:36:15.1088398Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-04-25T04:36:15.1092188Z adding 'torch/_functorch/utils.py' 2025-04-25T04:36:15.1100327Z adding 'torch/_functorch/vmap.py' 2025-04-25T04:36:15.1104796Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-04-25T04:36:15.1108836Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-04-25T04:36:15.1115378Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-04-25T04:36:15.1119099Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-04-25T04:36:15.1124781Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-04-25T04:36:15.1128901Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-04-25T04:36:15.1144330Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-04-25T04:36:15.1161809Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-04-25T04:36:15.1168663Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-04-25T04:36:15.1177791Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-04-25T04:36:15.1185704Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-04-25T04:36:15.1207467Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-04-25T04:36:15.1212930Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-04-25T04:36:15.1251461Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-04-25T04:36:15.1270623Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-04-25T04:36:15.1276173Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-04-25T04:36:15.1283982Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-04-25T04:36:15.1301149Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-04-25T04:36:15.1310419Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-04-25T04:36:15.1315555Z adding 'torch/_higher_order_ops/__init__.py' 2025-04-25T04:36:15.1318978Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-04-25T04:36:15.1323264Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-04-25T04:36:15.1330959Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-04-25T04:36:15.1341261Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-04-25T04:36:15.1347025Z adding 'torch/_higher_order_ops/base_hop.py' 2025-04-25T04:36:15.1358754Z adding 'torch/_higher_order_ops/cond.py' 2025-04-25T04:36:15.1364907Z adding 'torch/_higher_order_ops/effects.py' 2025-04-25T04:36:15.1369764Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-04-25T04:36:15.1373945Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-04-25T04:36:15.1385950Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-04-25T04:36:15.1389960Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-04-25T04:36:15.1394028Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-04-25T04:36:15.1401843Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-04-25T04:36:15.1407208Z adding 'torch/_higher_order_ops/map.py' 2025-04-25T04:36:15.1411628Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-04-25T04:36:15.1415332Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-04-25T04:36:15.1430637Z adding 'torch/_higher_order_ops/scan.py' 2025-04-25T04:36:15.1436041Z adding 'torch/_higher_order_ops/schema.py' 2025-04-25T04:36:15.1439835Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-04-25T04:36:15.1444469Z adding 'torch/_higher_order_ops/torchbind.py' 2025-04-25T04:36:15.1469126Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-04-25T04:36:15.1483786Z adding 'torch/_higher_order_ops/utils.py' 2025-04-25T04:36:15.1491982Z adding 'torch/_higher_order_ops/while_loop.py' 2025-04-25T04:36:15.1497644Z adding 'torch/_higher_order_ops/wrap.py' 2025-04-25T04:36:15.1502939Z adding 'torch/_inductor/__autotune_main__.py' 2025-04-25T04:36:15.1508918Z adding 'torch/_inductor/__init__.py' 2025-04-25T04:36:15.1513581Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-04-25T04:36:15.1518741Z adding 'torch/_inductor/aoti_eager.py' 2025-04-25T04:36:15.1526534Z adding 'torch/_inductor/async_compile.py' 2025-04-25T04:36:15.1536932Z adding 'torch/_inductor/autotune_process.py' 2025-04-25T04:36:15.1543085Z adding 'torch/_inductor/bounds.py' 2025-04-25T04:36:15.1549567Z adding 'torch/_inductor/choices.py' 2025-04-25T04:36:15.1595333Z adding 'torch/_inductor/codecache.py' 2025-04-25T04:36:15.1603213Z adding 'torch/_inductor/comm_analysis.py' 2025-04-25T04:36:15.1608961Z adding 'torch/_inductor/comm_lowering.py' 2025-04-25T04:36:15.1620746Z adding 'torch/_inductor/comms.py' 2025-04-25T04:36:15.1655770Z adding 'torch/_inductor/compile_fx.py' 2025-04-25T04:36:15.1662498Z adding 'torch/_inductor/compile_fx_async.py' 2025-04-25T04:36:15.1671397Z adding 'torch/_inductor/compile_fx_ext.py' 2025-04-25T04:36:15.1675816Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-04-25T04:36:15.1683833Z adding 'torch/_inductor/compiler_bisector.py' 2025-04-25T04:36:15.1712823Z adding 'torch/_inductor/config.py' 2025-04-25T04:36:15.1720690Z adding 'torch/_inductor/constant_folding.py' 2025-04-25T04:36:15.1741147Z adding 'torch/_inductor/cpp_builder.py' 2025-04-25T04:36:15.1748766Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-04-25T04:36:15.1788436Z adding 'torch/_inductor/cudagraph_trees.py' 2025-04-25T04:36:15.1797325Z adding 'torch/_inductor/cudagraph_utils.py' 2025-04-25T04:36:15.1801296Z adding 'torch/_inductor/custom_graph_pass.py' 2025-04-25T04:36:15.1813516Z adding 'torch/_inductor/debug.py' 2025-04-25T04:36:15.1827093Z adding 'torch/_inductor/decomposition.py' 2025-04-25T04:36:15.1839395Z adding 'torch/_inductor/dependencies.py' 2025-04-25T04:36:15.1845410Z adding 'torch/_inductor/dtype_propagation.py' 2025-04-25T04:36:15.1849979Z adding 'torch/_inductor/exc.py' 2025-04-25T04:36:15.1853240Z adding 'torch/_inductor/extern_node_serializer.py' 2025-04-25T04:36:15.1859402Z adding 'torch/_inductor/freezing.py' 2025-04-25T04:36:15.1862975Z adding 'torch/_inductor/freezing_utils.py' 2025-04-25T04:36:15.1877450Z adding 'torch/_inductor/fuzzer.py' 2025-04-25T04:36:15.1883586Z adding 'torch/_inductor/fx_utils.py' 2025-04-25T04:36:15.1920499Z adding 'torch/_inductor/graph.py' 2025-04-25T04:36:15.1925898Z adding 'torch/_inductor/hooks.py' 2025-04-25T04:36:15.1932075Z adding 'torch/_inductor/index_propagation.py' 2025-04-25T04:36:15.1937001Z adding 'torch/_inductor/inductor_prims.py' 2025-04-25T04:36:15.2031008Z adding 'torch/_inductor/ir.py' 2025-04-25T04:36:15.2042629Z adding 'torch/_inductor/jagged_lowerings.py' 2025-04-25T04:36:15.2052010Z adding 'torch/_inductor/loop_body.py' 2025-04-25T04:36:15.2128727Z adding 'torch/_inductor/lowering.py' 2025-04-25T04:36:15.2143331Z adding 'torch/_inductor/memory.py' 2025-04-25T04:36:15.2150097Z adding 'torch/_inductor/metrics.py' 2025-04-25T04:36:15.2160795Z adding 'torch/_inductor/mkldnn_ir.py' 2025-04-25T04:36:15.2172944Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-04-25T04:36:15.2178643Z adding 'torch/_inductor/mock_cache.py' 2025-04-25T04:36:15.2189901Z adding 'torch/_inductor/ops_handler.py' 2025-04-25T04:36:15.2195016Z adding 'torch/_inductor/optimize_indexing.py' 2025-04-25T04:36:15.2205704Z adding 'torch/_inductor/output_code.py' 2025-04-25T04:36:15.2235849Z adding 'torch/_inductor/pattern_matcher.py' 2025-04-25T04:36:15.2242115Z adding 'torch/_inductor/quantized_lowerings.py' 2025-04-25T04:36:15.2248324Z adding 'torch/_inductor/remote_cache.py' 2025-04-25T04:36:15.2313041Z adding 'torch/_inductor/scheduler.py' 2025-04-25T04:36:15.2320140Z adding 'torch/_inductor/script.ld' 2025-04-25T04:36:15.2351278Z adding 'torch/_inductor/select_algorithm.py' 2025-04-25T04:36:15.2367893Z adding 'torch/_inductor/sizevars.py' 2025-04-25T04:36:15.2373573Z adding 'torch/_inductor/standalone_compile.py' 2025-04-25T04:36:15.2378788Z adding 'torch/_inductor/subgraph_lowering.py' 2025-04-25T04:36:15.2387038Z adding 'torch/_inductor/template_heuristics.py' 2025-04-25T04:36:15.2391227Z adding 'torch/_inductor/test_case.py' 2025-04-25T04:36:15.2394446Z adding 'torch/_inductor/test_operators.py' 2025-04-25T04:36:15.2400803Z adding 'torch/_inductor/triton_bundler.py' 2025-04-25T04:36:15.2436828Z adding 'torch/_inductor/utils.py' 2025-04-25T04:36:15.2445304Z adding 'torch/_inductor/virtualized.py' 2025-04-25T04:36:15.2452518Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-04-25T04:36:15.2456602Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-04-25T04:36:15.2462304Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-04-25T04:36:15.2467915Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-04-25T04:36:15.2472274Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-04-25T04:36:15.2475856Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-04-25T04:36:15.2483902Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-04-25T04:36:15.2492158Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-04-25T04:36:15.2496972Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-04-25T04:36:15.2501236Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-04-25T04:36:15.2505312Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-04-25T04:36:15.2508430Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-04-25T04:36:15.2512744Z adding 'torch/_inductor/codegen/__init__.py' 2025-04-25T04:36:15.2516008Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-04-25T04:36:15.2520525Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-04-25T04:36:15.2550304Z adding 'torch/_inductor/codegen/common.py' 2025-04-25T04:36:15.2620642Z adding 'torch/_inductor/codegen/cpp.py' 2025-04-25T04:36:15.2630592Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-04-25T04:36:15.2644660Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-04-25T04:36:15.2666327Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-04-25T04:36:15.2675508Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-04-25T04:36:15.2693201Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-04-25T04:36:15.2706002Z adding 'torch/_inductor/codegen/cpp_prefix.h' 2025-04-25T04:36:15.2711156Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-04-25T04:36:15.2720052Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-04-25T04:36:15.2730799Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-04-25T04:36:15.2766107Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-04-25T04:36:15.2781424Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-04-25T04:36:15.2791320Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-04-25T04:36:15.2795083Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-04-25T04:36:15.2799308Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-04-25T04:36:15.2804630Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-04-25T04:36:15.2825886Z adding 'torch/_inductor/codegen/halide.py' 2025-04-25T04:36:15.2836996Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-04-25T04:36:15.2848705Z adding 'torch/_inductor/codegen/mps.py' 2025-04-25T04:36:15.2852689Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-04-25T04:36:15.2859741Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-04-25T04:36:15.2892217Z adding 'torch/_inductor/codegen/simd.py' 2025-04-25T04:36:15.2902892Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-04-25T04:36:15.2907591Z adding 'torch/_inductor/codegen/subgraph.py' 2025-04-25T04:36:15.2966202Z adding 'torch/_inductor/codegen/triton.py' 2025-04-25T04:36:15.2983424Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-04-25T04:36:15.2988838Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-04-25T04:36:15.2993783Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-04-25T04:36:15.3036192Z adding 'torch/_inductor/codegen/wrapper.py' 2025-04-25T04:36:15.3045103Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-04-25T04:36:15.3049263Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-04-25T04:36:15.3053286Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-04-25T04:36:15.3056556Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-04-25T04:36:15.3064621Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-04-25T04:36:15.3070170Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-04-25T04:36:15.3075696Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-04-25T04:36:15.3083002Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-04-25T04:36:15.3087984Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-04-25T04:36:15.3108033Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-04-25T04:36:15.3113196Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-04-25T04:36:15.3117706Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-04-25T04:36:15.3124455Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-04-25T04:36:15.3128505Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-04-25T04:36:15.3136486Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-04-25T04:36:15.3140673Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-04-25T04:36:15.3153451Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-04-25T04:36:15.3158261Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-04-25T04:36:15.3162453Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-04-25T04:36:15.3166420Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-04-25T04:36:15.3171954Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-04-25T04:36:15.3177038Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-04-25T04:36:15.3180424Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-04-25T04:36:15.3184021Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-04-25T04:36:15.3187420Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-04-25T04:36:15.3191134Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-04-25T04:36:15.3194647Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-04-25T04:36:15.3200871Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-04-25T04:36:15.3204637Z adding 'torch/_inductor/compile_worker/utils.py' 2025-04-25T04:36:15.3208730Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-04-25T04:36:15.3217773Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-04-25T04:36:15.3226477Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-04-25T04:36:15.3235744Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-04-25T04:36:15.3240207Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-04-25T04:36:15.3244015Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-04-25T04:36:15.3249700Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-04-25T04:36:15.3254665Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-04-25T04:36:15.3263605Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-04-25T04:36:15.3280257Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-04-25T04:36:15.3292649Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-04-25T04:36:15.3306650Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-04-25T04:36:15.3311735Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-04-25T04:36:15.3327254Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-04-25T04:36:15.3333105Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-04-25T04:36:15.3343397Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-04-25T04:36:15.3364670Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-04-25T04:36:15.3376870Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-04-25T04:36:15.3409738Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-04-25T04:36:15.3427790Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-04-25T04:36:15.3430497Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-04-25T04:36:15.3464594Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-04-25T04:36:15.3471715Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-04-25T04:36:15.3476201Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-04-25T04:36:15.3480533Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-04-25T04:36:15.3485018Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-04-25T04:36:15.3489705Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-04-25T04:36:15.3493824Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-04-25T04:36:15.3498233Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-04-25T04:36:15.3502950Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-04-25T04:36:15.3509363Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-04-25T04:36:15.3515178Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-04-25T04:36:15.3521172Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-04-25T04:36:15.3526224Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-04-25T04:36:15.3530611Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-04-25T04:36:15.3535003Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-04-25T04:36:15.3539460Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-04-25T04:36:15.3543743Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-04-25T04:36:15.3548150Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-04-25T04:36:15.3552825Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-04-25T04:36:15.3557356Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-04-25T04:36:15.3561982Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-04-25T04:36:15.3565625Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-04-25T04:36:15.3568826Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-04-25T04:36:15.3571974Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-04-25T04:36:15.3575591Z adding 'torch/_inductor/kernel/__init__.py' 2025-04-25T04:36:15.3580433Z adding 'torch/_inductor/kernel/bmm.py' 2025-04-25T04:36:15.3588626Z adding 'torch/_inductor/kernel/conv.py' 2025-04-25T04:36:15.3620691Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-04-25T04:36:15.3632016Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-04-25T04:36:15.3645369Z adding 'torch/_inductor/kernel/mm.py' 2025-04-25T04:36:15.3651618Z adding 'torch/_inductor/kernel/mm_common.py' 2025-04-25T04:36:15.3656168Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-04-25T04:36:15.3662571Z adding 'torch/_inductor/kernel/mm_scaled_grouped.py' 2025-04-25T04:36:15.3666641Z adding 'torch/_inductor/package/__init__.py' 2025-04-25T04:36:15.3669479Z adding 'torch/_inductor/package/build_package.py' 2025-04-25T04:36:15.3675135Z adding 'torch/_inductor/package/package.py' 2025-04-25T04:36:15.3678569Z adding 'torch/_inductor/package/pt2_archive_constants.py' 2025-04-25T04:36:15.3682256Z adding 'torch/_inductor/runtime/__init__.py' 2025-04-25T04:36:15.3690354Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-04-25T04:36:15.3696209Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-04-25T04:36:15.3699800Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-04-25T04:36:15.3703205Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-04-25T04:36:15.3708425Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-04-25T04:36:15.3712500Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-04-25T04:36:15.3717086Z adding 'torch/_inductor/runtime/hints.py' 2025-04-25T04:36:15.3721732Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-04-25T04:36:15.3727130Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-04-25T04:36:15.3731249Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-04-25T04:36:15.3740466Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-04-25T04:36:15.3776869Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-04-25T04:36:15.3783619Z adding 'torch/_lazy/__init__.py' 2025-04-25T04:36:15.3787969Z adding 'torch/_lazy/closure.py' 2025-04-25T04:36:15.3791319Z adding 'torch/_lazy/computation.py' 2025-04-25T04:36:15.3794360Z adding 'torch/_lazy/config.py' 2025-04-25T04:36:15.3797508Z adding 'torch/_lazy/debug.py' 2025-04-25T04:36:15.3800567Z adding 'torch/_lazy/device_context.py' 2025-04-25T04:36:15.3805835Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-04-25T04:36:15.3809124Z adding 'torch/_lazy/ir_cache.py' 2025-04-25T04:36:15.3812062Z adding 'torch/_lazy/metrics.py' 2025-04-25T04:36:15.3815402Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-04-25T04:36:15.3818269Z adding 'torch/_lazy/ts_backend.py' 2025-04-25T04:36:15.3822087Z adding 'torch/_library/__init__.py' 2025-04-25T04:36:15.3827055Z adding 'torch/_library/autograd.py' 2025-04-25T04:36:15.3840876Z adding 'torch/_library/custom_ops.py' 2025-04-25T04:36:15.3848072Z adding 'torch/_library/fake_class_registry.py' 2025-04-25T04:36:15.3853538Z adding 'torch/_library/fake_impl.py' 2025-04-25T04:36:15.3888883Z adding 'torch/_library/fake_profile.py' 2025-04-25T04:36:15.3895463Z adding 'torch/_library/infer_schema.py' 2025-04-25T04:36:15.3899649Z adding 'torch/_library/simple_registry.py' 2025-04-25T04:36:15.3905704Z adding 'torch/_library/triton.py' 2025-04-25T04:36:15.3913993Z adding 'torch/_library/utils.py' 2025-04-25T04:36:15.3918432Z adding 'torch/_logging/__init__.py' 2025-04-25T04:36:15.3937155Z adding 'torch/_logging/_internal.py' 2025-04-25T04:36:15.3942743Z adding 'torch/_logging/_registrations.py' 2025-04-25T04:36:15.3946491Z adding 'torch/_logging/scribe.py' 2025-04-25T04:36:15.3950253Z adding 'torch/_logging/structured.py' 2025-04-25T04:36:15.3954445Z adding 'torch/_numpy/__init__.py' 2025-04-25T04:36:15.3957814Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-04-25T04:36:15.3963790Z adding 'torch/_numpy/_casting_dicts.py' 2025-04-25T04:36:15.3970517Z adding 'torch/_numpy/_dtypes.py' 2025-04-25T04:36:15.3975248Z adding 'torch/_numpy/_dtypes_impl.py' 2025-04-25T04:36:15.3978873Z adding 'torch/_numpy/_funcs.py' 2025-04-25T04:36:15.4000469Z adding 'torch/_numpy/_funcs_impl.py' 2025-04-25T04:36:15.4004838Z adding 'torch/_numpy/_getlimits.py' 2025-04-25T04:36:15.4012000Z adding 'torch/_numpy/_ndarray.py' 2025-04-25T04:36:15.4017442Z adding 'torch/_numpy/_normalizations.py' 2025-04-25T04:36:15.4023134Z adding 'torch/_numpy/_reductions_impl.py' 2025-04-25T04:36:15.4028058Z adding 'torch/_numpy/_ufuncs.py' 2025-04-25T04:36:15.4031528Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-04-25T04:36:15.4036644Z adding 'torch/_numpy/_util.py' 2025-04-25T04:36:15.4040131Z adding 'torch/_numpy/fft.py' 2025-04-25T04:36:15.4044295Z adding 'torch/_numpy/linalg.py' 2025-04-25T04:36:15.4048317Z adding 'torch/_numpy/random.py' 2025-04-25T04:36:15.4052145Z adding 'torch/_numpy/testing/__init__.py' 2025-04-25T04:36:15.4078733Z adding 'torch/_numpy/testing/utils.py' 2025-04-25T04:36:15.4106562Z adding 'torch/_prims/__init__.py' 2025-04-25T04:36:15.4112859Z adding 'torch/_prims/context.py' 2025-04-25T04:36:15.4116404Z adding 'torch/_prims/debug_prims.py' 2025-04-25T04:36:15.4119893Z adding 'torch/_prims/executor.py' 2025-04-25T04:36:15.4125984Z adding 'torch/_prims/rng_prims.py' 2025-04-25T04:36:15.4152693Z adding 'torch/_prims_common/__init__.py' 2025-04-25T04:36:15.4161802Z adding 'torch/_prims_common/wrappers.py' 2025-04-25T04:36:15.4234726Z adding 'torch/_refs/__init__.py' 2025-04-25T04:36:15.4243601Z adding 'torch/_refs/_conversions.py' 2025-04-25T04:36:15.4250001Z adding 'torch/_refs/fft.py' 2025-04-25T04:36:15.4256962Z adding 'torch/_refs/linalg/__init__.py' 2025-04-25T04:36:15.4260951Z adding 'torch/_refs/nn/__init__.py' 2025-04-25T04:36:15.4275478Z adding 'torch/_refs/nn/functional/__init__.py' 2025-04-25T04:36:15.4281338Z adding 'torch/_refs/special/__init__.py' 2025-04-25T04:36:15.4285111Z adding 'torch/_strobelight/__init__.py' 2025-04-25T04:36:15.4290602Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-04-25T04:36:15.4295777Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-04-25T04:36:15.4299938Z adding 'torch/_subclasses/__init__.py' 2025-04-25T04:36:15.4304945Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-04-25T04:36:15.4318823Z adding 'torch/_subclasses/fake_impls.py' 2025-04-25T04:36:15.4367590Z adding 'torch/_subclasses/fake_tensor.py' 2025-04-25T04:36:15.4376853Z adding 'torch/_subclasses/fake_utils.py' 2025-04-25T04:36:15.4389849Z adding 'torch/_subclasses/functional_tensor.py' 2025-04-25T04:36:15.4420285Z adding 'torch/_subclasses/meta_utils.py' 2025-04-25T04:36:15.4427073Z adding 'torch/_subclasses/schema_check_mode.py' 2025-04-25T04:36:15.4431090Z adding 'torch/_vendor/__init__.py' 2025-04-25T04:36:15.4434947Z adding 'torch/_vendor/packaging/__init__.py' 2025-04-25T04:36:15.4438009Z adding 'torch/_vendor/packaging/_structures.py' 2025-04-25T04:36:15.4444735Z adding 'torch/_vendor/packaging/version.py' 2025-04-25T04:36:15.4450223Z adding 'torch/accelerator/__init__.py' 2025-04-25T04:36:15.4453949Z adding 'torch/accelerator/_utils.py' 2025-04-25T04:36:15.4457578Z adding 'torch/amp/__init__.py' 2025-04-25T04:36:15.4466247Z adding 'torch/amp/autocast_mode.py' 2025-04-25T04:36:15.4478278Z adding 'torch/amp/grad_scaler.py' 2025-04-25T04:36:15.4482932Z adding 'torch/ao/__init__.py' 2025-04-25T04:36:15.4487049Z adding 'torch/ao/nn/__init__.py' 2025-04-25T04:36:15.4490953Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-04-25T04:36:15.4494612Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-04-25T04:36:15.4498588Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-04-25T04:36:15.4502465Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-04-25T04:36:15.4506275Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-04-25T04:36:15.4514861Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-04-25T04:36:15.4520152Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-04-25T04:36:15.4523907Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-04-25T04:36:15.4527677Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-04-25T04:36:15.4531243Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-04-25T04:36:15.4534819Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-04-25T04:36:15.4538211Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-04-25T04:36:15.4542010Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-04-25T04:36:15.4545423Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-04-25T04:36:15.4549116Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-04-25T04:36:15.4553457Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-04-25T04:36:15.4557569Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-04-25T04:36:15.4561227Z adding 'torch/ao/nn/qat/__init__.py' 2025-04-25T04:36:15.4564690Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-04-25T04:36:15.4568206Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-04-25T04:36:15.4571389Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-04-25T04:36:15.4575088Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-04-25T04:36:15.4579464Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-04-25T04:36:15.4583750Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-04-25T04:36:15.4587615Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-04-25T04:36:15.4591266Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-04-25T04:36:15.4594973Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-04-25T04:36:15.4602879Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-04-25T04:36:15.4611191Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-04-25T04:36:15.4615734Z adding 'torch/ao/nn/quantized/__init__.py' 2025-04-25T04:36:15.4624159Z adding 'torch/ao/nn/quantized/functional.py' 2025-04-25T04:36:15.4628708Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-04-25T04:36:15.4632674Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-04-25T04:36:15.4638140Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-04-25T04:36:15.4643278Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-04-25T04:36:15.4657634Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-04-25T04:36:15.4663885Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-04-25T04:36:15.4669177Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-04-25T04:36:15.4673375Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-04-25T04:36:15.4683340Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-04-25T04:36:15.4687529Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-04-25T04:36:15.4693466Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-04-25T04:36:15.4698042Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-04-25T04:36:15.4704356Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-04-25T04:36:15.4708829Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-04-25T04:36:15.4712534Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-04-25T04:36:15.4716821Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-04-25T04:36:15.4721371Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-04-25T04:36:15.4725706Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-04-25T04:36:15.4729967Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-04-25T04:36:15.4734109Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-04-25T04:36:15.4742378Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-04-25T04:36:15.4746642Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-04-25T04:36:15.4752638Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-04-25T04:36:15.4756837Z adding 'torch/ao/nn/sparse/__init__.py' 2025-04-25T04:36:15.4760659Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-04-25T04:36:15.4765512Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-04-25T04:36:15.4769113Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-04-25T04:36:15.4772977Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-04-25T04:36:15.4777527Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-04-25T04:36:15.4781350Z adding 'torch/ao/ns/__init__.py' 2025-04-25T04:36:15.4788848Z adding 'torch/ao/ns/_numeric_suite.py' 2025-04-25T04:36:15.4803082Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-04-25T04:36:15.4807752Z adding 'torch/ao/ns/fx/__init__.py' 2025-04-25T04:36:15.4815650Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-04-25T04:36:15.4830384Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-04-25T04:36:15.4837763Z adding 'torch/ao/ns/fx/mappings.py' 2025-04-25T04:36:15.4855941Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-04-25T04:36:15.4860721Z adding 'torch/ao/ns/fx/ns_types.py' 2025-04-25T04:36:15.4865462Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-04-25T04:36:15.4871013Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-04-25T04:36:15.4879990Z adding 'torch/ao/ns/fx/utils.py' 2025-04-25T04:36:15.4885643Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-04-25T04:36:15.4889875Z adding 'torch/ao/pruning/__init__.py' 2025-04-25T04:36:15.4893110Z adding 'torch/ao/pruning/_mappings.py' 2025-04-25T04:36:15.4896964Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-04-25T04:36:15.4900593Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-04-25T04:36:15.4908568Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-04-25T04:36:15.4912717Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-04-25T04:36:15.4917696Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-04-25T04:36:15.4921754Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-04-25T04:36:15.4928095Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-04-25T04:36:15.4933428Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-04-25T04:36:15.4937840Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-04-25T04:36:15.4941617Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-04-25T04:36:15.4945239Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-04-25T04:36:15.4948616Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-04-25T04:36:15.4952836Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-04-25T04:36:15.4957597Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-04-25T04:36:15.4960825Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-04-25T04:36:15.4966644Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-04-25T04:36:15.4970484Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-04-25T04:36:15.4973907Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-04-25T04:36:15.4977390Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-04-25T04:36:15.4984244Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-04-25T04:36:15.4988093Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-04-25T04:36:15.4991750Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-04-25T04:36:15.4996254Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-04-25T04:36:15.5000244Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-04-25T04:36:15.5003861Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-04-25T04:36:15.5007547Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-04-25T04:36:15.5013767Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-04-25T04:36:15.5018032Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-04-25T04:36:15.5022223Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-04-25T04:36:15.5027446Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-04-25T04:36:15.5033427Z adding 'torch/ao/quantization/__init__.py' 2025-04-25T04:36:15.5037969Z adding 'torch/ao/quantization/_correct_bias.py' 2025-04-25T04:36:15.5043549Z adding 'torch/ao/quantization/_equalize.py' 2025-04-25T04:36:15.5048469Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-04-25T04:36:15.5056567Z adding 'torch/ao/quantization/fake_quantize.py' 2025-04-25T04:36:15.5061845Z adding 'torch/ao/quantization/fuse_modules.py' 2025-04-25T04:36:15.5067082Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-04-25T04:36:15.5093105Z adding 'torch/ao/quantization/observer.py' 2025-04-25T04:36:15.5103218Z adding 'torch/ao/quantization/qconfig.py' 2025-04-25T04:36:15.5110096Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-04-25T04:36:15.5113869Z adding 'torch/ao/quantization/quant_type.py' 2025-04-25T04:36:15.5119486Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-04-25T04:36:15.5130576Z adding 'torch/ao/quantization/quantize.py' 2025-04-25T04:36:15.5141133Z adding 'torch/ao/quantization/quantize_fx.py' 2025-04-25T04:36:15.5148042Z adding 'torch/ao/quantization/quantize_jit.py' 2025-04-25T04:36:15.5153532Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-04-25T04:36:15.5157370Z adding 'torch/ao/quantization/stubs.py' 2025-04-25T04:36:15.5168682Z adding 'torch/ao/quantization/utils.py' 2025-04-25T04:36:15.5174177Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-04-25T04:36:15.5181510Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-04-25T04:36:15.5186364Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-04-25T04:36:15.5196944Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-04-25T04:36:15.5203239Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-04-25T04:36:15.5207847Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-04-25T04:36:15.5211796Z adding 'torch/ao/quantization/backend_config/native.py' 2025-04-25T04:36:15.5214822Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-04-25T04:36:15.5220754Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-04-25T04:36:15.5225168Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-04-25T04:36:15.5228825Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-04-25T04:36:15.5234893Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-04-25T04:36:15.5238915Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-04-25T04:36:15.5243044Z adding 'torch/ao/quantization/fx/__init__.py' 2025-04-25T04:36:15.5253545Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-04-25T04:36:15.5268267Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-04-25T04:36:15.5285958Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-04-25T04:36:15.5307064Z adding 'torch/ao/quantization/fx/convert.py' 2025-04-25T04:36:15.5315058Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-04-25T04:36:15.5320275Z adding 'torch/ao/quantization/fx/fuse.py' 2025-04-25T04:36:15.5324468Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-04-25T04:36:15.5328824Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-04-25T04:36:15.5332361Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-04-25T04:36:15.5335290Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-04-25T04:36:15.5340512Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-04-25T04:36:15.5345920Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-04-25T04:36:15.5350051Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-04-25T04:36:15.5382288Z adding 'torch/ao/quantization/fx/prepare.py' 2025-04-25T04:36:15.5389650Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-04-25T04:36:15.5394791Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-04-25T04:36:15.5398319Z adding 'torch/ao/quantization/fx/tracer.py' 2025-04-25T04:36:15.5411988Z adding 'torch/ao/quantization/fx/utils.py' 2025-04-25T04:36:15.5416719Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-04-25T04:36:15.5439998Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-04-25T04:36:15.5452180Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-04-25T04:36:15.5458515Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-04-25T04:36:15.5470416Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-04-25T04:36:15.5474785Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-04-25T04:36:15.5485204Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-04-25T04:36:15.5491849Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-04-25T04:36:15.5496003Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-04-25T04:36:15.5500663Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-04-25T04:36:15.5505240Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-04-25T04:36:15.5508850Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-04-25T04:36:15.5515103Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-04-25T04:36:15.5524288Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-04-25T04:36:15.5537156Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-04-25T04:36:15.5546703Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-04-25T04:36:15.5551013Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-04-25T04:36:15.5558754Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-04-25T04:36:15.5563331Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-04-25T04:36:15.5567117Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-04-25T04:36:15.5570780Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-04-25T04:36:15.5575413Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-04-25T04:36:15.5579281Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-04-25T04:36:15.5597109Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-04-25T04:36:15.5604165Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-04-25T04:36:15.5615586Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-04-25T04:36:15.5620380Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-04-25T04:36:15.5631038Z adding 'torch/autograd/__init__.py' 2025-04-25T04:36:15.5635682Z adding 'torch/autograd/anomaly_mode.py' 2025-04-25T04:36:15.5640548Z adding 'torch/autograd/forward_ad.py' 2025-04-25T04:36:15.5653303Z adding 'torch/autograd/function.py' 2025-04-25T04:36:15.5669438Z adding 'torch/autograd/functional.py' 2025-04-25T04:36:15.5676203Z adding 'torch/autograd/grad_mode.py' 2025-04-25T04:36:15.5708951Z adding 'torch/autograd/gradcheck.py' 2025-04-25T04:36:15.5722566Z adding 'torch/autograd/graph.py' 2025-04-25T04:36:15.5740310Z adding 'torch/autograd/profiler.py' 2025-04-25T04:36:15.5746846Z adding 'torch/autograd/profiler_legacy.py' 2025-04-25T04:36:15.5761803Z adding 'torch/autograd/profiler_util.py' 2025-04-25T04:36:15.5765963Z adding 'torch/autograd/variable.py' 2025-04-25T04:36:15.5769532Z adding 'torch/autograd/_functions/__init__.py' 2025-04-25T04:36:15.5773015Z adding 'torch/autograd/_functions/tensor.py' 2025-04-25T04:36:15.5776579Z adding 'torch/autograd/_functions/utils.py' 2025-04-25T04:36:15.5780879Z adding 'torch/backends/__init__.py' 2025-04-25T04:36:15.5784614Z adding 'torch/backends/_coreml/__init__.py' 2025-04-25T04:36:15.5788640Z adding 'torch/backends/_coreml/preprocess.py' 2025-04-25T04:36:15.5792452Z adding 'torch/backends/_nnapi/__init__.py' 2025-04-25T04:36:15.5796846Z adding 'torch/backends/_nnapi/prepare.py' 2025-04-25T04:36:15.5821003Z adding 'torch/backends/_nnapi/serializer.py' 2025-04-25T04:36:15.5826677Z adding 'torch/backends/cpu/__init__.py' 2025-04-25T04:36:15.5834082Z adding 'torch/backends/cuda/__init__.py' 2025-04-25T04:36:15.5839976Z adding 'torch/backends/cudnn/__init__.py' 2025-04-25T04:36:15.5843487Z adding 'torch/backends/cudnn/rnn.py' 2025-04-25T04:36:15.5847606Z adding 'torch/backends/cusparselt/__init__.py' 2025-04-25T04:36:15.5851314Z adding 'torch/backends/kleidiai/__init__.py' 2025-04-25T04:36:15.5855024Z adding 'torch/backends/mha/__init__.py' 2025-04-25T04:36:15.5859165Z adding 'torch/backends/mkl/__init__.py' 2025-04-25T04:36:15.5863745Z adding 'torch/backends/mkldnn/__init__.py' 2025-04-25T04:36:15.5867916Z adding 'torch/backends/mps/__init__.py' 2025-04-25T04:36:15.5872142Z adding 'torch/backends/nnpack/__init__.py' 2025-04-25T04:36:15.5875626Z adding 'torch/backends/openmp/__init__.py' 2025-04-25T04:36:15.5893451Z adding 'torch/backends/opt_einsum/__init__.py' 2025-04-25T04:36:15.5893820Z adding 'torch/backends/quantized/__init__.py' 2025-04-25T04:36:15.5894131Z adding 'torch/backends/xeon/__init__.py' 2025-04-25T04:36:15.5901821Z adding 'torch/backends/xeon/run_cpu.py' 2025-04-25T04:36:15.5906746Z adding 'torch/backends/xnnpack/__init__.py' 2025-04-25T04:36:15.6115285Z adding 'torch/bin/FileStoreTest.exe' 2025-04-25T04:36:15.6345125Z adding 'torch/bin/TCPStoreTest.exe' 2025-04-25T04:36:15.6559223Z adding 'torch/bin/asmjit.dll' 2025-04-25T04:36:15.8103739Z adding 'torch/bin/fbgemm.dll' 2025-04-25T04:36:15.9642764Z adding 'torch/bin/protoc.exe' 2025-04-25T04:36:16.4110178Z adding 'torch/bin/test_api.exe' 2025-04-25T04:36:16.4609551Z adding 'torch/bin/test_edge_op_registration.exe' 2025-04-25T04:36:16.7313823Z adding 'torch/bin/test_jit.exe' 2025-04-25T04:36:16.8431096Z adding 'torch/bin/test_lazy.exe' 2025-04-25T04:36:17.1542876Z adding 'torch/bin/test_tensorexpr.exe' 2025-04-25T04:36:17.1747088Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-04-25T04:36:17.1759034Z adding 'torch/compiler/__init__.py' 2025-04-25T04:36:17.1764692Z adding 'torch/compiler/_cache.py' 2025-04-25T04:36:17.1768900Z adding 'torch/compiler/config.py' 2025-04-25T04:36:17.1772873Z adding 'torch/contrib/__init__.py' 2025-04-25T04:36:17.1777364Z adding 'torch/contrib/_tensorboard_vis.py' 2025-04-25T04:36:17.1782256Z adding 'torch/cpu/__init__.py' 2025-04-25T04:36:17.1786028Z adding 'torch/cpu/amp/__init__.py' 2025-04-25T04:36:17.1789482Z adding 'torch/cpu/amp/autocast_mode.py' 2025-04-25T04:36:17.1792722Z adding 'torch/cpu/amp/grad_scaler.py' 2025-04-25T04:36:17.1813941Z adding 'torch/cuda/__init__.py' 2025-04-25T04:36:17.1818823Z adding 'torch/cuda/_gpu_trace.py' 2025-04-25T04:36:17.1829178Z adding 'torch/cuda/_memory_viz.py' 2025-04-25T04:36:17.1838483Z adding 'torch/cuda/_sanitizer.py' 2025-04-25T04:36:17.1842408Z adding 'torch/cuda/_utils.py' 2025-04-25T04:36:17.1845518Z adding 'torch/cuda/comm.py' 2025-04-25T04:36:17.1848369Z adding 'torch/cuda/error.py' 2025-04-25T04:36:17.1852434Z adding 'torch/cuda/gds.py' 2025-04-25T04:36:17.1861376Z adding 'torch/cuda/graphs.py' 2025-04-25T04:36:17.1866397Z adding 'torch/cuda/jiterator.py' 2025-04-25T04:36:17.1882649Z adding 'torch/cuda/memory.py' 2025-04-25T04:36:17.1887809Z adding 'torch/cuda/nccl.py' 2025-04-25T04:36:17.1891762Z adding 'torch/cuda/nvtx.py' 2025-04-25T04:36:17.1895405Z adding 'torch/cuda/profiler.py' 2025-04-25T04:36:17.1899553Z adding 'torch/cuda/random.py' 2025-04-25T04:36:17.1902646Z adding 'torch/cuda/sparse.py' 2025-04-25T04:36:17.1907531Z adding 'torch/cuda/streams.py' 2025-04-25T04:36:17.1919784Z adding 'torch/cuda/tunable.py' 2025-04-25T04:36:17.1924644Z adding 'torch/cuda/amp/__init__.py' 2025-04-25T04:36:17.1927875Z adding 'torch/cuda/amp/autocast_mode.py' 2025-04-25T04:36:17.1930890Z adding 'torch/cuda/amp/common.py' 2025-04-25T04:36:17.1933987Z adding 'torch/cuda/amp/grad_scaler.py' 2025-04-25T04:36:17.1939509Z adding 'torch/distributed/__init__.py' 2025-04-25T04:36:17.1942897Z adding 'torch/distributed/_checkpointable.py' 2025-04-25T04:36:17.1946173Z adding 'torch/distributed/_composable_state.py' 2025-04-25T04:36:17.1961560Z adding 'torch/distributed/_functional_collectives.py' 2025-04-25T04:36:17.1966077Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-04-25T04:36:17.1970076Z adding 'torch/distributed/_serialization.py' 2025-04-25T04:36:17.1980462Z adding 'torch/distributed/_state_dict_utils.py' 2025-04-25T04:36:17.1984813Z adding 'torch/distributed/argparse_util.py' 2025-04-25T04:36:17.1988520Z adding 'torch/distributed/c10d_logger.py' 2025-04-25T04:36:17.1993478Z adding 'torch/distributed/collective_utils.py' 2025-04-25T04:36:17.1996901Z adding 'torch/distributed/constants.py' 2025-04-25T04:36:17.2013578Z adding 'torch/distributed/device_mesh.py' 2025-04-25T04:36:17.2086821Z adding 'torch/distributed/distributed_c10d.py' 2025-04-25T04:36:17.2096780Z adding 'torch/distributed/launch.py' 2025-04-25T04:36:17.2099935Z adding 'torch/distributed/logging_handlers.py' 2025-04-25T04:36:17.2103776Z adding 'torch/distributed/remote_device.py' 2025-04-25T04:36:17.2109122Z adding 'torch/distributed/rendezvous.py' 2025-04-25T04:36:17.2122156Z adding 'torch/distributed/run.py' 2025-04-25T04:36:17.2129260Z adding 'torch/distributed/utils.py' 2025-04-25T04:36:17.2133537Z adding 'torch/distributed/_composable/__init__.py' 2025-04-25T04:36:17.2137749Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-04-25T04:36:17.2143069Z adding 'torch/distributed/_composable/contract.py' 2025-04-25T04:36:17.2148686Z adding 'torch/distributed/_composable/replicate.py' 2025-04-25T04:36:17.2152829Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-04-25T04:36:17.2155783Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-04-25T04:36:17.2159566Z adding 'torch/distributed/_shard/__init__.py' 2025-04-25T04:36:17.2162654Z adding 'torch/distributed/_shard/_utils.py' 2025-04-25T04:36:17.2168679Z adding 'torch/distributed/_shard/api.py' 2025-04-25T04:36:17.2172748Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-04-25T04:36:17.2176230Z adding 'torch/distributed/_shard/metadata.py' 2025-04-25T04:36:17.2179360Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-04-25T04:36:17.2182601Z adding 'torch/distributed/_shard/sharder.py' 2025-04-25T04:36:17.2186465Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-04-25T04:36:17.2190583Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-04-25T04:36:17.2194816Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-04-25T04:36:17.2202037Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-04-25T04:36:17.2219909Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-04-25T04:36:17.2224368Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-04-25T04:36:17.2227714Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-04-25T04:36:17.2231290Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-04-25T04:36:17.2236361Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-04-25T04:36:17.2240310Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-04-25T04:36:17.2245361Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-04-25T04:36:17.2249657Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-04-25T04:36:17.2253696Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-04-25T04:36:17.2257330Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-04-25T04:36:17.2261613Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-04-25T04:36:17.2264936Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-04-25T04:36:17.2269435Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-04-25T04:36:17.2273442Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-04-25T04:36:17.2277349Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-04-25T04:36:17.2281297Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-04-25T04:36:17.2286377Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-04-25T04:36:17.2292030Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-04-25T04:36:17.2297645Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-04-25T04:36:17.2301803Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-04-25T04:36:17.2308009Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-04-25T04:36:17.2314270Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-04-25T04:36:17.2322207Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-04-25T04:36:17.2326317Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-04-25T04:36:17.2330158Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-04-25T04:36:17.2350846Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-04-25T04:36:17.2356392Z adding 'torch/distributed/_tensor/__init__.py' 2025-04-25T04:36:17.2359400Z adding 'torch/distributed/_tensor/api.py' 2025-04-25T04:36:17.2362503Z adding 'torch/distributed/_tensor/placement_types.py' 2025-04-25T04:36:17.2366471Z adding 'torch/distributed/_tools/__init__.py' 2025-04-25T04:36:17.2369724Z adding 'torch/distributed/_tools/common_utils.py' 2025-04-25T04:36:17.2374409Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-04-25T04:36:17.2383129Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-04-25T04:36:17.2389162Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-04-25T04:36:17.2404624Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-04-25T04:36:17.2411346Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-04-25T04:36:17.2416668Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-04-25T04:36:17.2425063Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-04-25T04:36:17.2440163Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-04-25T04:36:17.2446780Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-04-25T04:36:17.2450932Z adding 'torch/distributed/algorithms/__init__.py' 2025-04-25T04:36:17.2457206Z adding 'torch/distributed/algorithms/join.py' 2025-04-25T04:36:17.2461411Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-04-25T04:36:17.2467261Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-04-25T04:36:17.2471185Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-04-25T04:36:17.2475745Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-04-25T04:36:17.2479708Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-04-25T04:36:17.2483430Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-04-25T04:36:17.2487042Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-04-25T04:36:17.2491011Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-04-25T04:36:17.2495716Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-04-25T04:36:17.2502991Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-04-25T04:36:17.2506755Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-04-25T04:36:17.2511255Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-04-25T04:36:17.2515862Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-04-25T04:36:17.2520412Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-04-25T04:36:17.2524766Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-04-25T04:36:17.2538787Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-04-25T04:36:17.2544187Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-04-25T04:36:17.2548105Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-04-25T04:36:17.2552311Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-04-25T04:36:17.2557678Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-04-25T04:36:17.2561578Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-04-25T04:36:17.2565687Z adding 'torch/distributed/autograd/__init__.py' 2025-04-25T04:36:17.2570041Z adding 'torch/distributed/checkpoint/__init__.py' 2025-04-25T04:36:17.2573229Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-04-25T04:36:17.2578442Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-04-25T04:36:17.2581953Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-04-25T04:36:17.2585563Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-04-25T04:36:17.2590184Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-04-25T04:36:17.2593227Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-04-25T04:36:17.2597795Z adding 'torch/distributed/checkpoint/_extension.py' 2025-04-25T04:36:17.2602179Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-04-25T04:36:17.2605531Z adding 'torch/distributed/checkpoint/_hf_planner.py' 2025-04-25T04:36:17.2610525Z adding 'torch/distributed/checkpoint/_hf_storage.py' 2025-04-25T04:36:17.2614321Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-04-25T04:36:17.2618265Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-04-25T04:36:17.2621554Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-04-25T04:36:17.2625861Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-04-25T04:36:17.2628908Z adding 'torch/distributed/checkpoint/_version.py' 2025-04-25T04:36:17.2632200Z adding 'torch/distributed/checkpoint/api.py' 2025-04-25T04:36:17.2641906Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-04-25T04:36:17.2654172Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-04-25T04:36:17.2660165Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-04-25T04:36:17.2664197Z adding 'torch/distributed/checkpoint/logger.py' 2025-04-25T04:36:17.2667275Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-04-25T04:36:17.2671462Z adding 'torch/distributed/checkpoint/metadata.py' 2025-04-25T04:36:17.2677630Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-04-25T04:36:17.2684862Z adding 'torch/distributed/checkpoint/planner.py' 2025-04-25T04:36:17.2692055Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-04-25T04:36:17.2696081Z adding 'torch/distributed/checkpoint/resharding.py' 2025-04-25T04:36:17.2700194Z adding 'torch/distributed/checkpoint/staging.py' 2025-04-25T04:36:17.2718199Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-04-25T04:36:17.2725304Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-04-25T04:36:17.2731772Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-04-25T04:36:17.2735347Z adding 'torch/distributed/checkpoint/stateful.py' 2025-04-25T04:36:17.2740172Z adding 'torch/distributed/checkpoint/storage.py' 2025-04-25T04:36:17.2746919Z adding 'torch/distributed/checkpoint/utils.py' 2025-04-25T04:36:17.2752192Z adding 'torch/distributed/elastic/__init__.py' 2025-04-25T04:36:17.2755566Z adding 'torch/distributed/elastic/control_plane.py' 2025-04-25T04:36:17.2759114Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-04-25T04:36:17.2763121Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-04-25T04:36:17.2777424Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-04-25T04:36:17.2781705Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-04-25T04:36:17.2788353Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-04-25T04:36:17.2793876Z adding 'torch/distributed/elastic/events/__init__.py' 2025-04-25T04:36:17.2797709Z adding 'torch/distributed/elastic/events/api.py' 2025-04-25T04:36:17.2800832Z adding 'torch/distributed/elastic/events/handlers.py' 2025-04-25T04:36:17.2805911Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-04-25T04:36:17.2810275Z adding 'torch/distributed/elastic/metrics/api.py' 2025-04-25T04:36:17.2816017Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-04-25T04:36:17.2828429Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-04-25T04:36:17.2833063Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-04-25T04:36:17.2837411Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-04-25T04:36:17.2845209Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-04-25T04:36:17.2850051Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-04-25T04:36:17.2853265Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-04-25T04:36:17.2857445Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-04-25T04:36:17.2860550Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-04-25T04:36:17.2864132Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-04-25T04:36:17.2869285Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-04-25T04:36:17.2872828Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-04-25T04:36:17.2878813Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-04-25T04:36:17.2884735Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-04-25T04:36:17.2900238Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-04-25T04:36:17.2916219Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-04-25T04:36:17.2921825Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-04-25T04:36:17.2927066Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-04-25T04:36:17.2932105Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-04-25T04:36:17.2935754Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-04-25T04:36:17.2939834Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-04-25T04:36:17.2945099Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-04-25T04:36:17.2949648Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-04-25T04:36:17.2955233Z adding 'torch/distributed/elastic/timer/api.py' 2025-04-25T04:36:17.2958681Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-04-25T04:36:17.2965877Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-04-25T04:36:17.2970242Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-04-25T04:36:17.2974290Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-04-25T04:36:17.2977757Z adding 'torch/distributed/elastic/utils/api.py' 2025-04-25T04:36:17.2982413Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-04-25T04:36:17.2986095Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-04-25T04:36:17.2990138Z adding 'torch/distributed/elastic/utils/logging.py' 2025-04-25T04:36:17.2995707Z adding 'torch/distributed/elastic/utils/store.py' 2025-04-25T04:36:17.3000371Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-04-25T04:36:17.3004386Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-04-25T04:36:17.3008483Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-04-25T04:36:17.3012854Z adding 'torch/distributed/fsdp/__init__.py' 2025-04-25T04:36:17.3022531Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-04-25T04:36:17.3027711Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-04-25T04:36:17.3031408Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-04-25T04:36:17.3037963Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-04-25T04:36:17.3080535Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-04-25T04:36:17.3087148Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-04-25T04:36:17.3111449Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-04-25T04:36:17.3111951Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-04-25T04:36:17.3141930Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-04-25T04:36:17.3167427Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-04-25T04:36:17.3172919Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-04-25T04:36:17.3184085Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-04-25T04:36:17.3190203Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-04-25T04:36:17.3194662Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-04-25T04:36:17.3200259Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-04-25T04:36:17.3206026Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-04-25T04:36:17.3214043Z adding 'torch/distributed/fsdp/api.py' 2025-04-25T04:36:17.3247089Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-04-25T04:36:17.3256025Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-04-25T04:36:17.3265599Z adding 'torch/distributed/fsdp/wrap.py' 2025-04-25T04:36:17.3270056Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-04-25T04:36:17.3273741Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-04-25T04:36:17.3282882Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-04-25T04:36:17.3287667Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-04-25T04:36:17.3293281Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-04-25T04:36:17.3308071Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-04-25T04:36:17.3321019Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-04-25T04:36:17.3328581Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-04-25T04:36:17.3339373Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-04-25T04:36:17.3344440Z adding 'torch/distributed/launcher/__init__.py' 2025-04-25T04:36:17.3349785Z adding 'torch/distributed/launcher/api.py' 2025-04-25T04:36:17.3353901Z adding 'torch/distributed/nn/__init__.py' 2025-04-25T04:36:17.3359892Z adding 'torch/distributed/nn/functional.py' 2025-04-25T04:36:17.3363872Z adding 'torch/distributed/nn/api/__init__.py' 2025-04-25T04:36:17.3373670Z adding 'torch/distributed/nn/api/remote_module.py' 2025-04-25T04:36:17.3377984Z adding 'torch/distributed/nn/jit/__init__.py' 2025-04-25T04:36:17.3382062Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-04-25T04:36:17.3385771Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-04-25T04:36:17.3389461Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-04-25T04:36:17.3393844Z adding 'torch/distributed/optim/__init__.py' 2025-04-25T04:36:17.3397094Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-04-25T04:36:17.3401326Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-04-25T04:36:17.3405301Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-04-25T04:36:17.3409226Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-04-25T04:36:17.3413706Z adding 'torch/distributed/optim/functional_adam.py' 2025-04-25T04:36:17.3417943Z adding 'torch/distributed/optim/functional_adamax.py' 2025-04-25T04:36:17.3422458Z adding 'torch/distributed/optim/functional_adamw.py' 2025-04-25T04:36:17.3426751Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-04-25T04:36:17.3430869Z adding 'torch/distributed/optim/functional_rprop.py' 2025-04-25T04:36:17.3435198Z adding 'torch/distributed/optim/functional_sgd.py' 2025-04-25T04:36:17.3441737Z adding 'torch/distributed/optim/named_optimizer.py' 2025-04-25T04:36:17.3447645Z adding 'torch/distributed/optim/optimizer.py' 2025-04-25T04:36:17.3451996Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-04-25T04:36:17.3455678Z adding 'torch/distributed/optim/utils.py' 2025-04-25T04:36:17.3481132Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-04-25T04:36:17.3486542Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-04-25T04:36:17.3509027Z adding 'torch/distributed/pipelining/_IR.py' 2025-04-25T04:36:17.3513617Z adding 'torch/distributed/pipelining/__init__.py' 2025-04-25T04:36:17.3520842Z adding 'torch/distributed/pipelining/_backward.py' 2025-04-25T04:36:17.3524152Z adding 'torch/distributed/pipelining/_debug.py' 2025-04-25T04:36:17.3528911Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-04-25T04:36:17.3532307Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-04-25T04:36:17.3536078Z adding 'torch/distributed/pipelining/_utils.py' 2025-04-25T04:36:17.3543484Z adding 'torch/distributed/pipelining/microbatch.py' 2025-04-25T04:36:17.3575046Z adding 'torch/distributed/pipelining/schedules.py' 2025-04-25T04:36:17.3600157Z adding 'torch/distributed/pipelining/stage.py' 2025-04-25T04:36:17.3607711Z adding 'torch/distributed/rpc/__init__.py' 2025-04-25T04:36:17.3611163Z adding 'torch/distributed/rpc/_utils.py' 2025-04-25T04:36:17.3623226Z adding 'torch/distributed/rpc/api.py' 2025-04-25T04:36:17.3630922Z adding 'torch/distributed/rpc/backend_registry.py' 2025-04-25T04:36:17.3634519Z adding 'torch/distributed/rpc/constants.py' 2025-04-25T04:36:17.3638925Z adding 'torch/distributed/rpc/functions.py' 2025-04-25T04:36:17.3644473Z adding 'torch/distributed/rpc/internal.py' 2025-04-25T04:36:17.3649266Z adding 'torch/distributed/rpc/options.py' 2025-04-25T04:36:17.3652963Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-04-25T04:36:17.3657891Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-04-25T04:36:17.3661794Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-04-25T04:36:17.3665148Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-04-25T04:36:17.3669400Z adding 'torch/distributed/tensor/__init__.py' 2025-04-25T04:36:17.3687382Z adding 'torch/distributed/tensor/_api.py' 2025-04-25T04:36:17.3695152Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-04-25T04:36:17.3703089Z adding 'torch/distributed/tensor/_dispatch.py' 2025-04-25T04:36:17.3709345Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-04-25T04:36:17.3717769Z adding 'torch/distributed/tensor/_op_schema.py' 2025-04-25T04:36:17.3725075Z adding 'torch/distributed/tensor/_random.py' 2025-04-25T04:36:17.3731999Z adding 'torch/distributed/tensor/_redistribute.py' 2025-04-25T04:36:17.3740557Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-04-25T04:36:17.3746732Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-04-25T04:36:17.3751675Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-04-25T04:36:17.3758533Z adding 'torch/distributed/tensor/_utils.py' 2025-04-25T04:36:17.3761797Z adding 'torch/distributed/tensor/device_mesh.py' 2025-04-25T04:36:17.3772142Z adding 'torch/distributed/tensor/placement_types.py' 2025-04-25T04:36:17.3776667Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-04-25T04:36:17.3783002Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-04-25T04:36:17.3786959Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-04-25T04:36:17.3791520Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-04-25T04:36:17.3797077Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-04-25T04:36:17.3809017Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-04-25T04:36:17.3819135Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-04-25T04:36:17.3827234Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-04-25T04:36:17.3831028Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-04-25T04:36:17.3843827Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-04-25T04:36:17.3854346Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-04-25T04:36:17.3860603Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-04-25T04:36:17.3864850Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-04-25T04:36:17.3874280Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-04-25T04:36:17.3878806Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-04-25T04:36:17.3883532Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-04-25T04:36:17.3887712Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-04-25T04:36:17.3903939Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-04-25T04:36:17.3910725Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-04-25T04:36:17.3915612Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-04-25T04:36:17.3923659Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-04-25T04:36:17.3928118Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-04-25T04:36:17.3931519Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-04-25T04:36:17.3935011Z adding 'torch/distributed/tensor/parallel/_utils.py' 2025-04-25T04:36:17.3939652Z adding 'torch/distributed/tensor/parallel/api.py' 2025-04-25T04:36:17.3943695Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-04-25T04:36:17.3950139Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-04-25T04:36:17.3954430Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-04-25T04:36:17.3961595Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-04-25T04:36:17.3972011Z adding 'torch/distributed/tensor/parallel/style.py' 2025-04-25T04:36:17.3978872Z adding 'torch/distributions/__init__.py' 2025-04-25T04:36:17.3983194Z adding 'torch/distributions/bernoulli.py' 2025-04-25T04:36:17.3987388Z adding 'torch/distributions/beta.py' 2025-04-25T04:36:17.3992502Z adding 'torch/distributions/binomial.py' 2025-04-25T04:36:17.3997802Z adding 'torch/distributions/categorical.py' 2025-04-25T04:36:17.4001547Z adding 'torch/distributions/cauchy.py' 2025-04-25T04:36:17.4004946Z adding 'torch/distributions/chi2.py' 2025-04-25T04:36:17.4010080Z adding 'torch/distributions/constraint_registry.py' 2025-04-25T04:36:17.4017547Z adding 'torch/distributions/constraints.py' 2025-04-25T04:36:17.4023052Z adding 'torch/distributions/continuous_bernoulli.py' 2025-04-25T04:36:17.4027142Z adding 'torch/distributions/dirichlet.py' 2025-04-25T04:36:17.4033090Z adding 'torch/distributions/distribution.py' 2025-04-25T04:36:17.4036875Z adding 'torch/distributions/exp_family.py' 2025-04-25T04:36:17.4040381Z adding 'torch/distributions/exponential.py' 2025-04-25T04:36:17.4044152Z adding 'torch/distributions/fishersnedecor.py' 2025-04-25T04:36:17.4048093Z adding 'torch/distributions/gamma.py' 2025-04-25T04:36:17.4052324Z adding 'torch/distributions/generalized_pareto.py' 2025-04-25T04:36:17.4056548Z adding 'torch/distributions/geometric.py' 2025-04-25T04:36:17.4060248Z adding 'torch/distributions/gumbel.py' 2025-04-25T04:36:17.4063820Z adding 'torch/distributions/half_cauchy.py' 2025-04-25T04:36:17.4067281Z adding 'torch/distributions/half_normal.py' 2025-04-25T04:36:17.4071311Z adding 'torch/distributions/independent.py' 2025-04-25T04:36:17.4074990Z adding 'torch/distributions/inverse_gamma.py' 2025-04-25T04:36:17.4085209Z adding 'torch/distributions/kl.py' 2025-04-25T04:36:17.4089631Z adding 'torch/distributions/kumaraswamy.py' 2025-04-25T04:36:17.4093401Z adding 'torch/distributions/laplace.py' 2025-04-25T04:36:17.4098030Z adding 'torch/distributions/lkj_cholesky.py' 2025-04-25T04:36:17.4101566Z adding 'torch/distributions/log_normal.py' 2025-04-25T04:36:17.4105103Z adding 'torch/distributions/logistic_normal.py' 2025-04-25T04:36:17.4110275Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-04-25T04:36:17.4115364Z adding 'torch/distributions/mixture_same_family.py' 2025-04-25T04:36:17.4120098Z adding 'torch/distributions/multinomial.py' 2025-04-25T04:36:17.4125617Z adding 'torch/distributions/multivariate_normal.py' 2025-04-25T04:36:17.4130541Z adding 'torch/distributions/negative_binomial.py' 2025-04-25T04:36:17.4134379Z adding 'torch/distributions/normal.py' 2025-04-25T04:36:17.4138680Z adding 'torch/distributions/one_hot_categorical.py' 2025-04-25T04:36:17.4142274Z adding 'torch/distributions/pareto.py' 2025-04-25T04:36:17.4145770Z adding 'torch/distributions/poisson.py' 2025-04-25T04:36:17.4149960Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-04-25T04:36:17.4154378Z adding 'torch/distributions/relaxed_categorical.py' 2025-04-25T04:36:17.4158294Z adding 'torch/distributions/studentT.py' 2025-04-25T04:36:17.4163113Z adding 'torch/distributions/transformed_distribution.py' 2025-04-25T04:36:17.4176311Z adding 'torch/distributions/transforms.py' 2025-04-25T04:36:17.4181009Z adding 'torch/distributions/uniform.py' 2025-04-25T04:36:17.4185950Z adding 'torch/distributions/utils.py' 2025-04-25T04:36:17.4190496Z adding 'torch/distributions/von_mises.py' 2025-04-25T04:36:17.4194230Z adding 'torch/distributions/weibull.py' 2025-04-25T04:36:17.4200154Z adding 'torch/distributions/wishart.py' 2025-04-25T04:36:17.4209973Z adding 'torch/export/__init__.py' 2025-04-25T04:36:17.4217790Z adding 'torch/export/_draft_export.py' 2025-04-25T04:36:17.4221740Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-04-25T04:36:17.4227145Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-04-25T04:36:17.4230793Z adding 'torch/export/_safeguard.py' 2025-04-25T04:36:17.4238005Z adding 'torch/export/_swap.py' 2025-04-25T04:36:17.4269581Z adding 'torch/export/_trace.py' 2025-04-25T04:36:17.4275116Z adding 'torch/export/_tree_utils.py' 2025-04-25T04:36:17.4282166Z adding 'torch/export/_unlift.py' 2025-04-25T04:36:17.4285560Z adding 'torch/export/_wrapper_utils.py' 2025-04-25T04:36:17.4288563Z adding 'torch/export/custom_obj.py' 2025-04-25T04:36:17.4291563Z adding 'torch/export/custom_ops.py' 2025-04-25T04:36:17.4295438Z adding 'torch/export/decomp_utils.py' 2025-04-25T04:36:17.4314043Z adding 'torch/export/dynamic_shapes.py' 2025-04-25T04:36:17.4336702Z adding 'torch/export/exported_program.py' 2025-04-25T04:36:17.4345953Z adding 'torch/export/graph_signature.py' 2025-04-25T04:36:17.4371590Z adding 'torch/export/unflatten.py' 2025-04-25T04:36:17.4377374Z adding 'torch/export/experimental/__init__.py' 2025-04-25T04:36:17.4381567Z adding 'torch/export/passes/__init__.py' 2025-04-25T04:36:17.4394796Z adding 'torch/fft/__init__.py' 2025-04-25T04:36:17.4399920Z adding 'torch/func/__init__.py' 2025-04-25T04:36:17.4406907Z adding 'torch/futures/__init__.py' 2025-04-25T04:36:17.4412193Z adding 'torch/fx/__init__.py' 2025-04-25T04:36:17.4415421Z adding 'torch/fx/_compatibility.py' 2025-04-25T04:36:17.4423186Z adding 'torch/fx/_graph_pickler.py' 2025-04-25T04:36:17.4428238Z adding 'torch/fx/_lazy_graph_module.py' 2025-04-25T04:36:17.4432126Z adding 'torch/fx/_pytree.py' 2025-04-25T04:36:17.4450926Z adding 'torch/fx/_symbolic_trace.py' 2025-04-25T04:36:17.4455464Z adding 'torch/fx/_utils.py' 2025-04-25T04:36:17.4458662Z adding 'torch/fx/annotate.py' 2025-04-25T04:36:17.4461553Z adding 'torch/fx/config.py' 2025-04-25T04:36:17.4489244Z adding 'torch/fx/graph.py' 2025-04-25T04:36:17.4506962Z adding 'torch/fx/graph_module.py' 2025-04-25T04:36:17.4512078Z adding 'torch/fx/immutable_collections.py' 2025-04-25T04:36:17.4520956Z adding 'torch/fx/interpreter.py' 2025-04-25T04:36:17.4536042Z adding 'torch/fx/node.py' 2025-04-25T04:36:17.4546264Z adding 'torch/fx/operator_schemas.py' 2025-04-25T04:36:17.4558110Z adding 'torch/fx/proxy.py' 2025-04-25T04:36:17.4566160Z adding 'torch/fx/subgraph_rewriter.py' 2025-04-25T04:36:17.4570028Z adding 'torch/fx/tensor_type.py' 2025-04-25T04:36:17.4574751Z adding 'torch/fx/traceback.py' 2025-04-25T04:36:17.4578950Z adding 'torch/fx/experimental/__init__.py' 2025-04-25T04:36:17.4582248Z adding 'torch/fx/experimental/_backward_state.py' 2025-04-25T04:36:17.4586433Z adding 'torch/fx/experimental/_config.py' 2025-04-25T04:36:17.4590025Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-04-25T04:36:17.4594127Z adding 'torch/fx/experimental/_dynamism.py' 2025-04-25T04:36:17.4610251Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-04-25T04:36:17.4617654Z adding 'torch/fx/experimental/const_fold.py' 2025-04-25T04:36:17.4621080Z adding 'torch/fx/experimental/debug.py' 2025-04-25T04:36:17.4634183Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-04-25T04:36:17.4639887Z adding 'torch/fx/experimental/merge_matmul.py' 2025-04-25T04:36:17.4645555Z adding 'torch/fx/experimental/meta_tracer.py' 2025-04-25T04:36:17.4649864Z adding 'torch/fx/experimental/normalize.py' 2025-04-25T04:36:17.4657603Z adding 'torch/fx/experimental/optimization.py' 2025-04-25T04:36:17.4663870Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-04-25T04:36:17.4698219Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-04-25T04:36:17.4708698Z adding 'torch/fx/experimental/recording.py' 2025-04-25T04:36:17.4712286Z adding 'torch/fx/experimental/refinement_types.py' 2025-04-25T04:36:17.4716506Z adding 'torch/fx/experimental/rewriter.py' 2025-04-25T04:36:17.4721083Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-04-25T04:36:17.4741843Z adding 'torch/fx/experimental/sym_node.py' 2025-04-25T04:36:17.4862926Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-04-25T04:36:17.4873819Z adding 'torch/fx/experimental/unify_refinements.py' 2025-04-25T04:36:17.4886734Z adding 'torch/fx/experimental/validator.py' 2025-04-25T04:36:17.4891644Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-04-25T04:36:17.4897764Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-04-25T04:36:17.4913247Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-04-25T04:36:17.4928384Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-04-25T04:36:17.4932318Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-04-25T04:36:17.4938689Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-04-25T04:36:17.4942465Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-04-25T04:36:17.4945720Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-04-25T04:36:17.4949400Z adding 'torch/fx/experimental/unification/__init__.py' 2025-04-25T04:36:17.4953183Z adding 'torch/fx/experimental/unification/core.py' 2025-04-25T04:36:17.4956189Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-04-25T04:36:17.4960020Z adding 'torch/fx/experimental/unification/match.py' 2025-04-25T04:36:17.4963815Z adding 'torch/fx/experimental/unification/more.py' 2025-04-25T04:36:17.4969579Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-04-25T04:36:17.4973638Z adding 'torch/fx/experimental/unification/utils.py' 2025-04-25T04:36:17.4977168Z adding 'torch/fx/experimental/unification/variable.py' 2025-04-25T04:36:17.4981213Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-04-25T04:36:17.4985174Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-04-25T04:36:17.4988868Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-04-25T04:36:17.4996314Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-04-25T04:36:17.5001331Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-04-25T04:36:17.5005127Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-04-25T04:36:17.5009176Z adding 'torch/fx/passes/__init__.py' 2025-04-25T04:36:17.5016171Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-04-25T04:36:17.5020131Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-04-25T04:36:17.5023742Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-04-25T04:36:17.5030812Z adding 'torch/fx/passes/graph_drawer.py' 2025-04-25T04:36:17.5035439Z adding 'torch/fx/passes/graph_manipulation.py' 2025-04-25T04:36:17.5039960Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-04-25T04:36:17.5051808Z adding 'torch/fx/passes/net_min_base.py' 2025-04-25T04:36:17.5057324Z adding 'torch/fx/passes/operator_support.py' 2025-04-25T04:36:17.5061221Z adding 'torch/fx/passes/param_fetch.py' 2025-04-25T04:36:17.5065947Z adding 'torch/fx/passes/pass_manager.py' 2025-04-25T04:36:17.5079847Z adding 'torch/fx/passes/reinplace.py' 2025-04-25T04:36:17.5090911Z adding 'torch/fx/passes/runtime_assert.py' 2025-04-25T04:36:17.5096294Z adding 'torch/fx/passes/shape_prop.py' 2025-04-25T04:36:17.5106209Z adding 'torch/fx/passes/split_module.py' 2025-04-25T04:36:17.5112818Z adding 'torch/fx/passes/split_utils.py' 2025-04-25T04:36:17.5125142Z adding 'torch/fx/passes/splitter_base.py' 2025-04-25T04:36:17.5131637Z adding 'torch/fx/passes/tools_common.py' 2025-04-25T04:36:17.5136602Z adding 'torch/fx/passes/backends/__init__.py' 2025-04-25T04:36:17.5140360Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-04-25T04:36:17.5144274Z adding 'torch/fx/passes/dialect/__init__.py' 2025-04-25T04:36:17.5147794Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-04-25T04:36:17.5152648Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-04-25T04:36:17.5156513Z adding 'torch/fx/passes/infra/__init__.py' 2025-04-25T04:36:17.5163506Z adding 'torch/fx/passes/infra/partitioner.py' 2025-04-25T04:36:17.5167498Z adding 'torch/fx/passes/infra/pass_base.py' 2025-04-25T04:36:17.5173265Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-04-25T04:36:17.5177314Z adding 'torch/fx/passes/tests/__init__.py' 2025-04-25T04:36:17.5180713Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-04-25T04:36:17.5185118Z adding 'torch/fx/passes/utils/__init__.py' 2025-04-25T04:36:17.5188888Z adding 'torch/fx/passes/utils/common.py' 2025-04-25T04:36:17.5194639Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-04-25T04:36:17.5202366Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-04-25T04:36:17.5206983Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-04-25T04:36:17.5211481Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-04-25T04:36:17.5225894Z adding 'torch/include/cpuinfo.h' 2025-04-25T04:36:17.5230525Z adding 'torch/include/dnnl.h' 2025-04-25T04:36:17.5233596Z adding 'torch/include/dnnl.hpp' 2025-04-25T04:36:17.5236790Z adding 'torch/include/dnnl_config.h' 2025-04-25T04:36:17.5239813Z adding 'torch/include/dnnl_debug.h' 2025-04-25T04:36:17.5242978Z adding 'torch/include/dnnl_ocl.h' 2025-04-25T04:36:17.5246079Z adding 'torch/include/dnnl_ocl.hpp' 2025-04-25T04:36:17.5249198Z adding 'torch/include/dnnl_sycl.h' 2025-04-25T04:36:17.5252188Z adding 'torch/include/dnnl_sycl.hpp' 2025-04-25T04:36:17.5255369Z adding 'torch/include/dnnl_sycl_types.h' 2025-04-25T04:36:17.5258504Z adding 'torch/include/dnnl_threadpool.h' 2025-04-25T04:36:17.5261584Z adding 'torch/include/dnnl_threadpool.hpp' 2025-04-25T04:36:17.5264828Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-04-25T04:36:17.5267848Z adding 'torch/include/dnnl_types.h' 2025-04-25T04:36:17.5270953Z adding 'torch/include/dnnl_version.h' 2025-04-25T04:36:17.5274030Z adding 'torch/include/experiments-config.h' 2025-04-25T04:36:17.5276982Z adding 'torch/include/fp16.h' 2025-04-25T04:36:17.5282277Z adding 'torch/include/fxdiv.h' 2025-04-25T04:36:17.5285665Z adding 'torch/include/libshm.h' 2025-04-25T04:36:17.5295718Z adding 'torch/include/psimd.h' 2025-04-25T04:36:17.5310472Z adding 'torch/include/pthreadpool.h' 2025-04-25T04:36:17.5350272Z adding 'torch/include/sleef.h' 2025-04-25T04:36:17.5392120Z adding 'torch/include/xnnpack.h' 2025-04-25T04:36:17.5403258Z adding 'torch/include/ATen/ATen.h' 2025-04-25T04:36:17.5407495Z adding 'torch/include/ATen/AccumulateType.h' 2025-04-25T04:36:17.5410448Z adding 'torch/include/ATen/ArrayRef.h' 2025-04-25T04:36:17.5413305Z adding 'torch/include/ATen/Backend.h' 2025-04-25T04:36:17.5415998Z adding 'torch/include/ATen/Backtrace.h' 2025-04-25T04:36:17.5419215Z adding 'torch/include/ATen/BlasBackend.h' 2025-04-25T04:36:17.5424564Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-04-25T04:36:17.5428047Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-04-25T04:36:17.5431478Z adding 'torch/include/ATen/CPUFunctions.h' 2025-04-25T04:36:17.5437810Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-04-25T04:36:17.5441884Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-04-25T04:36:17.5445380Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-04-25T04:36:17.5452170Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-04-25T04:36:17.5456239Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-04-25T04:36:17.5459763Z adding 'torch/include/ATen/CollapseDims.h' 2025-04-25T04:36:17.5463442Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-04-25T04:36:17.5470656Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-04-25T04:36:17.5475369Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-04-25T04:36:17.5480726Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-04-25T04:36:17.5484907Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-04-25T04:36:17.5491380Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-04-25T04:36:17.5495691Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-04-25T04:36:17.5498871Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-04-25T04:36:17.5502043Z adding 'torch/include/ATen/Config.h' 2025-04-25T04:36:17.5510044Z adding 'torch/include/ATen/Context.h' 2025-04-25T04:36:17.5514088Z adding 'torch/include/ATen/DLConvertor.h' 2025-04-25T04:36:17.5517044Z adding 'torch/include/ATen/Device.h' 2025-04-25T04:36:17.5520542Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-04-25T04:36:17.5523725Z adding 'torch/include/ATen/DeviceGuard.h' 2025-04-25T04:36:17.5526526Z adding 'torch/include/ATen/DimVector.h' 2025-04-25T04:36:17.5535484Z adding 'torch/include/ATen/Dimname.h' 2025-04-25T04:36:17.5539991Z adding 'torch/include/ATen/Dispatch.h' 2025-04-25T04:36:17.5548770Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-04-25T04:36:17.5553418Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-04-25T04:36:17.5556719Z adding 'torch/include/ATen/EmptyTensor.h' 2025-04-25T04:36:17.5559834Z adding 'torch/include/ATen/ExpandBase.h' 2025-04-25T04:36:17.5565472Z adding 'torch/include/ATen/ExpandUtils.h' 2025-04-25T04:36:17.5568684Z adding 'torch/include/ATen/Formatting.h' 2025-04-25T04:36:17.5571928Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-04-25T04:36:17.5576917Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-04-25T04:36:17.5584434Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-04-25T04:36:17.5596077Z adding 'torch/include/ATen/Functions.h' 2025-04-25T04:36:17.5600153Z adding 'torch/include/ATen/Generator.h' 2025-04-25T04:36:17.5603806Z adding 'torch/include/ATen/InferSize.h' 2025-04-25T04:36:17.5606861Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-04-25T04:36:17.5609534Z adding 'torch/include/ATen/Layout.h' 2025-04-25T04:36:17.5612648Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-04-25T04:36:17.5617303Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-04-25T04:36:17.5620237Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-04-25T04:36:17.5625212Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-04-25T04:36:17.5628450Z adding 'torch/include/ATen/LinalgBackend.h' 2025-04-25T04:36:17.5632113Z adding 'torch/include/ATen/MapAllocator.h' 2025-04-25T04:36:17.5635840Z adding 'torch/include/ATen/MatrixRef.h' 2025-04-25T04:36:17.5639036Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-04-25T04:36:17.5642371Z adding 'torch/include/ATen/MetaFunctions.h' 2025-04-25T04:36:17.5647404Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-04-25T04:36:17.5652370Z adding 'torch/include/ATen/MethodOperators.h' 2025-04-25T04:36:17.5655578Z adding 'torch/include/ATen/NamedTensor.h' 2025-04-25T04:36:17.5659825Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-04-25T04:36:17.5670757Z adding 'torch/include/ATen/NativeFunctions.h' 2025-04-25T04:36:17.5682590Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-04-25T04:36:17.5689159Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-04-25T04:36:17.5693010Z adding 'torch/include/ATen/NumericUtils.h' 2025-04-25T04:36:17.5696339Z adding 'torch/include/ATen/OpMathType.h' 2025-04-25T04:36:17.5700539Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-04-25T04:36:17.5711932Z adding 'torch/include/ATen/Operators.h' 2025-04-25T04:36:17.5716609Z adding 'torch/include/ATen/PTThreadPool.h' 2025-04-25T04:36:17.5719343Z adding 'torch/include/ATen/PadNd.h' 2025-04-25T04:36:17.5722784Z adding 'torch/include/ATen/Parallel-inl.h' 2025-04-25T04:36:17.5726886Z adding 'torch/include/ATen/Parallel.h' 2025-04-25T04:36:17.5730159Z adding 'torch/include/ATen/ParallelFuture.h' 2025-04-25T04:36:17.5733083Z adding 'torch/include/ATen/ParallelNative.h' 2025-04-25T04:36:17.5736241Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-04-25T04:36:17.5739580Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-04-25T04:36:17.5742675Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-04-25T04:36:17.6007642Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-04-25T04:36:17.6195435Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-04-25T04:36:17.6217825Z adding 'torch/include/ATen/SDPBackend.h' 2025-04-25T04:36:17.6221385Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-04-25T04:36:17.6224204Z adding 'torch/include/ATen/Scalar.h' 2025-04-25T04:36:17.6227413Z adding 'torch/include/ATen/ScalarOps.h' 2025-04-25T04:36:17.6230395Z adding 'torch/include/ATen/ScalarType.h' 2025-04-25T04:36:17.6233393Z adding 'torch/include/ATen/SequenceNumber.h' 2025-04-25T04:36:17.6236084Z adding 'torch/include/ATen/SmallVector.h' 2025-04-25T04:36:17.6240487Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-04-25T04:36:17.6247090Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-04-25T04:36:17.6253880Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-04-25T04:36:17.6257071Z adding 'torch/include/ATen/Storage.h' 2025-04-25T04:36:17.6260360Z adding 'torch/include/ATen/StorageUtils.h' 2025-04-25T04:36:17.6263020Z adding 'torch/include/ATen/Tensor.h' 2025-04-25T04:36:17.6265689Z adding 'torch/include/ATen/TensorAccessor.h' 2025-04-25T04:36:17.6269348Z adding 'torch/include/ATen/TensorGeometry.h' 2025-04-25T04:36:17.6278884Z adding 'torch/include/ATen/TensorIndexing.h' 2025-04-25T04:36:17.6294074Z adding 'torch/include/ATen/TensorIterator.h' 2025-04-25T04:36:17.6298442Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-04-25T04:36:17.6302478Z adding 'torch/include/ATen/TensorMeta.h' 2025-04-25T04:36:17.6306209Z adding 'torch/include/ATen/TensorNames.h' 2025-04-25T04:36:17.6309567Z adding 'torch/include/ATen/TensorOperators.h' 2025-04-25T04:36:17.6312427Z adding 'torch/include/ATen/TensorOptions.h' 2025-04-25T04:36:17.6316127Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-04-25T04:36:17.6320111Z adding 'torch/include/ATen/TensorUtils.h' 2025-04-25T04:36:17.6323317Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-04-25T04:36:17.6327185Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-04-25T04:36:17.6331791Z adding 'torch/include/ATen/TracerMode.h' 2025-04-25T04:36:17.6334962Z adding 'torch/include/ATen/TypeDefault.h' 2025-04-25T04:36:17.6338668Z adding 'torch/include/ATen/Utils.h' 2025-04-25T04:36:17.6341830Z adding 'torch/include/ATen/Version.h' 2025-04-25T04:36:17.6517790Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-04-25T04:36:17.6561980Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-04-25T04:36:17.6565355Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-04-25T04:36:17.6576496Z adding 'torch/include/ATen/autocast_mode.h' 2025-04-25T04:36:17.6580549Z adding 'torch/include/ATen/ceil_div.h' 2025-04-25T04:36:17.6585101Z adding 'torch/include/ATen/code_template.h' 2025-04-25T04:36:17.6588992Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-04-25T04:36:17.6592007Z adding 'torch/include/ATen/div_rtn.h' 2025-04-25T04:36:17.6596793Z adding 'torch/include/ATen/dlpack.h' 2025-04-25T04:36:17.6600078Z adding 'torch/include/ATen/jit_macros.h' 2025-04-25T04:36:17.6603350Z adding 'torch/include/ATen/jiterator_macros.h' 2025-04-25T04:36:17.6612367Z adding 'torch/include/ATen/record_function.h' 2025-04-25T04:36:17.6617813Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-04-25T04:36:17.6620698Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-04-25T04:36:17.6623695Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-04-25T04:36:17.6627574Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-04-25T04:36:17.6630861Z adding 'torch/include/ATen/core/Array.h' 2025-04-25T04:36:17.6633789Z adding 'torch/include/ATen/core/Backtrace.h' 2025-04-25T04:36:17.6644411Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-04-25T04:36:17.6648198Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-04-25T04:36:17.6652022Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-04-25T04:36:17.6655517Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-04-25T04:36:17.6661769Z adding 'torch/include/ATen/core/Dict.h' 2025-04-25T04:36:17.6666363Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-04-25T04:36:17.6669497Z adding 'torch/include/ATen/core/DimVector.h' 2025-04-25T04:36:17.6672724Z adding 'torch/include/ATen/core/Dimname.h' 2025-04-25T04:36:17.6677760Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-04-25T04:36:17.6681080Z adding 'torch/include/ATen/core/Formatting.h' 2025-04-25T04:36:17.6685660Z adding 'torch/include/ATen/core/Generator.h' 2025-04-25T04:36:17.6689096Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-04-25T04:36:17.6697141Z adding 'torch/include/ATen/core/IListRef.h' 2025-04-25T04:36:17.6701655Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-04-25T04:36:17.6705969Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-04-25T04:36:17.6712643Z adding 'torch/include/ATen/core/List.h' 2025-04-25T04:36:17.6718070Z adding 'torch/include/ATen/core/List_inl.h' 2025-04-25T04:36:17.6723000Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-04-25T04:36:17.6727343Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-04-25T04:36:17.6731816Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-04-25T04:36:17.6737273Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-04-25T04:36:17.6740614Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-04-25T04:36:17.6743716Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-04-25T04:36:17.6747179Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-04-25T04:36:17.6750154Z adding 'torch/include/ATen/core/Range.h' 2025-04-25T04:36:17.6753198Z adding 'torch/include/ATen/core/Reduction.h' 2025-04-25T04:36:17.6756090Z adding 'torch/include/ATen/core/Scalar.h' 2025-04-25T04:36:17.6758807Z adding 'torch/include/ATen/core/ScalarType.h' 2025-04-25T04:36:17.6762263Z adding 'torch/include/ATen/core/Tensor.h' 2025-04-25T04:36:17.6767153Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-04-25T04:36:17.6782302Z adding 'torch/include/ATen/core/TensorBase.h' 2025-04-25T04:36:17.6838148Z adding 'torch/include/ATen/core/TensorBody.h' 2025-04-25T04:36:17.6847970Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-04-25T04:36:17.6852378Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-04-25T04:36:17.6855532Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-04-25T04:36:17.6858477Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-04-25T04:36:17.6862295Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-04-25T04:36:17.6865808Z adding 'torch/include/ATen/core/Variadic.h' 2025-04-25T04:36:17.6869517Z adding 'torch/include/ATen/core/Vitals.h' 2025-04-25T04:36:17.6873781Z adding 'torch/include/ATen/core/alias_info.h' 2025-04-25T04:36:17.6889367Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-04-25T04:36:17.6895056Z adding 'torch/include/ATen/core/blob.h' 2025-04-25T04:36:17.6898631Z adding 'torch/include/ATen/core/builtin_function.h' 2025-04-25T04:36:17.6905052Z adding 'torch/include/ATen/core/class_type.h' 2025-04-25T04:36:17.6908884Z adding 'torch/include/ATen/core/custom_class.h' 2025-04-25T04:36:17.6914554Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-04-25T04:36:17.6918004Z adding 'torch/include/ATen/core/enum_tag.h' 2025-04-25T04:36:17.6921590Z adding 'torch/include/ATen/core/enum_type.h' 2025-04-25T04:36:17.6925593Z adding 'torch/include/ATen/core/function.h' 2025-04-25T04:36:17.6935673Z adding 'torch/include/ATen/core/function_schema.h' 2025-04-25T04:36:17.6939877Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-04-25T04:36:17.6943148Z adding 'torch/include/ATen/core/functional.h' 2025-04-25T04:36:17.6946187Z adding 'torch/include/ATen/core/grad_mode.h' 2025-04-25T04:36:17.6951949Z adding 'torch/include/ATen/core/interned_strings.h' 2025-04-25T04:36:17.6955473Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-04-25T04:36:17.6975080Z adding 'torch/include/ATen/core/ivalue.h' 2025-04-25T04:36:17.7006410Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-04-25T04:36:17.7012335Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-04-25T04:36:17.7035995Z adding 'torch/include/ATen/core/jit_type.h' 2025-04-25T04:36:17.7046350Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-04-25T04:36:17.7050836Z adding 'torch/include/ATen/core/operator_name.h' 2025-04-25T04:36:17.7054944Z adding 'torch/include/ATen/core/qualified_name.h' 2025-04-25T04:36:17.7058227Z adding 'torch/include/ATen/core/rref_interface.h' 2025-04-25T04:36:17.7062867Z adding 'torch/include/ATen/core/stack.h' 2025-04-25T04:36:17.7067353Z adding 'torch/include/ATen/core/symbol.h' 2025-04-25T04:36:17.7070990Z adding 'torch/include/ATen/core/type_factory.h' 2025-04-25T04:36:17.7074365Z adding 'torch/include/ATen/core/type_ptr.h' 2025-04-25T04:36:17.7077342Z adding 'torch/include/ATen/core/typeid.h' 2025-04-25T04:36:17.7083792Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-04-25T04:36:17.7087674Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-04-25T04:36:17.7092320Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-04-25T04:36:17.7097726Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-04-25T04:36:17.7101135Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-04-25T04:36:17.7105466Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-04-25T04:36:17.7110147Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-04-25T04:36:17.7116182Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-04-25T04:36:17.7126584Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-04-25T04:36:17.7130855Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-04-25T04:36:17.7135386Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-04-25T04:36:17.7140832Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-04-25T04:36:17.7155124Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-04-25T04:36:17.7159154Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-04-25T04:36:17.7165503Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-04-25T04:36:17.7169192Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-04-25T04:36:17.7172406Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-04-25T04:36:17.7176766Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-04-25T04:36:17.7181105Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-04-25T04:36:17.7185695Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-04-25T04:36:17.7194254Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-04-25T04:36:17.7198756Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-04-25T04:36:17.7201796Z adding 'torch/include/ATen/cpu/Utils.h' 2025-04-25T04:36:17.7206031Z adding 'torch/include/ATen/cpu/vml.h' 2025-04-25T04:36:17.7210003Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-04-25T04:36:17.7214737Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-04-25T04:36:17.7221153Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-04-25T04:36:17.7225100Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-04-25T04:36:17.7228294Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-04-25T04:36:17.7241614Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-04-25T04:36:17.7245775Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-04-25T04:36:17.7249648Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-04-25T04:36:17.7254607Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-04-25T04:36:17.7259983Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-04-25T04:36:17.7264586Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-04-25T04:36:17.7268846Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-04-25T04:36:17.7275136Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-04-25T04:36:17.7283138Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-04-25T04:36:17.7290005Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-04-25T04:36:17.7296463Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-04-25T04:36:17.7300831Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-04-25T04:36:17.7307577Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-04-25T04:36:17.7311493Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-04-25T04:36:17.7318408Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-04-25T04:36:17.7325709Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-04-25T04:36:17.7330804Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-04-25T04:36:17.7335902Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-04-25T04:36:17.7339296Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-04-25T04:36:17.7344561Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-04-25T04:36:17.7352838Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-04-25T04:36:17.7357807Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-04-25T04:36:17.7365144Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-04-25T04:36:17.7373013Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-04-25T04:36:17.7378358Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-04-25T04:36:17.7383957Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-04-25T04:36:17.7391927Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-04-25T04:36:17.7396871Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-04-25T04:36:17.7411048Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-04-25T04:36:17.7417226Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-04-25T04:36:17.7428895Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-04-25T04:36:17.7434630Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-04-25T04:36:17.7439559Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-04-25T04:36:17.7447025Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-04-25T04:36:17.7455161Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-04-25T04:36:17.7461374Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-04-25T04:36:17.7467560Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-04-25T04:36:17.7473397Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-04-25T04:36:17.7478867Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-04-25T04:36:17.7484000Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-04-25T04:36:17.7489218Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-04-25T04:36:17.7495500Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-04-25T04:36:17.7502425Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-04-25T04:36:17.7510628Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-04-25T04:36:17.7536155Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-04-25T04:36:17.7544488Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-04-25T04:36:17.7559585Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-04-25T04:36:17.7569458Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-04-25T04:36:17.7579531Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-04-25T04:36:17.7584735Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-04-25T04:36:17.7590339Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-04-25T04:36:17.7599148Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-04-25T04:36:17.7611903Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-04-25T04:36:17.7618282Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-04-25T04:36:17.7629548Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-04-25T04:36:17.7635378Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-04-25T04:36:17.7638562Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-04-25T04:36:17.7641994Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-04-25T04:36:17.7648690Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-04-25T04:36:17.7657148Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-04-25T04:36:17.7663003Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-04-25T04:36:17.7666485Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-04-25T04:36:17.7670082Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-04-25T04:36:17.7673593Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-04-25T04:36:17.7676861Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-04-25T04:36:17.7681521Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-04-25T04:36:17.7686215Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-04-25T04:36:17.7690121Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-04-25T04:36:17.7693671Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-04-25T04:36:17.7697027Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-04-25T04:36:17.7701818Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-04-25T04:36:17.7706500Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-04-25T04:36:17.7709781Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-04-25T04:36:17.7712775Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-04-25T04:36:17.7716261Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-04-25T04:36:17.7720246Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-04-25T04:36:17.7722953Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-04-25T04:36:17.7728513Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-04-25T04:36:17.7732696Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-04-25T04:36:17.7735795Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-04-25T04:36:17.7738730Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-04-25T04:36:17.7741443Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-04-25T04:36:17.7744477Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-04-25T04:36:17.7748267Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-04-25T04:36:17.7750825Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-04-25T04:36:17.7754023Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-04-25T04:36:17.7757518Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-04-25T04:36:17.7765323Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-04-25T04:36:17.7769483Z adding 'torch/include/ATen/cuda/cub.h' 2025-04-25T04:36:17.7772974Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-04-25T04:36:17.7776400Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-04-25T04:36:17.7780365Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-04-25T04:36:17.7783651Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-04-25T04:36:17.7788099Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-04-25T04:36:17.7793424Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-04-25T04:36:17.7796738Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-04-25T04:36:17.7800922Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-04-25T04:36:17.7804460Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-04-25T04:36:17.7807415Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-04-25T04:36:17.7811391Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-04-25T04:36:17.7815560Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-04-25T04:36:17.7818538Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-04-25T04:36:17.7822819Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-04-25T04:36:17.7829719Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-04-25T04:36:17.7837335Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-04-25T04:36:17.7843177Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-04-25T04:36:17.7847178Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-04-25T04:36:17.7852304Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-04-25T04:36:17.7856799Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-04-25T04:36:17.7863658Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-04-25T04:36:17.7871412Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-04-25T04:36:17.7875004Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-04-25T04:36:17.7877862Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-04-25T04:36:17.7880747Z adding 'torch/include/ATen/cudnn/Types.h' 2025-04-25T04:36:17.7883719Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-04-25T04:36:17.7887004Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-04-25T04:36:17.7891436Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-04-25T04:36:17.7895782Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-04-25T04:36:17.7899621Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-04-25T04:36:17.7903223Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-04-25T04:36:17.7906386Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-04-25T04:36:17.7909545Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-04-25T04:36:17.7912877Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-04-25T04:36:17.7916400Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-04-25T04:36:17.7920154Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-04-25T04:36:17.7923696Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-04-25T04:36:17.7927156Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-04-25T04:36:17.7931388Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-04-25T04:36:17.7938065Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-04-25T04:36:17.7942380Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-04-25T04:36:17.7947254Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-04-25T04:36:17.7951270Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-04-25T04:36:17.7955858Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-04-25T04:36:17.7959178Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-04-25T04:36:17.7963773Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-04-25T04:36:17.7969162Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-04-25T04:36:17.7972131Z adding 'torch/include/ATen/functorch/Macros.h' 2025-04-25T04:36:17.7975699Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-04-25T04:36:17.7987437Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-04-25T04:36:17.7988018Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-04-25T04:36:17.7990304Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-04-25T04:36:17.7993280Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-04-25T04:36:17.7999223Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-04-25T04:36:17.8003471Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-04-25T04:36:17.8007300Z adding 'torch/include/ATen/metal/Context.h' 2025-04-25T04:36:17.8012084Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-04-25T04:36:17.8015399Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-04-25T04:36:17.8018241Z adding 'torch/include/ATen/miopen/Handle.h' 2025-04-25T04:36:17.8021066Z adding 'torch/include/ATen/miopen/Types.h' 2025-04-25T04:36:17.8023934Z adding 'torch/include/ATen/miopen/Utils.h' 2025-04-25T04:36:17.8027014Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-04-25T04:36:17.8030786Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-04-25T04:36:17.8034731Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-04-25T04:36:17.8043301Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-04-25T04:36:17.8047303Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-04-25T04:36:17.8050616Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-04-25T04:36:17.8054423Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-04-25T04:36:17.8057831Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-04-25T04:36:17.8061888Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-04-25T04:36:17.8065408Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-04-25T04:36:17.8072720Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-04-25T04:36:17.8077016Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-04-25T04:36:17.8083422Z adding 'torch/include/ATen/native/Activation.h' 2025-04-25T04:36:17.8086827Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-04-25T04:36:17.8090458Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-04-25T04:36:17.8094638Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-04-25T04:36:17.8098658Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-04-25T04:36:17.8103177Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-04-25T04:36:17.8107471Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-04-25T04:36:17.8111057Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-04-25T04:36:17.8114199Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-04-25T04:36:17.8117966Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-04-25T04:36:17.8121223Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-04-25T04:36:17.8125356Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-04-25T04:36:17.8132063Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-04-25T04:36:17.8135558Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-04-25T04:36:17.8138460Z adding 'torch/include/ATen/native/Copy.h' 2025-04-25T04:36:17.8141523Z adding 'torch/include/ATen/native/Cross.h' 2025-04-25T04:36:17.8146057Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-04-25T04:36:17.8152138Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-04-25T04:36:17.8155849Z adding 'torch/include/ATen/native/Distance.h' 2025-04-25T04:36:17.8162183Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-04-25T04:36:17.8171267Z adding 'torch/include/ATen/native/Distributions.h' 2025-04-25T04:36:17.8175755Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-04-25T04:36:17.8178869Z adding 'torch/include/ATen/native/Fill.h' 2025-04-25T04:36:17.8185501Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-04-25T04:36:17.8189069Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-04-25T04:36:17.8192148Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-04-25T04:36:17.8195000Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-04-25T04:36:17.8197957Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-04-25T04:36:17.8200826Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-04-25T04:36:17.8203834Z adding 'torch/include/ATen/native/Gelu.h' 2025-04-25T04:36:17.8208552Z adding 'torch/include/ATen/native/GridSampler.h' 2025-04-25T04:36:17.8212396Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-04-25T04:36:17.8216326Z adding 'torch/include/ATen/native/Histogram.h' 2025-04-25T04:36:17.8218694Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-04-25T04:36:17.8222670Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-04-25T04:36:17.8226047Z adding 'torch/include/ATen/native/Lerp.h' 2025-04-25T04:36:17.8228992Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-04-25T04:36:17.8239798Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-04-25T04:36:17.8243695Z adding 'torch/include/ATen/native/LossMulti.h' 2025-04-25T04:36:17.8289917Z adding 'torch/include/ATen/native/Math.h' 2025-04-25T04:36:17.8296856Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-04-25T04:36:17.8301169Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-04-25T04:36:17.8304933Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-04-25T04:36:17.8308037Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-04-25T04:36:17.8311350Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-04-25T04:36:17.8314521Z adding 'torch/include/ATen/native/Normalization.h' 2025-04-25T04:36:17.8317737Z adding 'torch/include/ATen/native/Padding.h' 2025-04-25T04:36:17.8321097Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-04-25T04:36:17.8324212Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-04-25T04:36:17.8329760Z adding 'torch/include/ATen/native/Pool.h' 2025-04-25T04:36:17.8333409Z adding 'torch/include/ATen/native/Pow.h' 2025-04-25T04:36:17.8336978Z adding 'torch/include/ATen/native/RNN.h' 2025-04-25T04:36:17.8340037Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-04-25T04:36:17.8343488Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-04-25T04:36:17.8346580Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-04-25T04:36:17.8349787Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-04-25T04:36:17.8356294Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-04-25T04:36:17.8360279Z adding 'torch/include/ATen/native/ReductionType.h' 2025-04-25T04:36:17.8363292Z adding 'torch/include/ATen/native/Repeat.h' 2025-04-25T04:36:17.8368427Z adding 'torch/include/ATen/native/Resize.h' 2025-04-25T04:36:17.8372743Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-04-25T04:36:17.8376585Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-04-25T04:36:17.8379738Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-04-25T04:36:17.8385399Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-04-25T04:36:17.8389596Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-04-25T04:36:17.8392633Z adding 'torch/include/ATen/native/Sorting.h' 2025-04-25T04:36:17.8396013Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-04-25T04:36:17.8400663Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-04-25T04:36:17.8404719Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-04-25T04:36:17.8408896Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-04-25T04:36:17.8412543Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-04-25T04:36:17.8416790Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-04-25T04:36:17.8420021Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-04-25T04:36:17.8423249Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-04-25T04:36:17.8426522Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-04-25T04:36:17.8430899Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-04-25T04:36:17.8434117Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-04-25T04:36:17.8437504Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-04-25T04:36:17.8440537Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-04-25T04:36:17.8444574Z adding 'torch/include/ATen/native/TensorShape.h' 2025-04-25T04:36:17.8447893Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-04-25T04:36:17.8451453Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-04-25T04:36:17.8454876Z adding 'torch/include/ATen/native/TransposeType.h' 2025-04-25T04:36:17.8458304Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-04-25T04:36:17.8462044Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-04-25T04:36:17.8464929Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-04-25T04:36:17.8468443Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-04-25T04:36:17.8471185Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-04-25T04:36:17.8475629Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-04-25T04:36:17.8483003Z adding 'torch/include/ATen/native/UpSample.h' 2025-04-25T04:36:17.8487257Z adding 'torch/include/ATen/native/batch_norm.h' 2025-04-25T04:36:17.8489975Z adding 'torch/include/ATen/native/group_norm.h' 2025-04-25T04:36:17.8493875Z adding 'torch/include/ATen/native/im2col.h' 2025-04-25T04:36:17.8498315Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-04-25T04:36:17.8502133Z adding 'torch/include/ATen/native/layer_norm.h' 2025-04-25T04:36:17.8505311Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-04-25T04:36:17.8508911Z adding 'torch/include/ATen/native/vol2col.h' 2025-04-25T04:36:17.8515585Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-04-25T04:36:17.8519795Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-04-25T04:36:17.8524036Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-04-25T04:36:17.8529074Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-04-25T04:36:17.8532509Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-04-25T04:36:17.8535930Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-04-25T04:36:17.8539314Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-04-25T04:36:17.8542648Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-04-25T04:36:17.8548565Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-04-25T04:36:17.8552674Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-04-25T04:36:17.8556216Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-04-25T04:36:17.8559566Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-04-25T04:36:17.8563380Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-04-25T04:36:17.8566586Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-04-25T04:36:17.8570067Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-04-25T04:36:17.8573544Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-04-25T04:36:17.8579465Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-04-25T04:36:17.8583074Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-04-25T04:36:17.8586028Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-04-25T04:36:17.8591769Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-04-25T04:36:17.8596641Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-04-25T04:36:17.8600240Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-04-25T04:36:17.8603474Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-04-25T04:36:17.8607666Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-04-25T04:36:17.8610848Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-04-25T04:36:17.8613929Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-04-25T04:36:17.8616847Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-04-25T04:36:17.8632509Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-04-25T04:36:17.8636866Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-04-25T04:36:17.8643202Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-04-25T04:36:17.8646771Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-04-25T04:36:17.8649993Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-04-25T04:36:17.8654311Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-04-25T04:36:17.8658913Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-04-25T04:36:17.8662939Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-04-25T04:36:17.8668072Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-04-25T04:36:17.8671310Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-04-25T04:36:17.8677074Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-04-25T04:36:17.8686088Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-04-25T04:36:17.8689995Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-04-25T04:36:17.8692769Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-04-25T04:36:17.8700859Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-04-25T04:36:17.8704278Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-04-25T04:36:17.8707304Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-04-25T04:36:17.8716209Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-04-25T04:36:17.8719918Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-04-25T04:36:17.8723071Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-04-25T04:36:17.8728366Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-04-25T04:36:17.8731983Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-04-25T04:36:17.8736801Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-04-25T04:36:17.8740153Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-04-25T04:36:17.8743091Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-04-25T04:36:17.8746957Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-04-25T04:36:17.8750479Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-04-25T04:36:17.8754636Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-04-25T04:36:17.8759197Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-04-25T04:36:17.8762375Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-04-25T04:36:17.8767555Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-04-25T04:36:17.8801631Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-04-25T04:36:17.8812425Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-04-25T04:36:17.8816184Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-04-25T04:36:17.8821814Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-04-25T04:36:17.8840710Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-04-25T04:36:17.8849878Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-04-25T04:36:17.8862976Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-04-25T04:36:17.8863466Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-04-25T04:36:17.8874790Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-04-25T04:36:17.8878913Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-04-25T04:36:17.8882339Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-04-25T04:36:17.8885419Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-04-25T04:36:17.8888515Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-04-25T04:36:17.8891454Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-04-25T04:36:17.8898768Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-04-25T04:36:17.8902337Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-04-25T04:36:17.8905441Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-04-25T04:36:17.8911185Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-04-25T04:36:17.8914518Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-04-25T04:36:17.8918718Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-04-25T04:36:17.8924995Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-04-25T04:36:17.8932556Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-04-25T04:36:17.8936039Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-04-25T04:36:17.8939542Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-04-25T04:36:17.8942387Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-04-25T04:36:17.8948013Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-04-25T04:36:17.8951996Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-04-25T04:36:17.8955347Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-04-25T04:36:17.8963185Z adding 'torch/include/ATen/native/cuda/cutlass_utils.cuh' 2025-04-25T04:36:17.8966861Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-04-25T04:36:17.8969934Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-04-25T04:36:17.8975670Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-04-25T04:36:17.8978214Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-04-25T04:36:17.8981409Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-04-25T04:36:17.8986046Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-04-25T04:36:17.8991146Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-04-25T04:36:17.8999310Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-04-25T04:36:17.9003095Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-04-25T04:36:17.9007976Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-04-25T04:36:17.9012198Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-04-25T04:36:17.9016260Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-04-25T04:36:17.9021124Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-04-25T04:36:17.9025571Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-04-25T04:36:17.9031216Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-04-25T04:36:17.9035690Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-04-25T04:36:17.9039882Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-04-25T04:36:17.9043320Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-04-25T04:36:17.9047193Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-04-25T04:36:17.9056089Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-04-25T04:36:17.9060495Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-04-25T04:36:17.9064419Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-04-25T04:36:17.9068351Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-04-25T04:36:17.9072259Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-04-25T04:36:17.9075518Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-04-25T04:36:17.9078859Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-04-25T04:36:17.9083109Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-04-25T04:36:17.9087699Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-04-25T04:36:17.9095259Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-04-25T04:36:17.9098853Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-04-25T04:36:17.9102706Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-04-25T04:36:17.9105815Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-04-25T04:36:17.9108809Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-04-25T04:36:17.9111850Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-04-25T04:36:17.9115025Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-04-25T04:36:17.9117937Z adding 'torch/include/ATen/native/mps/operations/Indexing.h' 2025-04-25T04:36:17.9123594Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-04-25T04:36:17.9127847Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-04-25T04:36:17.9131300Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-04-25T04:36:17.9134992Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-04-25T04:36:17.9138204Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-04-25T04:36:17.9144801Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-04-25T04:36:17.9149465Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-04-25T04:36:17.9152930Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-04-25T04:36:17.9156269Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-04-25T04:36:17.9159180Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-04-25T04:36:17.9162434Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-04-25T04:36:17.9165427Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-04-25T04:36:17.9169034Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-04-25T04:36:17.9172024Z adding 'torch/include/ATen/native/quantized/library.h' 2025-04-25T04:36:17.9177542Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-04-25T04:36:17.9180722Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-04-25T04:36:17.9183804Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-04-25T04:36:17.9189448Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-04-25T04:36:17.9197717Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-04-25T04:36:17.9203356Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-04-25T04:36:17.9207712Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-04-25T04:36:17.9210870Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-04-25T04:36:17.9216670Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-04-25T04:36:17.9222036Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-04-25T04:36:17.9227330Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-04-25T04:36:17.9230520Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-04-25T04:36:17.9233825Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-04-25T04:36:17.9236998Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-04-25T04:36:17.9239984Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-04-25T04:36:17.9243091Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-04-25T04:36:17.9248771Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-04-25T04:36:17.9253175Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-04-25T04:36:17.9259782Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-04-25T04:36:17.9264068Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-04-25T04:36:17.9268553Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-04-25T04:36:17.9272277Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-04-25T04:36:17.9277919Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-04-25T04:36:17.9282758Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-04-25T04:36:17.9311627Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-04-25T04:36:17.9332139Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-04-25T04:36:17.9336811Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-04-25T04:36:17.9345735Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-04-25T04:36:17.9351097Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-04-25T04:36:17.9356069Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-04-25T04:36:17.9360631Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-04-25T04:36:17.9365292Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-04-25T04:36:17.9374517Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-04-25T04:36:17.9381531Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-04-25T04:36:17.9386119Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-04-25T04:36:17.9391688Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-04-25T04:36:17.9412023Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-04-25T04:36:17.9419016Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-04-25T04:36:17.9426610Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-04-25T04:36:17.9430564Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-04-25T04:36:17.9442271Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-04-25T04:36:17.9454059Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-04-25T04:36:17.9458823Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-04-25T04:36:17.9464906Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-04-25T04:36:17.9478767Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-04-25T04:36:17.9486280Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-04-25T04:36:17.9491305Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-04-25T04:36:17.9495713Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-04-25T04:36:17.9502429Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-04-25T04:36:17.9507081Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-04-25T04:36:17.9512992Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-04-25T04:36:17.9532158Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-04-25T04:36:17.9537705Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-04-25T04:36:17.9726642Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-04-25T04:36:17.9730277Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-04-25T04:36:17.9733917Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9737227Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:36:17.9740576Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:36:17.9743850Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-04-25T04:36:17.9747349Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-04-25T04:36:17.9750928Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9754361Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-04-25T04:36:17.9757728Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-04-25T04:36:17.9760986Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-04-25T04:36:17.9764459Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-04-25T04:36:17.9768574Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-04-25T04:36:17.9773317Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-04-25T04:36:17.9778071Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9781595Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:36:17.9786211Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:36:17.9790650Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-04-25T04:36:17.9794451Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-04-25T04:36:17.9799387Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9803905Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-04-25T04:36:17.9808473Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-04-25T04:36:17.9811869Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-04-25T04:36:17.9816664Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-04-25T04:36:17.9821233Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-04-25T04:36:17.9826038Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:17.9829246Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-04-25T04:36:17.9834034Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-04-25T04:36:17.9838882Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-04-25T04:36:17.9843687Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9847949Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-04-25T04:36:17.9851761Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-04-25T04:36:17.9856283Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-04-25T04:36:17.9861407Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-04-25T04:36:17.9866263Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-04-25T04:36:17.9870122Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:17.9874763Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-04-25T04:36:17.9879419Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-04-25T04:36:17.9883924Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-04-25T04:36:17.9887510Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-04-25T04:36:17.9892140Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-04-25T04:36:17.9896969Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-04-25T04:36:17.9901720Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-04-25T04:36:17.9905491Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9910002Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-04-25T04:36:17.9914704Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-04-25T04:36:17.9919197Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-04-25T04:36:17.9923054Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-04-25T04:36:17.9928007Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-04-25T04:36:17.9932949Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9937455Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-04-25T04:36:17.9941984Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-04-25T04:36:17.9945545Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-04-25T04:36:17.9950536Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-04-25T04:36:17.9959430Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-04-25T04:36:17.9962747Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:17.9965935Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-04-25T04:36:17.9969043Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-04-25T04:36:17.9972250Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-04-25T04:36:17.9975311Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-04-25T04:36:17.9982667Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-04-25T04:36:17.9985818Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-04-25T04:36:17.9989120Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-04-25T04:36:17.9992173Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-04-25T04:36:17.9995336Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-04-25T04:36:17.9998501Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-04-25T04:36:18.0001680Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-04-25T04:36:18.0004991Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0007990Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-04-25T04:36:18.0011134Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-04-25T04:36:18.0014623Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-04-25T04:36:18.0018125Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0021921Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-04-25T04:36:18.0025036Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-04-25T04:36:18.0028517Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-04-25T04:36:18.0031586Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-04-25T04:36:18.0035015Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0038168Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-04-25T04:36:18.0041264Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-04-25T04:36:18.0044436Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-04-25T04:36:18.0047716Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0050803Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-04-25T04:36:18.0053975Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-04-25T04:36:18.0057058Z adding 'torch/include/ATen/ops/_backward.h' 2025-04-25T04:36:18.0060482Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0063285Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-04-25T04:36:18.0066387Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-04-25T04:36:18.0069544Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-04-25T04:36:18.0073029Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-04-25T04:36:18.0076363Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0079316Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-04-25T04:36:18.0082535Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-04-25T04:36:18.0085759Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0088871Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-04-25T04:36:18.0092095Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-04-25T04:36:18.0095337Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-04-25T04:36:18.0098682Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0101651Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-04-25T04:36:18.0104983Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-04-25T04:36:18.0108347Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-04-25T04:36:18.0112048Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0115218Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-04-25T04:36:18.0118545Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-04-25T04:36:18.0121705Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-04-25T04:36:18.0125243Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-04-25T04:36:18.0128237Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-04-25T04:36:18.0131405Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0134228Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-04-25T04:36:18.0137328Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-04-25T04:36:18.0140330Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-04-25T04:36:18.0143495Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0146690Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-04-25T04:36:18.0149440Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-04-25T04:36:18.0152511Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-04-25T04:36:18.0155712Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0158554Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-04-25T04:36:18.0161716Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-04-25T04:36:18.0164652Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-04-25T04:36:18.0167791Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0170592Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-04-25T04:36:18.0173623Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-04-25T04:36:18.0178537Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-04-25T04:36:18.0181850Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0184673Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-04-25T04:36:18.0187737Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-04-25T04:36:18.0190773Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-04-25T04:36:18.0194087Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0196904Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-04-25T04:36:18.0199963Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-04-25T04:36:18.0202951Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-04-25T04:36:18.0206116Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0208917Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-04-25T04:36:18.0212368Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-04-25T04:36:18.0215557Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-04-25T04:36:18.0218560Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0221405Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-04-25T04:36:18.0224422Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-04-25T04:36:18.0227492Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-04-25T04:36:18.0230698Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0233759Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-04-25T04:36:18.0236780Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-04-25T04:36:18.0239699Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-04-25T04:36:18.0242906Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-04-25T04:36:18.0246035Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-04-25T04:36:18.0249379Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0252367Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-04-25T04:36:18.0255373Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-04-25T04:36:18.0258354Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-04-25T04:36:18.0261548Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-04-25T04:36:18.0264657Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-04-25T04:36:18.0268008Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0270875Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-04-25T04:36:18.0274004Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-04-25T04:36:18.0277128Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-04-25T04:36:18.0280311Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-04-25T04:36:18.0283516Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-04-25T04:36:18.0286769Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0289734Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-04-25T04:36:18.0292932Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-04-25T04:36:18.0296011Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-04-25T04:36:18.0299412Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0302548Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-04-25T04:36:18.0305587Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-04-25T04:36:18.0308831Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-04-25T04:36:18.0312115Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-04-25T04:36:18.0315383Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0318458Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-04-25T04:36:18.0321671Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-04-25T04:36:18.0324858Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-04-25T04:36:18.0328299Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0331255Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-04-25T04:36:18.0334257Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-04-25T04:36:18.0337578Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-04-25T04:36:18.0340915Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-04-25T04:36:18.0344148Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-04-25T04:36:18.0347447Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-04-25T04:36:18.0350423Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-04-25T04:36:18.0353868Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-04-25T04:36:18.0356860Z adding 'torch/include/ATen/ops/_conj.h' 2025-04-25T04:36:18.0360254Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0363281Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-04-25T04:36:18.0366627Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0369970Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.0372831Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-04-25T04:36:18.0376104Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-04-25T04:36:18.0379111Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-04-25T04:36:18.0382307Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-04-25T04:36:18.0385400Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-04-25T04:36:18.0388799Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0391677Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-04-25T04:36:18.0395083Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-04-25T04:36:18.0398726Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-04-25T04:36:18.0402752Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-04-25T04:36:18.0405977Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-04-25T04:36:18.0409347Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-04-25T04:36:18.0412670Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-04-25T04:36:18.0416085Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.0419167Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-04-25T04:36:18.0422439Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-04-25T04:36:18.0425509Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-04-25T04:36:18.0428806Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-04-25T04:36:18.0431936Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-04-25T04:36:18.0435333Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-04-25T04:36:18.0438531Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-04-25T04:36:18.0442105Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.0445102Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-04-25T04:36:18.0448299Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-04-25T04:36:18.0451442Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-04-25T04:36:18.0454597Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-04-25T04:36:18.0457775Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-04-25T04:36:18.0460984Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-04-25T04:36:18.0464239Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-04-25T04:36:18.0467384Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-04-25T04:36:18.0470639Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-04-25T04:36:18.0473842Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-04-25T04:36:18.0477333Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-04-25T04:36:18.0480956Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-04-25T04:36:18.0484366Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-04-25T04:36:18.0487880Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-04-25T04:36:18.0492164Z adding 'torch/include/ATen/ops/_convolution.h' 2025-04-25T04:36:18.0495955Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0503354Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0505106Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-04-25T04:36:18.0509808Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0513203Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-04-25T04:36:18.0516719Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-04-25T04:36:18.0521626Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-04-25T04:36:18.0524874Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0527993Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-04-25T04:36:18.0531224Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-04-25T04:36:18.0534368Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-04-25T04:36:18.0537864Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-04-25T04:36:18.0541072Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-04-25T04:36:18.0544443Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-04-25T04:36:18.0547826Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0550640Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-04-25T04:36:18.0553937Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-04-25T04:36:18.0557151Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0560037Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-04-25T04:36:18.0563195Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-04-25T04:36:18.0566175Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-04-25T04:36:18.0569290Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-04-25T04:36:18.0572206Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-04-25T04:36:18.0575455Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-04-25T04:36:18.0578626Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-04-25T04:36:18.0581799Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-04-25T04:36:18.0584816Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-04-25T04:36:18.0588060Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-04-25T04:36:18.0591104Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-04-25T04:36:18.0594527Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-04-25T04:36:18.0597462Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-04-25T04:36:18.0600623Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-04-25T04:36:18.0603908Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-04-25T04:36:18.0607568Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-04-25T04:36:18.0610947Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0614015Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:18.0617113Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:18.0620179Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-04-25T04:36:18.0623601Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-04-25T04:36:18.0626951Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0630129Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-04-25T04:36:18.0633345Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-04-25T04:36:18.0636452Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-04-25T04:36:18.0639500Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-04-25T04:36:18.0642964Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-04-25T04:36:18.0646466Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-04-25T04:36:18.0649832Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-04-25T04:36:18.0652891Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-04-25T04:36:18.0656231Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-04-25T04:36:18.0659527Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-04-25T04:36:18.0662837Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0665856Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-04-25T04:36:18.0668874Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-04-25T04:36:18.0672272Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-04-25T04:36:18.0675772Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-04-25T04:36:18.0679113Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0682162Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-04-25T04:36:18.0685176Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-04-25T04:36:18.0688442Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-04-25T04:36:18.0692406Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-04-25T04:36:18.0696804Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-04-25T04:36:18.0700700Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0703968Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-04-25T04:36:18.0707129Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-04-25T04:36:18.0710727Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-04-25T04:36:18.0714429Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0717587Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-04-25T04:36:18.0721141Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-04-25T04:36:18.0724719Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0727812Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-04-25T04:36:18.0730890Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-04-25T04:36:18.0734104Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-04-25T04:36:18.0737250Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-04-25T04:36:18.0740744Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-04-25T04:36:18.0743882Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-04-25T04:36:18.0747094Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0749923Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-04-25T04:36:18.0753091Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-04-25T04:36:18.0756126Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-04-25T04:36:18.0759368Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0762256Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-04-25T04:36:18.0765322Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-04-25T04:36:18.0768307Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-04-25T04:36:18.0771509Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0774354Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-04-25T04:36:18.0777445Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-04-25T04:36:18.0780452Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-04-25T04:36:18.0783734Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0786562Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-04-25T04:36:18.0789648Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-04-25T04:36:18.0792688Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-04-25T04:36:18.0795790Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-04-25T04:36:18.0798831Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-04-25T04:36:18.0802044Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-04-25T04:36:18.0805141Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-04-25T04:36:18.0808190Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-04-25T04:36:18.0811302Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-04-25T04:36:18.0814358Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-04-25T04:36:18.0817307Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-04-25T04:36:18.0820395Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-04-25T04:36:18.0823474Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-04-25T04:36:18.0826733Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0829474Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-04-25T04:36:18.0832773Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-04-25T04:36:18.0835714Z adding 'torch/include/ATen/ops/_dimI.h' 2025-04-25T04:36:18.0838863Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-04-25T04:36:18.0841955Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-04-25T04:36:18.0845064Z adding 'torch/include/ATen/ops/_dimV.h' 2025-04-25T04:36:18.0848144Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-04-25T04:36:18.0851252Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-04-25T04:36:18.0854400Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-04-25T04:36:18.0857644Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.0860605Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-04-25T04:36:18.0863709Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-04-25T04:36:18.0867258Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-04-25T04:36:18.0870339Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0873543Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-04-25T04:36:18.0876728Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-04-25T04:36:18.0879724Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-04-25T04:36:18.0883021Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-04-25T04:36:18.0886114Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-04-25T04:36:18.0889484Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-04-25T04:36:18.0892841Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-04-25T04:36:18.0896156Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-04-25T04:36:18.0899402Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-04-25T04:36:18.0902611Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-04-25T04:36:18.0905735Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-04-25T04:36:18.0908892Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-04-25T04:36:18.0912620Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-04-25T04:36:18.0916234Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-04-25T04:36:18.0920109Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-04-25T04:36:18.0923699Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-04-25T04:36:18.0927359Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-04-25T04:36:18.0930851Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-04-25T04:36:18.0934160Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-04-25T04:36:18.0937599Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-04-25T04:36:18.0941204Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-04-25T04:36:18.0944750Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0947848Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-04-25T04:36:18.0951112Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-04-25T04:36:18.0954399Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-04-25T04:36:18.0957657Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-04-25T04:36:18.0961029Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-04-25T04:36:18.0964310Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-04-25T04:36:18.0967813Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-04-25T04:36:18.0971286Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-04-25T04:36:18.0974464Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-04-25T04:36:18.0977629Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-04-25T04:36:18.0980901Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-04-25T04:36:18.0984605Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.0987449Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-04-25T04:36:18.0990802Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-04-25T04:36:18.0994513Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-04-25T04:36:18.0998576Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1001762Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-04-25T04:36:18.1005049Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-04-25T04:36:18.1008256Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-04-25T04:36:18.1011633Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-04-25T04:36:18.1015022Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-04-25T04:36:18.1018603Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1021891Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-04-25T04:36:18.1025490Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-04-25T04:36:18.1028325Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-04-25T04:36:18.1032407Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-04-25T04:36:18.1036058Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-04-25T04:36:18.1039979Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-04-25T04:36:18.1043873Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-04-25T04:36:18.1047382Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1050158Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-04-25T04:36:18.1053417Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-04-25T04:36:18.1056436Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-04-25T04:36:18.1059857Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-04-25T04:36:18.1063129Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-04-25T04:36:18.1066702Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.1069598Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-04-25T04:36:18.1072919Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-04-25T04:36:18.1076826Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-04-25T04:36:18.1080385Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1083497Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-04-25T04:36:18.1086610Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-04-25T04:36:18.1089945Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-04-25T04:36:18.1094142Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-04-25T04:36:18.1097773Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1100926Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-04-25T04:36:18.1104186Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-04-25T04:36:18.1107486Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-04-25T04:36:18.1110534Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-04-25T04:36:18.1113886Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1116749Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-04-25T04:36:18.1119914Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-04-25T04:36:18.1123490Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-04-25T04:36:18.1126688Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-04-25T04:36:18.1129946Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-04-25T04:36:18.1133170Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-04-25T04:36:18.1136304Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-04-25T04:36:18.1139406Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-04-25T04:36:18.1142677Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1145784Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-04-25T04:36:18.1148927Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-04-25T04:36:18.1151989Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-04-25T04:36:18.1155350Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-04-25T04:36:18.1158640Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-04-25T04:36:18.1161863Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-04-25T04:36:18.1165127Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-04-25T04:36:18.1168399Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-04-25T04:36:18.1171450Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-04-25T04:36:18.1174656Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-04-25T04:36:18.1178277Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1181141Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-04-25T04:36:18.1184233Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-04-25T04:36:18.1187246Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-04-25T04:36:18.1190549Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-04-25T04:36:18.1194495Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-04-25T04:36:18.1197937Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1200969Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-04-25T04:36:18.1204071Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-04-25T04:36:18.1207097Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-04-25T04:36:18.1210451Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-04-25T04:36:18.1213751Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-04-25T04:36:18.1217073Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-04-25T04:36:18.1220106Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-04-25T04:36:18.1223178Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-04-25T04:36:18.1226357Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-04-25T04:36:18.1229750Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-04-25T04:36:18.1239135Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-04-25T04:36:18.1242132Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-04-25T04:36:18.1245116Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-04-25T04:36:18.1248298Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-04-25T04:36:18.1251443Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-04-25T04:36:18.1254641Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-04-25T04:36:18.1257700Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-04-25T04:36:18.1260655Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-04-25T04:36:18.1263923Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-04-25T04:36:18.1267190Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-04-25T04:36:18.1270214Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-04-25T04:36:18.1273345Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-04-25T04:36:18.1276295Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-04-25T04:36:18.1279517Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-04-25T04:36:18.1282961Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-04-25T04:36:18.1286555Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-04-25T04:36:18.1289670Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-04-25T04:36:18.1293058Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-04-25T04:36:18.1296682Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-04-25T04:36:18.1300136Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-04-25T04:36:18.1303351Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-04-25T04:36:18.1306820Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-04-25T04:36:18.1309957Z adding 'torch/include/ATen/ops/_foobar.h' 2025-04-25T04:36:18.1313728Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1316502Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-04-25T04:36:18.1319593Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-04-25T04:36:18.1322779Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-04-25T04:36:18.1326040Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-04-25T04:36:18.1329369Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1332463Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-04-25T04:36:18.1335603Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-04-25T04:36:18.1338875Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-04-25T04:36:18.1342402Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-04-25T04:36:18.1345620Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1348609Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-04-25T04:36:18.1351653Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-04-25T04:36:18.1355072Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-04-25T04:36:18.1358688Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-04-25T04:36:18.1362180Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1365442Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-04-25T04:36:18.1368859Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-04-25T04:36:18.1372757Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-04-25T04:36:18.1376581Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-04-25T04:36:18.1380295Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1383480Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-04-25T04:36:18.1386802Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-04-25T04:36:18.1390619Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-04-25T04:36:18.1394459Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-04-25T04:36:18.1398436Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1401592Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-04-25T04:36:18.1404969Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-04-25T04:36:18.1408874Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-04-25T04:36:18.1412187Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-04-25T04:36:18.1415690Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1418699Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-04-25T04:36:18.1421986Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-04-25T04:36:18.1425108Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-04-25T04:36:18.1428240Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-04-25T04:36:18.1431612Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1434814Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-04-25T04:36:18.1438150Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-04-25T04:36:18.1441277Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-04-25T04:36:18.1444604Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-04-25T04:36:18.1448002Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1451104Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-04-25T04:36:18.1454190Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-04-25T04:36:18.1457374Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-04-25T04:36:18.1460905Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-04-25T04:36:18.1464449Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1467563Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-04-25T04:36:18.1470929Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-04-25T04:36:18.1474592Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-04-25T04:36:18.1478197Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-04-25T04:36:18.1481726Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1484830Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-04-25T04:36:18.1488081Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-04-25T04:36:18.1491774Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-04-25T04:36:18.1495161Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-04-25T04:36:18.1498578Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1501567Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-04-25T04:36:18.1504664Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-04-25T04:36:18.1507854Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-04-25T04:36:18.1511161Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-04-25T04:36:18.1514618Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1517692Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-04-25T04:36:18.1520813Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-04-25T04:36:18.1524110Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-04-25T04:36:18.1527623Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-04-25T04:36:18.1530620Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1534100Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-04-25T04:36:18.1537447Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-04-25T04:36:18.1540890Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-04-25T04:36:18.1544502Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-04-25T04:36:18.1547955Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1551208Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-04-25T04:36:18.1554509Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-04-25T04:36:18.1558506Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-04-25T04:36:18.1561981Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-04-25T04:36:18.1565432Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1568319Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-04-25T04:36:18.1571249Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-04-25T04:36:18.1574636Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-04-25T04:36:18.1577740Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-04-25T04:36:18.1580958Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1583904Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-04-25T04:36:18.1586860Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-04-25T04:36:18.1590189Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-04-25T04:36:18.1593426Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-04-25T04:36:18.1597104Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1600114Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-04-25T04:36:18.1603076Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-04-25T04:36:18.1606240Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-04-25T04:36:18.1609387Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-04-25T04:36:18.1612937Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1616009Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-04-25T04:36:18.1619227Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-04-25T04:36:18.1622418Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-04-25T04:36:18.1625440Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-04-25T04:36:18.1628663Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1631595Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-04-25T04:36:18.1634673Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-04-25T04:36:18.1637850Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-04-25T04:36:18.1640969Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-04-25T04:36:18.1644178Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1647125Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-04-25T04:36:18.1650116Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-04-25T04:36:18.1653252Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-04-25T04:36:18.1656609Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-04-25T04:36:18.1660019Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1663122Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-04-25T04:36:18.1666259Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-04-25T04:36:18.1669859Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-04-25T04:36:18.1673305Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-04-25T04:36:18.1676868Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1679616Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-04-25T04:36:18.1683445Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-04-25T04:36:18.1686733Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-04-25T04:36:18.1689871Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-04-25T04:36:18.1692941Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-04-25T04:36:18.1696184Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1699182Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-04-25T04:36:18.1702293Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-04-25T04:36:18.1705281Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-04-25T04:36:18.1708391Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-04-25T04:36:18.1711754Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1714824Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-04-25T04:36:18.1717770Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-04-25T04:36:18.1720943Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-04-25T04:36:18.1724052Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-04-25T04:36:18.1727268Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1730260Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-04-25T04:36:18.1733204Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-04-25T04:36:18.1736391Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-04-25T04:36:18.1739647Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1742574Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-04-25T04:36:18.1745516Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-04-25T04:36:18.1748652Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-04-25T04:36:18.1751739Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-04-25T04:36:18.1755093Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1758075Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-04-25T04:36:18.1761059Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-04-25T04:36:18.1764175Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-04-25T04:36:18.1767454Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-04-25T04:36:18.1770832Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1773875Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-04-25T04:36:18.1777140Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-04-25T04:36:18.1780739Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-04-25T04:36:18.1784400Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-04-25T04:36:18.1787932Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1791330Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-04-25T04:36:18.1794892Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-04-25T04:36:18.1798388Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-04-25T04:36:18.1802079Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-04-25T04:36:18.1805703Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1808799Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-04-25T04:36:18.1812358Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-04-25T04:36:18.1816114Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-04-25T04:36:18.1819535Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-04-25T04:36:18.1822935Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1825911Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-04-25T04:36:18.1829034Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-04-25T04:36:18.1832368Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-04-25T04:36:18.1835586Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-04-25T04:36:18.1839008Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1842026Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-04-25T04:36:18.1845233Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-04-25T04:36:18.1848418Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-04-25T04:36:18.1851904Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-04-25T04:36:18.1855474Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1858642Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-04-25T04:36:18.1861839Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-04-25T04:36:18.1865474Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-04-25T04:36:18.1868885Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-04-25T04:36:18.1872363Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1875397Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-04-25T04:36:18.1878666Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-04-25T04:36:18.1882342Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-04-25T04:36:18.1885934Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-04-25T04:36:18.1889696Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1893112Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-04-25T04:36:18.1896604Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-04-25T04:36:18.1900188Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-04-25T04:36:18.1903639Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-04-25T04:36:18.1906864Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1909866Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-04-25T04:36:18.1913066Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-04-25T04:36:18.1916395Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-04-25T04:36:18.1919573Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-04-25T04:36:18.1923024Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1926013Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-04-25T04:36:18.1928960Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-04-25T04:36:18.1932191Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-04-25T04:36:18.1935470Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-04-25T04:36:18.1938705Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1941651Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-04-25T04:36:18.1944598Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-04-25T04:36:18.1947741Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-04-25T04:36:18.1951055Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-04-25T04:36:18.1954403Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1957334Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-04-25T04:36:18.1960754Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-04-25T04:36:18.1964841Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-04-25T04:36:18.1968050Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-04-25T04:36:18.1971246Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1974238Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-04-25T04:36:18.1977179Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-04-25T04:36:18.1980493Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-04-25T04:36:18.1983598Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-04-25T04:36:18.1986856Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.1990199Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-04-25T04:36:18.1993270Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-04-25T04:36:18.1996453Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-04-25T04:36:18.2000378Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-04-25T04:36:18.2003921Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2007062Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-04-25T04:36:18.2010155Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-04-25T04:36:18.2013994Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-04-25T04:36:18.2017010Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-04-25T04:36:18.2020296Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2023268Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-04-25T04:36:18.2026244Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-04-25T04:36:18.2029411Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-04-25T04:36:18.2032598Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-04-25T04:36:18.2036095Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2039248Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-04-25T04:36:18.2042085Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-04-25T04:36:18.2045273Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-04-25T04:36:18.2048346Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-04-25T04:36:18.2051568Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2054500Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-04-25T04:36:18.2057430Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-04-25T04:36:18.2060585Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-04-25T04:36:18.2063699Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-04-25T04:36:18.2066939Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2069894Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-04-25T04:36:18.2072924Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-04-25T04:36:18.2076111Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-04-25T04:36:18.2079216Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-04-25T04:36:18.2082336Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-04-25T04:36:18.2085238Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-04-25T04:36:18.2088317Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-04-25T04:36:18.2091351Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-04-25T04:36:18.2094593Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2097514Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-04-25T04:36:18.2100533Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-04-25T04:36:18.2103585Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-04-25T04:36:18.2106892Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2109783Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-04-25T04:36:18.2113254Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2116159Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-04-25T04:36:18.2119315Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-04-25T04:36:18.2122309Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-04-25T04:36:18.2125433Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-04-25T04:36:18.2128680Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-04-25T04:36:18.2132046Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2135045Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-04-25T04:36:18.2138564Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-04-25T04:36:18.2142735Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-04-25T04:36:18.2146668Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-04-25T04:36:18.2150576Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2154235Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-04-25T04:36:18.2157930Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-04-25T04:36:18.2161717Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-04-25T04:36:18.2166392Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-04-25T04:36:18.2170402Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-04-25T04:36:18.2174411Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2177561Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-04-25T04:36:18.2180849Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-04-25T04:36:18.2184105Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-04-25T04:36:18.2188690Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-04-25T04:36:18.2192295Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-04-25T04:36:18.2195595Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2198728Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-04-25T04:36:18.2201847Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-04-25T04:36:18.2212811Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-04-25T04:36:18.2213262Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-04-25T04:36:18.2213966Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2215762Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-04-25T04:36:18.2218869Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-04-25T04:36:18.2222218Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-04-25T04:36:18.2225947Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-04-25T04:36:18.2229096Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-04-25T04:36:18.2232253Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-04-25T04:36:18.2235422Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-04-25T04:36:18.2238621Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-04-25T04:36:18.2241897Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-04-25T04:36:18.2245012Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-04-25T04:36:18.2248199Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-04-25T04:36:18.2251283Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-04-25T04:36:18.2254666Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-04-25T04:36:18.2258223Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-04-25T04:36:18.2262009Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2265244Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-04-25T04:36:18.2268409Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-04-25T04:36:18.2271783Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-04-25T04:36:18.2275876Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-04-25T04:36:18.2279133Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-04-25T04:36:18.2282455Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2285422Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-04-25T04:36:18.2288630Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2291864Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2294776Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-04-25T04:36:18.2297875Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-04-25T04:36:18.2300874Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-04-25T04:36:18.2303930Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-04-25T04:36:18.2307032Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-04-25T04:36:18.2310482Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.2313500Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-04-25T04:36:18.2316629Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-04-25T04:36:18.2319843Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-04-25T04:36:18.2323074Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-04-25T04:36:18.2326412Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.2329316Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-04-25T04:36:18.2332527Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-04-25T04:36:18.2335762Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2338809Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-04-25T04:36:18.2342088Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-04-25T04:36:18.2345146Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-04-25T04:36:18.2348313Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-04-25T04:36:18.2351284Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-04-25T04:36:18.2354533Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-04-25T04:36:18.2357667Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-04-25T04:36:18.2360888Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.2363732Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-04-25T04:36:18.2366806Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-04-25T04:36:18.2370094Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-04-25T04:36:18.2373465Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2376350Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-04-25T04:36:18.2379768Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-04-25T04:36:18.2382949Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-04-25T04:36:18.2386222Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2389279Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-04-25T04:36:18.2392336Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-04-25T04:36:18.2396136Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-04-25T04:36:18.2399842Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-04-25T04:36:18.2403718Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2407217Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-04-25T04:36:18.2410710Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-04-25T04:36:18.2414438Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-04-25T04:36:18.2418167Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-04-25T04:36:18.2421969Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2425218Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-04-25T04:36:18.2428341Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-04-25T04:36:18.2431636Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-04-25T04:36:18.2435550Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-04-25T04:36:18.2438985Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2442030Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-04-25T04:36:18.2445148Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-04-25T04:36:18.2448175Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-04-25T04:36:18.2451192Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-04-25T04:36:18.2454508Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-04-25T04:36:18.2457513Z adding 'torch/include/ATen/ops/_indices.h' 2025-04-25T04:36:18.2460574Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-04-25T04:36:18.2463758Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2466927Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2469749Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-04-25T04:36:18.2472974Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-04-25T04:36:18.2475979Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-04-25T04:36:18.2479015Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-04-25T04:36:18.2482041Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-04-25T04:36:18.2485120Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-04-25T04:36:18.2488133Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-04-25T04:36:18.2491106Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-04-25T04:36:18.2494233Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-04-25T04:36:18.2497293Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-04-25T04:36:18.2500608Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2503476Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-04-25T04:36:18.2506519Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-04-25T04:36:18.2509481Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-04-25T04:36:18.2512755Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2515648Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-04-25T04:36:18.2518695Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-04-25T04:36:18.2521705Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-04-25T04:36:18.2524895Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.2527747Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-04-25T04:36:18.2530801Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-04-25T04:36:18.2534100Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-04-25T04:36:18.2537256Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-04-25T04:36:18.2540325Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-04-25T04:36:18.2543317Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-04-25T04:36:18.2546495Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-04-25T04:36:18.2549427Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-04-25T04:36:18.2552752Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2555610Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-04-25T04:36:18.2558653Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-04-25T04:36:18.2561684Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-04-25T04:36:18.2564899Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2567829Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-04-25T04:36:18.2571160Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-04-25T04:36:18.2574301Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-04-25T04:36:18.2577621Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2580531Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-04-25T04:36:18.2583594Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-04-25T04:36:18.2586541Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-04-25T04:36:18.2589618Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-04-25T04:36:18.2592632Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-04-25T04:36:18.2595852Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-04-25T04:36:18.2599042Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-04-25T04:36:18.2602928Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2605638Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-04-25T04:36:18.2609313Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-04-25T04:36:18.2612702Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-04-25T04:36:18.2616357Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-04-25T04:36:18.2619829Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-04-25T04:36:18.2623632Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-04-25T04:36:18.2627265Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-04-25T04:36:18.2630852Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-04-25T04:36:18.2634585Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-04-25T04:36:18.2637862Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-04-25T04:36:18.2640961Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-04-25T04:36:18.2644272Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-04-25T04:36:18.2647594Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2650733Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-04-25T04:36:18.2653862Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-04-25T04:36:18.2656988Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-04-25T04:36:18.2660297Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-04-25T04:36:18.2663347Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-04-25T04:36:18.2666505Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-04-25T04:36:18.2669693Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-04-25T04:36:18.2673284Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2676352Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-04-25T04:36:18.2679429Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-04-25T04:36:18.2682496Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-04-25T04:36:18.2685623Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-04-25T04:36:18.2688937Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-04-25T04:36:18.2692005Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-04-25T04:36:18.2695165Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-04-25T04:36:18.2698539Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2701521Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-04-25T04:36:18.2704613Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-04-25T04:36:18.2707581Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-04-25T04:36:18.2710717Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-04-25T04:36:18.2713844Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-04-25T04:36:18.2717073Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-04-25T04:36:18.2720220Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-04-25T04:36:18.2723313Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-04-25T04:36:18.2726343Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-04-25T04:36:18.2729276Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-04-25T04:36:18.2732346Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-04-25T04:36:18.2735427Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-04-25T04:36:18.2738618Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-04-25T04:36:18.2741922Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2744894Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-04-25T04:36:18.2748040Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-04-25T04:36:18.2751019Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-04-25T04:36:18.2754243Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-04-25T04:36:18.2757244Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-04-25T04:36:18.2760437Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-04-25T04:36:18.2764066Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2766977Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-04-25T04:36:18.2770379Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-04-25T04:36:18.2773570Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-04-25T04:36:18.2776688Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-04-25T04:36:18.2779829Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-04-25T04:36:18.2783029Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-04-25T04:36:18.2786269Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-04-25T04:36:18.2789498Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-04-25T04:36:18.2792748Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-04-25T04:36:18.2795846Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-04-25T04:36:18.2799042Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-04-25T04:36:18.2802488Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-04-25T04:36:18.2805918Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2808917Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-04-25T04:36:18.2812395Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-04-25T04:36:18.2815533Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-04-25T04:36:18.2818956Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.2821772Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-04-25T04:36:18.2825069Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-04-25T04:36:18.2828359Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-04-25T04:36:18.2831585Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-04-25T04:36:18.2834779Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-04-25T04:36:18.2837957Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-04-25T04:36:18.2841177Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-04-25T04:36:18.2844453Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2847853Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-04-25T04:36:18.2850898Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2854250Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.2857084Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-04-25T04:36:18.2860272Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-04-25T04:36:18.2863354Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-04-25T04:36:18.2866463Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-04-25T04:36:18.2869850Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-04-25T04:36:18.2873344Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2876395Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-04-25T04:36:18.2879594Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-04-25T04:36:18.2882619Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-04-25T04:36:18.2885988Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-04-25T04:36:18.2889177Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-04-25T04:36:18.2892554Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2895610Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-04-25T04:36:18.2898854Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-04-25T04:36:18.2901973Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-04-25T04:36:18.2905209Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-04-25T04:36:18.2908387Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-04-25T04:36:18.2911637Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2914892Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-04-25T04:36:18.2917901Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-04-25T04:36:18.2921204Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-04-25T04:36:18.2924516Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-04-25T04:36:18.2927979Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-04-25T04:36:18.2936149Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2936509Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-04-25T04:36:18.2939491Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-04-25T04:36:18.2942814Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-04-25T04:36:18.2946002Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-04-25T04:36:18.2949432Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2952871Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-04-25T04:36:18.2955771Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-04-25T04:36:18.2959086Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-04-25T04:36:18.2962349Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-04-25T04:36:18.2965592Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-04-25T04:36:18.2968781Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-04-25T04:36:18.2971945Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-04-25T04:36:18.2975324Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-04-25T04:36:18.2978408Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-04-25T04:36:18.2981640Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2984529Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-04-25T04:36:18.2987770Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-04-25T04:36:18.2990977Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-04-25T04:36:18.2994453Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.2997539Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-04-25T04:36:18.3000539Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-04-25T04:36:18.3003875Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-04-25T04:36:18.3007409Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-04-25T04:36:18.3011046Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3013977Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-04-25T04:36:18.3017364Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-04-25T04:36:18.3021095Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-04-25T04:36:18.3024645Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3027705Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-04-25T04:36:18.3030963Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-04-25T04:36:18.3034712Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-04-25T04:36:18.3038489Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3042135Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-04-25T04:36:18.3045859Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-04-25T04:36:18.3049153Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-04-25T04:36:18.3052736Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-04-25T04:36:18.3056115Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3059246Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-04-25T04:36:18.3062609Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-04-25T04:36:18.3066485Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-04-25T04:36:18.3070175Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-04-25T04:36:18.3073729Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3076993Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-04-25T04:36:18.3080190Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-04-25T04:36:18.3083518Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-04-25T04:36:18.3086931Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-04-25T04:36:18.3089956Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-04-25T04:36:18.3093422Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3096309Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-04-25T04:36:18.3099504Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3102659Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.3105453Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-04-25T04:36:18.3108750Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-04-25T04:36:18.3111717Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-04-25T04:36:18.3114852Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-04-25T04:36:18.3117973Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-04-25T04:36:18.3121084Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-04-25T04:36:18.3124137Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-04-25T04:36:18.3127101Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-04-25T04:36:18.3130169Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-04-25T04:36:18.3133190Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-04-25T04:36:18.3136390Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-04-25T04:36:18.3139795Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3142716Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-04-25T04:36:18.3146007Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-04-25T04:36:18.3149215Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3152567Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-04-25T04:36:18.3156027Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-04-25T04:36:18.3159014Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-04-25T04:36:18.3162194Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-04-25T04:36:18.3165476Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-04-25T04:36:18.3168465Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-04-25T04:36:18.3172302Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-04-25T04:36:18.3175405Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-04-25T04:36:18.3178332Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-04-25T04:36:18.3181430Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-04-25T04:36:18.3184477Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-04-25T04:36:18.3187415Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-04-25T04:36:18.3190625Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-04-25T04:36:18.3193701Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-04-25T04:36:18.3196672Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-04-25T04:36:18.3199725Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-04-25T04:36:18.3202731Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-04-25T04:36:18.3205654Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-04-25T04:36:18.3208725Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-04-25T04:36:18.3211776Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-04-25T04:36:18.3214744Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-04-25T04:36:18.3217798Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-04-25T04:36:18.3220775Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-04-25T04:36:18.3223731Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-04-25T04:36:18.3226727Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-04-25T04:36:18.3229703Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-04-25T04:36:18.3232862Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-04-25T04:36:18.3236172Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3239362Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.3242171Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-04-25T04:36:18.3245310Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-04-25T04:36:18.3248301Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-04-25T04:36:18.3251345Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-04-25T04:36:18.3254501Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-04-25T04:36:18.3257616Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-04-25T04:36:18.3260685Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-04-25T04:36:18.3263751Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-04-25T04:36:18.3266782Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-04-25T04:36:18.3269910Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-04-25T04:36:18.3273118Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-04-25T04:36:18.3276415Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3279336Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-04-25T04:36:18.3282377Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-04-25T04:36:18.3285371Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-04-25T04:36:18.3288522Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-04-25T04:36:18.3291567Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-04-25T04:36:18.3294507Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-04-25T04:36:18.3297587Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-04-25T04:36:18.3300525Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-04-25T04:36:18.3303655Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-04-25T04:36:18.3306881Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-04-25T04:36:18.3310295Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3313382Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-04-25T04:36:18.3316665Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-04-25T04:36:18.3319714Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-04-25T04:36:18.3322906Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3325738Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-04-25T04:36:18.3328865Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-04-25T04:36:18.3331941Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-04-25T04:36:18.3334951Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-04-25T04:36:18.3338101Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-04-25T04:36:18.3341355Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-04-25T04:36:18.3344591Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3347643Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-04-25T04:36:18.3350869Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-04-25T04:36:18.3354090Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-04-25T04:36:18.3357484Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3360368Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-04-25T04:36:18.3363660Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-04-25T04:36:18.3366824Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-04-25T04:36:18.3370165Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-04-25T04:36:18.3373538Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3376765Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.3379719Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-04-25T04:36:18.3383095Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-04-25T04:36:18.3386329Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-04-25T04:36:18.3389436Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-04-25T04:36:18.3392603Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-04-25T04:36:18.3395846Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-04-25T04:36:18.3398968Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-04-25T04:36:18.3402329Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-04-25T04:36:18.3405659Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3409265Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.3411989Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-04-25T04:36:18.3415632Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-04-25T04:36:18.3418459Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-04-25T04:36:18.3421663Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-04-25T04:36:18.3424951Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-04-25T04:36:18.3428260Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3431353Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-04-25T04:36:18.3434745Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-04-25T04:36:18.3437856Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-04-25T04:36:18.3441207Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3444077Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-04-25T04:36:18.3447224Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-04-25T04:36:18.3450698Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-04-25T04:36:18.3454306Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3457269Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-04-25T04:36:18.3460658Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-04-25T04:36:18.3463705Z adding 'torch/include/ATen/ops/_nnz.h' 2025-04-25T04:36:18.3466700Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-04-25T04:36:18.3469939Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-04-25T04:36:18.3473273Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-04-25T04:36:18.3476611Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-04-25T04:36:18.3480348Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3482936Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-04-25T04:36:18.3486203Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-04-25T04:36:18.3489471Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3492500Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-04-25T04:36:18.3495733Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-04-25T04:36:18.3498982Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-04-25T04:36:18.3502314Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3505175Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-04-25T04:36:18.3508605Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-04-25T04:36:18.3511538Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-04-25T04:36:18.3515045Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3518018Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-04-25T04:36:18.3521185Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-04-25T04:36:18.3524322Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-04-25T04:36:18.3527711Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3530708Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-04-25T04:36:18.3533873Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-04-25T04:36:18.3537686Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-04-25T04:36:18.3541513Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-04-25T04:36:18.3544733Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-04-25T04:36:18.3547926Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-04-25T04:36:18.3551582Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-04-25T04:36:18.3555254Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-04-25T04:36:18.3558904Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3562531Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-04-25T04:36:18.3565852Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-04-25T04:36:18.3568818Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-04-25T04:36:18.3572185Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-04-25T04:36:18.3575386Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-04-25T04:36:18.3578650Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3581769Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-04-25T04:36:18.3584846Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-04-25T04:36:18.3587836Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-04-25T04:36:18.3590946Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-04-25T04:36:18.3594328Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-04-25T04:36:18.3597563Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3600463Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-04-25T04:36:18.3603684Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-04-25T04:36:18.3606685Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-04-25T04:36:18.3609940Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-04-25T04:36:18.3613068Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-04-25T04:36:18.3616097Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-04-25T04:36:18.3619035Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-04-25T04:36:18.3622421Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-04-25T04:36:18.3625141Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-04-25T04:36:18.3628107Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-04-25T04:36:18.3631107Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-04-25T04:36:18.3634297Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-04-25T04:36:18.3637285Z adding 'torch/include/ATen/ops/_print.h' 2025-04-25T04:36:18.3640703Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3643539Z adding 'torch/include/ATen/ops/_print_native.h' 2025-04-25T04:36:18.3646579Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-04-25T04:36:18.3649598Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-04-25T04:36:18.3652792Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3655620Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-04-25T04:36:18.3658700Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-04-25T04:36:18.3661817Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-04-25T04:36:18.3665000Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3667839Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-04-25T04:36:18.3670926Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-04-25T04:36:18.3674117Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-04-25T04:36:18.3677491Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-04-25T04:36:18.3680834Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3684002Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.3686837Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-04-25T04:36:18.3690003Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-04-25T04:36:18.3693086Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-04-25T04:36:18.3696296Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-04-25T04:36:18.3699318Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-04-25T04:36:18.3702215Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-04-25T04:36:18.3705286Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-04-25T04:36:18.3708348Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-04-25T04:36:18.3711608Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3714566Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-04-25T04:36:18.3717645Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-04-25T04:36:18.3720653Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-04-25T04:36:18.3723824Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3726904Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-04-25T04:36:18.3729979Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-04-25T04:36:18.3733300Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-04-25T04:36:18.3736727Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3739734Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-04-25T04:36:18.3742682Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-04-25T04:36:18.3745876Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-04-25T04:36:18.3748954Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-04-25T04:36:18.3752238Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3755051Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-04-25T04:36:18.3758107Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-04-25T04:36:18.3761405Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-04-25T04:36:18.3764367Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3767195Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-04-25T04:36:18.3770264Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-04-25T04:36:18.3773328Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-04-25T04:36:18.3776563Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3779477Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-04-25T04:36:18.3782500Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-04-25T04:36:18.3785476Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-04-25T04:36:18.3788655Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-04-25T04:36:18.3791706Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-04-25T04:36:18.3795597Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3798039Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-04-25T04:36:18.3801209Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-04-25T04:36:18.3804389Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-04-25T04:36:18.3807819Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.3810892Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-04-25T04:36:18.3814104Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-04-25T04:36:18.3817344Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-04-25T04:36:18.3820416Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-04-25T04:36:18.3823760Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-04-25T04:36:18.3826996Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-04-25T04:36:18.3830609Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-04-25T04:36:18.3834325Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-04-25T04:36:18.3837518Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-04-25T04:36:18.3840912Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-04-25T04:36:18.3844124Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-04-25T04:36:18.3847423Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-04-25T04:36:18.3850840Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-04-25T04:36:18.3854080Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-04-25T04:36:18.3857519Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-04-25T04:36:18.3860799Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-04-25T04:36:18.3863992Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-04-25T04:36:18.3867321Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-04-25T04:36:18.3870638Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-04-25T04:36:18.3873917Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-04-25T04:36:18.3877180Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-04-25T04:36:18.3880499Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-04-25T04:36:18.3883971Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-04-25T04:36:18.3887743Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-04-25T04:36:18.3890702Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-04-25T04:36:18.3894003Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-04-25T04:36:18.3897994Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-04-25T04:36:18.3901333Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-04-25T04:36:18.3904557Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-04-25T04:36:18.3907934Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-04-25T04:36:18.3910966Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-04-25T04:36:18.3914508Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-04-25T04:36:18.3917919Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-04-25T04:36:18.3921206Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-04-25T04:36:18.3924528Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-04-25T04:36:18.3927631Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-04-25T04:36:18.3931042Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-04-25T04:36:18.3934378Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-04-25T04:36:18.3938307Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-04-25T04:36:18.3942054Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3945077Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-04-25T04:36:18.3948572Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-04-25T04:36:18.3952105Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3955177Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-04-25T04:36:18.3958591Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-04-25T04:36:18.3961662Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-04-25T04:36:18.3964997Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-04-25T04:36:18.3968055Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-04-25T04:36:18.3971325Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-04-25T04:36:18.3974673Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-04-25T04:36:18.3977909Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-04-25T04:36:18.3981229Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-04-25T04:36:18.3984318Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-04-25T04:36:18.3987766Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-04-25T04:36:18.3991212Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-04-25T04:36:18.3994746Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.3997873Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-04-25T04:36:18.4001038Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-04-25T04:36:18.4004257Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-04-25T04:36:18.4007698Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-04-25T04:36:18.4010804Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-04-25T04:36:18.4014431Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4017003Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-04-25T04:36:18.4020228Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-04-25T04:36:18.4024411Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-04-25T04:36:18.4028182Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4031455Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.4034843Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.4038192Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-04-25T04:36:18.4041862Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-04-25T04:36:18.4046081Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-04-25T04:36:18.4049936Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-04-25T04:36:18.4053249Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-04-25T04:36:18.4056463Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-04-25T04:36:18.4059762Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-04-25T04:36:18.4063077Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-04-25T04:36:18.4066505Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4069557Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-04-25T04:36:18.4072960Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-04-25T04:36:18.4076055Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-04-25T04:36:18.4079288Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4082147Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-04-25T04:36:18.4085500Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-04-25T04:36:18.4088541Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-04-25T04:36:18.4091772Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4094666Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-04-25T04:36:18.4097739Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-04-25T04:36:18.4100946Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-04-25T04:36:18.4104154Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4106988Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-04-25T04:36:18.4110032Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-04-25T04:36:18.4113134Z adding 'torch/include/ATen/ops/_softmax.h' 2025-04-25T04:36:18.4116300Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-04-25T04:36:18.4119982Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.4122927Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-04-25T04:36:18.4126128Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-04-25T04:36:18.4129226Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-04-25T04:36:18.4132489Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-04-25T04:36:18.4135478Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-04-25T04:36:18.4138670Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-04-25T04:36:18.4142006Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.4144958Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-04-25T04:36:18.4148042Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-04-25T04:36:18.4151350Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-04-25T04:36:18.4154164Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-04-25T04:36:18.4157135Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-04-25T04:36:18.4160288Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-04-25T04:36:18.4163382Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-04-25T04:36:18.4166655Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4169535Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-04-25T04:36:18.4172812Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-04-25T04:36:18.4175887Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-04-25T04:36:18.4178933Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-04-25T04:36:18.4182236Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4185820Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.4188476Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-04-25T04:36:18.4191568Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-04-25T04:36:18.4194739Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-04-25T04:36:18.4197995Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-04-25T04:36:18.4201164Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-04-25T04:36:18.4204495Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4207397Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-04-25T04:36:18.4210554Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4213755Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-04-25T04:36:18.4217033Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4219932Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-04-25T04:36:18.4223084Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4226550Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-04-25T04:36:18.4230004Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4233089Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-04-25T04:36:18.4236319Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4239559Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-04-25T04:36:18.4242884Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4245876Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-04-25T04:36:18.4249157Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-04-25T04:36:18.4252518Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-04-25T04:36:18.4256022Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4259000Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-04-25T04:36:18.4262177Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4265472Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-04-25T04:36:18.4269418Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-04-25T04:36:18.4273137Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4276317Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-04-25T04:36:18.4279772Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-04-25T04:36:18.4282800Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-04-25T04:36:18.4286025Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4289067Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-04-25T04:36:18.4292042Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-04-25T04:36:18.4295568Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-04-25T04:36:18.4298837Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-04-25T04:36:18.4302194Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4305081Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-04-25T04:36:18.4308296Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4311730Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-04-25T04:36:18.4315201Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4318079Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-04-25T04:36:18.4321287Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-04-25T04:36:18.4324467Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-04-25T04:36:18.4327753Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4330631Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-04-25T04:36:18.4333808Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-04-25T04:36:18.4337019Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-04-25T04:36:18.4340301Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4343249Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-04-25T04:36:18.4346443Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-04-25T04:36:18.4349587Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-04-25T04:36:18.4353159Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-04-25T04:36:18.4356757Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4359849Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-04-25T04:36:18.4363120Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-04-25T04:36:18.4366458Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4369664Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4372613Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-04-25T04:36:18.4376011Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-04-25T04:36:18.4379195Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-04-25T04:36:18.4382660Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4385606Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-04-25T04:36:18.4388922Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-04-25T04:36:18.4392139Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-04-25T04:36:18.4395422Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4398406Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-04-25T04:36:18.4401552Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-04-25T04:36:18.4404798Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-04-25T04:36:18.4407936Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-04-25T04:36:18.4411107Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-04-25T04:36:18.4414798Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-04-25T04:36:18.4417502Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-04-25T04:36:18.4420722Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-04-25T04:36:18.4423857Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-04-25T04:36:18.4427152Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-04-25T04:36:18.4430157Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-04-25T04:36:18.4433586Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-04-25T04:36:18.4436781Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-04-25T04:36:18.4439960Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-04-25T04:36:18.4443086Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-04-25T04:36:18.4446318Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-04-25T04:36:18.4449383Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-04-25T04:36:18.4452510Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-04-25T04:36:18.4455641Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-04-25T04:36:18.4459000Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-04-25T04:36:18.4462177Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-04-25T04:36:18.4465511Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-04-25T04:36:18.4468529Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-04-25T04:36:18.4471918Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-04-25T04:36:18.4475065Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-04-25T04:36:18.4478301Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-04-25T04:36:18.4481322Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-04-25T04:36:18.4484526Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-04-25T04:36:18.4487731Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-04-25T04:36:18.4490912Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-04-25T04:36:18.4494031Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-04-25T04:36:18.4497190Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-04-25T04:36:18.4500838Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-04-25T04:36:18.4504193Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-04-25T04:36:18.4507534Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4510561Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-04-25T04:36:18.4513883Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-04-25T04:36:18.4517216Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4520318Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4523404Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-04-25T04:36:18.4526734Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-04-25T04:36:18.4530031Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-04-25T04:36:18.4533429Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4536350Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-04-25T04:36:18.4539659Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-04-25T04:36:18.4542811Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-04-25T04:36:18.4546651Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-04-25T04:36:18.4550099Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4553499Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-04-25T04:36:18.4557115Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-04-25T04:36:18.4560395Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4563689Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4566596Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-04-25T04:36:18.4570081Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-04-25T04:36:18.4573289Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-04-25T04:36:18.4576756Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4579755Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-04-25T04:36:18.4582967Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-04-25T04:36:18.4586145Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-04-25T04:36:18.4589217Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-04-25T04:36:18.4592410Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-04-25T04:36:18.4595552Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-04-25T04:36:18.4598623Z adding 'torch/include/ATen/ops/_stack.h' 2025-04-25T04:36:18.4601956Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4604934Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-04-25T04:36:18.4608076Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-04-25T04:36:18.4611262Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-04-25T04:36:18.4614393Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-04-25T04:36:18.4617626Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4620582Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-04-25T04:36:18.4623595Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-04-25T04:36:18.4626608Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-04-25T04:36:18.4629836Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4632885Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-04-25T04:36:18.4635918Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-04-25T04:36:18.4639764Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-04-25T04:36:18.4643036Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-04-25T04:36:18.4646112Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-04-25T04:36:18.4649302Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-04-25T04:36:18.4652395Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-04-25T04:36:18.4655650Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4658531Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-04-25T04:36:18.4661692Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-04-25T04:36:18.4664897Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-04-25T04:36:18.4668117Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4671187Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4674202Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-04-25T04:36:18.4677378Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-04-25T04:36:18.4680408Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-04-25T04:36:18.4683934Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4686897Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-04-25T04:36:18.4690211Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4693437Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.4696383Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-04-25T04:36:18.4699610Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-04-25T04:36:18.4702952Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-04-25T04:36:18.4706188Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-04-25T04:36:18.4709152Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-04-25T04:36:18.4712680Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4715525Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-04-25T04:36:18.4718768Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-04-25T04:36:18.4721970Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-04-25T04:36:18.4725258Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4728378Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-04-25T04:36:18.4731331Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-04-25T04:36:18.4734614Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-04-25T04:36:18.4737794Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-04-25T04:36:18.4741216Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4744250Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-04-25T04:36:18.4747337Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-04-25T04:36:18.4750655Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-04-25T04:36:18.4753863Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-04-25T04:36:18.4757264Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4760278Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-04-25T04:36:18.4763414Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-04-25T04:36:18.4766744Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-04-25T04:36:18.4769860Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-04-25T04:36:18.4773236Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4776241Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-04-25T04:36:18.4779296Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-04-25T04:36:18.4782482Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-04-25T04:36:18.4785678Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-04-25T04:36:18.4788947Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4792028Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-04-25T04:36:18.4795608Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-04-25T04:36:18.4798439Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-04-25T04:36:18.4801694Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4804558Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-04-25T04:36:18.4808114Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-04-25T04:36:18.4810839Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-04-25T04:36:18.4814254Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4817159Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-04-25T04:36:18.4820435Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-04-25T04:36:18.4823538Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-04-25T04:36:18.4826887Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4829871Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-04-25T04:36:18.4833139Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-04-25T04:36:18.4836439Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-04-25T04:36:18.4839776Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4842886Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-04-25T04:36:18.4846039Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-04-25T04:36:18.4849314Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-04-25T04:36:18.4852676Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4855665Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-04-25T04:36:18.4859002Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-04-25T04:36:18.4862189Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-04-25T04:36:18.4865649Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-04-25T04:36:18.4869064Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4872256Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-04-25T04:36:18.4875428Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-04-25T04:36:18.4878735Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-04-25T04:36:18.4882118Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4885185Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-04-25T04:36:18.4888365Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-04-25T04:36:18.4891757Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-04-25T04:36:18.4895065Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-04-25T04:36:18.4898360Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-04-25T04:36:18.4901629Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4905212Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-04-25T04:36:18.4908689Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4911807Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-04-25T04:36:18.4915062Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-04-25T04:36:18.4918369Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-04-25T04:36:18.4921556Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-04-25T04:36:18.4924752Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-04-25T04:36:18.4928195Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4931346Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-04-25T04:36:18.4934781Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-04-25T04:36:18.4937877Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-04-25T04:36:18.4941156Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-04-25T04:36:18.4944686Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4947665Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-04-25T04:36:18.4951111Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-04-25T04:36:18.4954470Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-04-25T04:36:18.4957764Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.4960780Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-04-25T04:36:18.4963879Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-04-25T04:36:18.4967101Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-04-25T04:36:18.4970352Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4973439Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-04-25T04:36:18.4976817Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-04-25T04:36:18.4980047Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-04-25T04:36:18.4983327Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-04-25T04:36:18.4986584Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.4989715Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-04-25T04:36:18.4992929Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-04-25T04:36:18.4996065Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-04-25T04:36:18.4999406Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-04-25T04:36:18.5002584Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-04-25T04:36:18.5005987Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5009001Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-04-25T04:36:18.5012246Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-04-25T04:36:18.5015228Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-04-25T04:36:18.5018580Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-04-25T04:36:18.5022009Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5025044Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-04-25T04:36:18.5028202Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-04-25T04:36:18.5031430Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5034628Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-04-25T04:36:18.5037679Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-04-25T04:36:18.5040660Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-04-25T04:36:18.5043922Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-04-25T04:36:18.5047033Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-04-25T04:36:18.5050287Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5053250Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-04-25T04:36:18.5056300Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-04-25T04:36:18.5059539Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-04-25T04:36:18.5062733Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-04-25T04:36:18.5065870Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-04-25T04:36:18.5068907Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-04-25T04:36:18.5072966Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-04-25T04:36:18.5076208Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-04-25T04:36:18.5079378Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-04-25T04:36:18.5082398Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-04-25T04:36:18.5085421Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-04-25T04:36:18.5088528Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-04-25T04:36:18.5092046Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5095060Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-04-25T04:36:18.5098118Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-04-25T04:36:18.5101122Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-04-25T04:36:18.5104357Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-04-25T04:36:18.5108149Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-04-25T04:36:18.5111721Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5115006Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-04-25T04:36:18.5118117Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-04-25T04:36:18.5121228Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-04-25T04:36:18.5124717Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-04-25T04:36:18.5127906Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-04-25T04:36:18.5131180Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5134361Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5137152Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-04-25T04:36:18.5140412Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-04-25T04:36:18.5143765Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-04-25T04:36:18.5147274Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5150359Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-04-25T04:36:18.5153507Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-04-25T04:36:18.5156834Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-04-25T04:36:18.5160008Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-04-25T04:36:18.5163353Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5166379Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-04-25T04:36:18.5169401Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-04-25T04:36:18.5172599Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-04-25T04:36:18.5175662Z adding 'torch/include/ATen/ops/_unique.h' 2025-04-25T04:36:18.5178840Z adding 'torch/include/ATen/ops/_unique2.h' 2025-04-25T04:36:18.5182157Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5185177Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-04-25T04:36:18.5188219Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-04-25T04:36:18.5191174Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-04-25T04:36:18.5194562Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-04-25T04:36:18.5197829Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5200854Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-04-25T04:36:18.5203996Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-04-25T04:36:18.5206995Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-04-25T04:36:18.5210210Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-04-25T04:36:18.5213277Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-04-25T04:36:18.5216550Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5219363Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-04-25T04:36:18.5222464Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-04-25T04:36:18.5225506Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-04-25T04:36:18.5228668Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5231487Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-04-25T04:36:18.5234696Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-04-25T04:36:18.5237741Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-04-25T04:36:18.5241019Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5243894Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-04-25T04:36:18.5247118Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-04-25T04:36:18.5250197Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-04-25T04:36:18.5253644Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5256507Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-04-25T04:36:18.5259862Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-04-25T04:36:18.5263114Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-04-25T04:36:18.5266438Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5269569Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-04-25T04:36:18.5272861Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-04-25T04:36:18.5276208Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-04-25T04:36:18.5279551Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5282619Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-04-25T04:36:18.5285877Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-04-25T04:36:18.5289627Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-04-25T04:36:18.5293558Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-04-25T04:36:18.5297260Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5300409Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5303850Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5306931Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-04-25T04:36:18.5310380Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-04-25T04:36:18.5314107Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-04-25T04:36:18.5317418Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-04-25T04:36:18.5320935Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5324010Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5327307Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-04-25T04:36:18.5330578Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-04-25T04:36:18.5333752Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-04-25T04:36:18.5337128Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-04-25T04:36:18.5340292Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-04-25T04:36:18.5343771Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-04-25T04:36:18.5347883Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-04-25T04:36:18.5351590Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-04-25T04:36:18.5355245Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5358399Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5361773Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5364964Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-04-25T04:36:18.5368312Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-04-25T04:36:18.5371639Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-04-25T04:36:18.5374963Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-04-25T04:36:18.5388138Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5391302Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5395008Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-04-25T04:36:18.5403105Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-04-25T04:36:18.5403672Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-04-25T04:36:18.5407690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-04-25T04:36:18.5410904Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-04-25T04:36:18.5414124Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-04-25T04:36:18.5417794Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-04-25T04:36:18.5421708Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-04-25T04:36:18.5425307Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5428570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5431925Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5435127Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-04-25T04:36:18.5438422Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-04-25T04:36:18.5441544Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-04-25T04:36:18.5445212Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-04-25T04:36:18.5448613Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5451839Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5454968Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-04-25T04:36:18.5458257Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-04-25T04:36:18.5461403Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-04-25T04:36:18.5464597Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-04-25T04:36:18.5467802Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-04-25T04:36:18.5471157Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-04-25T04:36:18.5475046Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-04-25T04:36:18.5478928Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-04-25T04:36:18.5482534Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5485690Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5489001Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5492346Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-04-25T04:36:18.5495538Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-04-25T04:36:18.5498748Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-04-25T04:36:18.5502138Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-04-25T04:36:18.5505525Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5508727Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5511965Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-04-25T04:36:18.5515326Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-04-25T04:36:18.5518396Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-04-25T04:36:18.5521747Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-04-25T04:36:18.5524959Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-04-25T04:36:18.5528332Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-04-25T04:36:18.5532138Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-04-25T04:36:18.5535988Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-04-25T04:36:18.5540096Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5543297Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5546566Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5550081Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-04-25T04:36:18.5553213Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-04-25T04:36:18.5556978Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-04-25T04:36:18.5560738Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-04-25T04:36:18.5564184Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5567689Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5570694Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-04-25T04:36:18.5573964Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-04-25T04:36:18.5577027Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-04-25T04:36:18.5580462Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-04-25T04:36:18.5583656Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-04-25T04:36:18.5587146Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-04-25T04:36:18.5590249Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-04-25T04:36:18.5593608Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-04-25T04:36:18.5596811Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-04-25T04:36:18.5600076Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-04-25T04:36:18.5603165Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-04-25T04:36:18.5606392Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5609214Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-04-25T04:36:18.5612471Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-04-25T04:36:18.5615555Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-04-25T04:36:18.5618671Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-04-25T04:36:18.5621787Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-04-25T04:36:18.5624729Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-04-25T04:36:18.5627858Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-04-25T04:36:18.5630859Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-04-25T04:36:18.5634218Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5637110Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-04-25T04:36:18.5640197Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-04-25T04:36:18.5643452Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-04-25T04:36:18.5646676Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5649518Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-04-25T04:36:18.5652678Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-04-25T04:36:18.5655641Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-04-25T04:36:18.5658852Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5661746Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-04-25T04:36:18.5664866Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-04-25T04:36:18.5667885Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-04-25T04:36:18.5671129Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5674135Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-04-25T04:36:18.5677270Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-04-25T04:36:18.5680295Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-04-25T04:36:18.5683507Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5686381Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-04-25T04:36:18.5689494Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-04-25T04:36:18.5692504Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-04-25T04:36:18.5695768Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5698838Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-04-25T04:36:18.5701970Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-04-25T04:36:18.5705024Z adding 'torch/include/ATen/ops/_values.h' 2025-04-25T04:36:18.5708086Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-04-25T04:36:18.5711275Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5714509Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5717268Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-04-25T04:36:18.5720377Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-04-25T04:36:18.5723356Z adding 'torch/include/ATen/ops/_values_native.h' 2025-04-25T04:36:18.5726363Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-04-25T04:36:18.5729271Z adding 'torch/include/ATen/ops/_version.h' 2025-04-25T04:36:18.5732424Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5735223Z adding 'torch/include/ATen/ops/_version_native.h' 2025-04-25T04:36:18.5738543Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-04-25T04:36:18.5741618Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-04-25T04:36:18.5744769Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-04-25T04:36:18.5747757Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-04-25T04:36:18.5750877Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-04-25T04:36:18.5753907Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-04-25T04:36:18.5757005Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-04-25T04:36:18.5759952Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-04-25T04:36:18.5763037Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-04-25T04:36:18.5766173Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-04-25T04:36:18.5769142Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-04-25T04:36:18.5772291Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-04-25T04:36:18.5775245Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-04-25T04:36:18.5778370Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-04-25T04:36:18.5781269Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-04-25T04:36:18.5784337Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-04-25T04:36:18.5787284Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-04-25T04:36:18.5790475Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5793596Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-04-25T04:36:18.5796844Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5799919Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-04-25T04:36:18.5803141Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-04-25T04:36:18.5806206Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-04-25T04:36:18.5809411Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-04-25T04:36:18.5812708Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5815652Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5818707Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-04-25T04:36:18.5822006Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-04-25T04:36:18.5825303Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-04-25T04:36:18.5828515Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5831461Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-04-25T04:36:18.5834590Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-04-25T04:36:18.5837553Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-04-25T04:36:18.5840755Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-04-25T04:36:18.5843688Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-04-25T04:36:18.5846745Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-04-25T04:36:18.5849815Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-04-25T04:36:18.5853016Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5855837Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-04-25T04:36:18.5858922Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-04-25T04:36:18.5862016Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-04-25T04:36:18.5865267Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5868191Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-04-25T04:36:18.5871294Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-04-25T04:36:18.5874429Z adding 'torch/include/ATen/ops/abs.h' 2025-04-25T04:36:18.5877654Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5880600Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-04-25T04:36:18.5883628Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-04-25T04:36:18.5886640Z adding 'torch/include/ATen/ops/abs_native.h' 2025-04-25T04:36:18.5889807Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-04-25T04:36:18.5892878Z adding 'torch/include/ATen/ops/absolute.h' 2025-04-25T04:36:18.5896097Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5899051Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-04-25T04:36:18.5902253Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-04-25T04:36:18.5905342Z adding 'torch/include/ATen/ops/acos.h' 2025-04-25T04:36:18.5909149Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5911504Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-04-25T04:36:18.5914636Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-04-25T04:36:18.5917624Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-04-25T04:36:18.5920683Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-04-25T04:36:18.5923647Z adding 'torch/include/ATen/ops/acos_native.h' 2025-04-25T04:36:18.5926823Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-04-25T04:36:18.5929910Z adding 'torch/include/ATen/ops/acosh.h' 2025-04-25T04:36:18.5933424Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.5936326Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-04-25T04:36:18.5939377Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-04-25T04:36:18.5942335Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-04-25T04:36:18.5945415Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-04-25T04:36:18.5948369Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-04-25T04:36:18.5951536Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-04-25T04:36:18.5954791Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-04-25T04:36:18.5958018Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.5961087Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5963935Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-04-25T04:36:18.5967093Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-04-25T04:36:18.5970408Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-04-25T04:36:18.5973747Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.5976746Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-04-25T04:36:18.5979796Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-04-25T04:36:18.5982761Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-04-25T04:36:18.5985893Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-04-25T04:36:18.5989185Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-04-25T04:36:18.5992473Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-04-25T04:36:18.5995671Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.5998733Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.6002139Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-04-25T04:36:18.6005093Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-04-25T04:36:18.6008430Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6011509Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-04-25T04:36:18.6014825Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-04-25T04:36:18.6017977Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-04-25T04:36:18.6021187Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-04-25T04:36:18.6024388Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-04-25T04:36:18.6027839Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6030737Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-04-25T04:36:18.6034018Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-04-25T04:36:18.6037164Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-04-25T04:36:18.6040481Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-04-25T04:36:18.6043876Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6047592Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.6050346Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.6053837Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-04-25T04:36:18.6057550Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-04-25T04:36:18.6061059Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-04-25T04:36:18.6064777Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-04-25T04:36:18.6068586Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6072117Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-04-25T04:36:18.6075780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-04-25T04:36:18.6079265Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-04-25T04:36:18.6082460Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-04-25T04:36:18.6085649Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-04-25T04:36:18.6088850Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-04-25T04:36:18.6092158Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-04-25T04:36:18.6095399Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-04-25T04:36:18.6098996Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6101983Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.6105236Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.6108250Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-04-25T04:36:18.6111421Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-04-25T04:36:18.6114742Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-04-25T04:36:18.6117975Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-04-25T04:36:18.6121300Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6124917Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-04-25T04:36:18.6128084Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-04-25T04:36:18.6131287Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-04-25T04:36:18.6134486Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-04-25T04:36:18.6137881Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-04-25T04:36:18.6141127Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-04-25T04:36:18.6144327Z adding 'torch/include/ATen/ops/add.h' 2025-04-25T04:36:18.6147702Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6150809Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6153810Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-04-25T04:36:18.6156864Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-04-25T04:36:18.6159927Z adding 'torch/include/ATen/ops/add_meta.h' 2025-04-25T04:36:18.6163056Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-04-25T04:36:18.6166298Z adding 'torch/include/ATen/ops/add_native.h' 2025-04-25T04:36:18.6169803Z adding 'torch/include/ATen/ops/add_ops.h' 2025-04-25T04:36:18.6173065Z adding 'torch/include/ATen/ops/addbmm.h' 2025-04-25T04:36:18.6176233Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-04-25T04:36:18.6179348Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-04-25T04:36:18.6182417Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-04-25T04:36:18.6185385Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-04-25T04:36:18.6189118Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-04-25T04:36:18.6191781Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-04-25T04:36:18.6195213Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6198130Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-04-25T04:36:18.6201209Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-04-25T04:36:18.6204195Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-04-25T04:36:18.6207451Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-04-25T04:36:18.6210420Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-04-25T04:36:18.6213634Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-04-25T04:36:18.6217251Z adding 'torch/include/ATen/ops/addcmul.h' 2025-04-25T04:36:18.6220664Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6223656Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-04-25T04:36:18.6226725Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-04-25T04:36:18.6229689Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-04-25T04:36:18.6232930Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-04-25T04:36:18.6235946Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-04-25T04:36:18.6239190Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-04-25T04:36:18.6242468Z adding 'torch/include/ATen/ops/addmm.h' 2025-04-25T04:36:18.6245822Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6248755Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-04-25T04:36:18.6251913Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-04-25T04:36:18.6254889Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-04-25T04:36:18.6257976Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-04-25T04:36:18.6261161Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-04-25T04:36:18.6264599Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-04-25T04:36:18.6267844Z adding 'torch/include/ATen/ops/addmv.h' 2025-04-25T04:36:18.6271177Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6274229Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-04-25T04:36:18.6277296Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-04-25T04:36:18.6280349Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-04-25T04:36:18.6283468Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-04-25T04:36:18.6286514Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-04-25T04:36:18.6289763Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-04-25T04:36:18.6292954Z adding 'torch/include/ATen/ops/addr.h' 2025-04-25T04:36:18.6296246Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6299237Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-04-25T04:36:18.6302360Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-04-25T04:36:18.6305286Z adding 'torch/include/ATen/ops/addr_native.h' 2025-04-25T04:36:18.6308505Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-04-25T04:36:18.6311541Z adding 'torch/include/ATen/ops/adjoint.h' 2025-04-25T04:36:18.6314855Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6317835Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-04-25T04:36:18.6320923Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-04-25T04:36:18.6324463Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-04-25T04:36:18.6327915Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-04-25T04:36:18.6331269Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6334281Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-04-25T04:36:18.6337646Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-04-25T04:36:18.6341555Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6343999Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-04-25T04:36:18.6347306Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-04-25T04:36:18.6350405Z adding 'torch/include/ATen/ops/alias.h' 2025-04-25T04:36:18.6353736Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6356819Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-04-25T04:36:18.6360126Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6363355Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6366168Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-04-25T04:36:18.6369415Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-04-25T04:36:18.6372417Z adding 'torch/include/ATen/ops/alias_native.h' 2025-04-25T04:36:18.6375621Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-04-25T04:36:18.6378575Z adding 'torch/include/ATen/ops/align_as.h' 2025-04-25T04:36:18.6381902Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6384739Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-04-25T04:36:18.6387995Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-04-25T04:36:18.6391012Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-04-25T04:36:18.6394452Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6397382Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-04-25T04:36:18.6400560Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-04-25T04:36:18.6403614Z adding 'torch/include/ATen/ops/align_to.h' 2025-04-25T04:36:18.6406893Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6409886Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-04-25T04:36:18.6413070Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-04-25T04:36:18.6416476Z adding 'torch/include/ATen/ops/all.h' 2025-04-25T04:36:18.6419795Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6423143Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6426206Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6429387Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-04-25T04:36:18.6432642Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-04-25T04:36:18.6435770Z adding 'torch/include/ATen/ops/all_meta.h' 2025-04-25T04:36:18.6439101Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-04-25T04:36:18.6442155Z adding 'torch/include/ATen/ops/all_native.h' 2025-04-25T04:36:18.6445804Z adding 'torch/include/ATen/ops/all_ops.h' 2025-04-25T04:36:18.6449046Z adding 'torch/include/ATen/ops/allclose.h' 2025-04-25T04:36:18.6452509Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6455369Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-04-25T04:36:18.6458676Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-04-25T04:36:18.6461770Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-04-25T04:36:18.6465151Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6468053Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-04-25T04:36:18.6471335Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-04-25T04:36:18.6474685Z adding 'torch/include/ATen/ops/amax.h' 2025-04-25T04:36:18.6478007Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6481050Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-04-25T04:36:18.6484138Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-04-25T04:36:18.6487270Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-04-25T04:36:18.6490917Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-04-25T04:36:18.6493514Z adding 'torch/include/ATen/ops/amax_native.h' 2025-04-25T04:36:18.6496714Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-04-25T04:36:18.6500037Z adding 'torch/include/ATen/ops/amin.h' 2025-04-25T04:36:18.6503360Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6506424Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-04-25T04:36:18.6509485Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-04-25T04:36:18.6512748Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-04-25T04:36:18.6515960Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-04-25T04:36:18.6518995Z adding 'torch/include/ATen/ops/amin_native.h' 2025-04-25T04:36:18.6522297Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-04-25T04:36:18.6525473Z adding 'torch/include/ATen/ops/aminmax.h' 2025-04-25T04:36:18.6528948Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6531868Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-04-25T04:36:18.6535140Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-04-25T04:36:18.6538345Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-04-25T04:36:18.6541626Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-04-25T04:36:18.6544625Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-04-25T04:36:18.6548037Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-04-25T04:36:18.6551182Z adding 'torch/include/ATen/ops/and.h' 2025-04-25T04:36:18.6554644Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6557546Z adding 'torch/include/ATen/ops/and_native.h' 2025-04-25T04:36:18.6561250Z adding 'torch/include/ATen/ops/and_ops.h' 2025-04-25T04:36:18.6564395Z adding 'torch/include/ATen/ops/angle.h' 2025-04-25T04:36:18.6573004Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-04-25T04:36:18.6573394Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-04-25T04:36:18.6573765Z adding 'torch/include/ATen/ops/angle_native.h' 2025-04-25T04:36:18.6577360Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-04-25T04:36:18.6580584Z adding 'torch/include/ATen/ops/any.h' 2025-04-25T04:36:18.6584202Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6587430Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6590626Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6593797Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-04-25T04:36:18.6597087Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-04-25T04:36:18.6600138Z adding 'torch/include/ATen/ops/any_meta.h' 2025-04-25T04:36:18.6603498Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-04-25T04:36:18.6606686Z adding 'torch/include/ATen/ops/any_native.h' 2025-04-25T04:36:18.6610321Z adding 'torch/include/ATen/ops/any_ops.h' 2025-04-25T04:36:18.6613973Z adding 'torch/include/ATen/ops/arange.h' 2025-04-25T04:36:18.6617407Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6621738Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-04-25T04:36:18.6625151Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-04-25T04:36:18.6628243Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-04-25T04:36:18.6631294Z adding 'torch/include/ATen/ops/arange_native.h' 2025-04-25T04:36:18.6634876Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-04-25T04:36:18.6638085Z adding 'torch/include/ATen/ops/arccos.h' 2025-04-25T04:36:18.6641511Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6644385Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-04-25T04:36:18.6647574Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-04-25T04:36:18.6650651Z adding 'torch/include/ATen/ops/arccosh.h' 2025-04-25T04:36:18.6653924Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6656692Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-04-25T04:36:18.6659859Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-04-25T04:36:18.6662904Z adding 'torch/include/ATen/ops/arcsin.h' 2025-04-25T04:36:18.6666120Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6668910Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-04-25T04:36:18.6672324Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-04-25T04:36:18.6675485Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-04-25T04:36:18.6678655Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6681502Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-04-25T04:36:18.6684609Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-04-25T04:36:18.6687698Z adding 'torch/include/ATen/ops/arctan.h' 2025-04-25T04:36:18.6690782Z adding 'torch/include/ATen/ops/arctan2.h' 2025-04-25T04:36:18.6693984Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6696829Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-04-25T04:36:18.6700031Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-04-25T04:36:18.6703263Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6706105Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-04-25T04:36:18.6709258Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-04-25T04:36:18.6712567Z adding 'torch/include/ATen/ops/arctanh.h' 2025-04-25T04:36:18.6715831Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6718663Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-04-25T04:36:18.6721789Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-04-25T04:36:18.6724871Z adding 'torch/include/ATen/ops/argmax.h' 2025-04-25T04:36:18.6728343Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6731261Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-04-25T04:36:18.6734307Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-04-25T04:36:18.6737282Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-04-25T04:36:18.6740639Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-04-25T04:36:18.6743719Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-04-25T04:36:18.6746899Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-04-25T04:36:18.6750042Z adding 'torch/include/ATen/ops/argmin.h' 2025-04-25T04:36:18.6753486Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6756365Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-04-25T04:36:18.6759451Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-04-25T04:36:18.6762480Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-04-25T04:36:18.6765479Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-04-25T04:36:18.6768438Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-04-25T04:36:18.6771586Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-04-25T04:36:18.6774803Z adding 'torch/include/ATen/ops/argsort.h' 2025-04-25T04:36:18.6778093Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6780971Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-04-25T04:36:18.6784237Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-04-25T04:36:18.6787272Z adding 'torch/include/ATen/ops/argwhere.h' 2025-04-25T04:36:18.6790467Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6793368Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-04-25T04:36:18.6796429Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-04-25T04:36:18.6799792Z adding 'torch/include/ATen/ops/as_strided.h' 2025-04-25T04:36:18.6803276Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6806458Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-04-25T04:36:18.6809861Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6813040Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6815940Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-04-25T04:36:18.6819167Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-04-25T04:36:18.6822320Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-04-25T04:36:18.6825386Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-04-25T04:36:18.6828587Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-04-25T04:36:18.6831607Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-04-25T04:36:18.6835098Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-04-25T04:36:18.6838728Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-04-25T04:36:18.6842233Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.6845597Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6848456Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-04-25T04:36:18.6851816Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-04-25T04:36:18.6855679Z adding 'torch/include/ATen/ops/asin.h' 2025-04-25T04:36:18.6859069Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6862098Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-04-25T04:36:18.6865204Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-04-25T04:36:18.6868328Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-04-25T04:36:18.6871425Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-04-25T04:36:18.6874688Z adding 'torch/include/ATen/ops/asin_native.h' 2025-04-25T04:36:18.6877904Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-04-25T04:36:18.6881112Z adding 'torch/include/ATen/ops/asinh.h' 2025-04-25T04:36:18.6884504Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6887430Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-04-25T04:36:18.6890626Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-04-25T04:36:18.6893626Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-04-25T04:36:18.6896863Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-04-25T04:36:18.6899877Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-04-25T04:36:18.6903261Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-04-25T04:36:18.6906450Z adding 'torch/include/ATen/ops/atan.h' 2025-04-25T04:36:18.6909531Z adding 'torch/include/ATen/ops/atan2.h' 2025-04-25T04:36:18.6913083Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6915936Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-04-25T04:36:18.6919162Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-04-25T04:36:18.6922135Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-04-25T04:36:18.6925365Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-04-25T04:36:18.6928375Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-04-25T04:36:18.6931653Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-04-25T04:36:18.6935082Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6937971Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-04-25T04:36:18.6941453Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-04-25T04:36:18.6944443Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-04-25T04:36:18.6947660Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-04-25T04:36:18.6950730Z adding 'torch/include/ATen/ops/atan_native.h' 2025-04-25T04:36:18.6954146Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-04-25T04:36:18.6957277Z adding 'torch/include/ATen/ops/atanh.h' 2025-04-25T04:36:18.6960575Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.6963616Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-04-25T04:36:18.6966678Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-04-25T04:36:18.6969768Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-04-25T04:36:18.6972981Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-04-25T04:36:18.6976081Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-04-25T04:36:18.6979386Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-04-25T04:36:18.6982494Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-04-25T04:36:18.6985840Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.6988694Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-04-25T04:36:18.6992015Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-04-25T04:36:18.6995130Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-04-25T04:36:18.6998549Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7001564Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-04-25T04:36:18.7004889Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-04-25T04:36:18.7008037Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-04-25T04:36:18.7011325Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7014620Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-04-25T04:36:18.7017591Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-04-25T04:36:18.7020814Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-04-25T04:36:18.7024433Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7027735Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7030671Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-04-25T04:36:18.7034145Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-04-25T04:36:18.7037469Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-04-25T04:36:18.7040882Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-04-25T04:36:18.7044412Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7047495Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.7050985Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.7054102Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-04-25T04:36:18.7057447Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-04-25T04:36:18.7060548Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-04-25T04:36:18.7064518Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-04-25T04:36:18.7068233Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7071462Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-04-25T04:36:18.7074954Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-04-25T04:36:18.7078397Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-04-25T04:36:18.7081865Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-04-25T04:36:18.7085092Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-04-25T04:36:18.7088537Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-04-25T04:36:18.7092026Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-04-25T04:36:18.7095375Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-04-25T04:36:18.7098929Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7101931Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:36:18.7105331Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:36:18.7108322Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-04-25T04:36:18.7111500Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-04-25T04:36:18.7114798Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-04-25T04:36:18.7118289Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-04-25T04:36:18.7121629Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7124628Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-04-25T04:36:18.7127723Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-04-25T04:36:18.7130736Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-04-25T04:36:18.7134097Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-04-25T04:36:18.7137238Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-04-25T04:36:18.7140533Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-04-25T04:36:18.7144204Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-04-25T04:36:18.7147613Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7150578Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-04-25T04:36:18.7153868Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-04-25T04:36:18.7156878Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-04-25T04:36:18.7159994Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-04-25T04:36:18.7163225Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-04-25T04:36:18.7166744Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-04-25T04:36:18.7170146Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-04-25T04:36:18.7173542Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7176470Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-04-25T04:36:18.7179796Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-04-25T04:36:18.7182960Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-04-25T04:36:18.7186088Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-04-25T04:36:18.7189240Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-04-25T04:36:18.7192410Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:18.7195579Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-04-25T04:36:18.7198964Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7202016Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-04-25T04:36:18.7205005Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-04-25T04:36:18.7208324Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-04-25T04:36:18.7211527Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-04-25T04:36:18.7214817Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-04-25T04:36:18.7218041Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-04-25T04:36:18.7221396Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7224535Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-04-25T04:36:18.7227559Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-04-25T04:36:18.7230843Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-04-25T04:36:18.7234204Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7237202Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-04-25T04:36:18.7240386Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-04-25T04:36:18.7243388Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-04-25T04:36:18.7246648Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-04-25T04:36:18.7249943Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-04-25T04:36:18.7253197Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7256213Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-04-25T04:36:18.7259170Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-04-25T04:36:18.7262412Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-04-25T04:36:18.7265730Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-04-25T04:36:18.7269062Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7272135Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-04-25T04:36:18.7275214Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-04-25T04:36:18.7278487Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-04-25T04:36:18.7281445Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-04-25T04:36:18.7284568Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-04-25T04:36:18.7287683Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-04-25T04:36:18.7290918Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7293880Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-04-25T04:36:18.7296860Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-04-25T04:36:18.7299987Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-04-25T04:36:18.7303136Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-04-25T04:36:18.7306411Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7309391Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-04-25T04:36:18.7312536Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-04-25T04:36:18.7315528Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-04-25T04:36:18.7318752Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-04-25T04:36:18.7322009Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-04-25T04:36:18.7325355Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7328525Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7338083Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-04-25T04:36:18.7341087Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-04-25T04:36:18.7344204Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-04-25T04:36:18.7347266Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-04-25T04:36:18.7351249Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-04-25T04:36:18.7354531Z adding 'torch/include/ATen/ops/bilinear.h' 2025-04-25T04:36:18.7357795Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7360664Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-04-25T04:36:18.7363795Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-04-25T04:36:18.7367001Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-04-25T04:36:18.7370384Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-04-25T04:36:18.7373627Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-04-25T04:36:18.7376920Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-04-25T04:36:18.7379984Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-04-25T04:36:18.7383382Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-04-25T04:36:18.7386591Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-04-25T04:36:18.7390279Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-04-25T04:36:18.7393441Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-04-25T04:36:18.7396815Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-04-25T04:36:18.7400232Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-04-25T04:36:18.7403593Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7406692Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-04-25T04:36:18.7409962Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-04-25T04:36:18.7413161Z adding 'torch/include/ATen/ops/bincount.h' 2025-04-25T04:36:18.7416465Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7419614Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-04-25T04:36:18.7422644Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-04-25T04:36:18.7425774Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-04-25T04:36:18.7428988Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-04-25T04:36:18.7432289Z adding 'torch/include/ATen/ops/binomial.h' 2025-04-25T04:36:18.7435704Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7438714Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-04-25T04:36:18.7441903Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-04-25T04:36:18.7444899Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-04-25T04:36:18.7448232Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-04-25T04:36:18.7451519Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-04-25T04:36:18.7455035Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7458334Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7461377Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-04-25T04:36:18.7464482Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-04-25T04:36:18.7467598Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-04-25T04:36:18.7470870Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-04-25T04:36:18.7474011Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-04-25T04:36:18.7477623Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-04-25T04:36:18.7481027Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-04-25T04:36:18.7484587Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7487841Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7490897Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-04-25T04:36:18.7494075Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-04-25T04:36:18.7497127Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-04-25T04:36:18.7500353Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-04-25T04:36:18.7503424Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-04-25T04:36:18.7507101Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-04-25T04:36:18.7510316Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-04-25T04:36:18.7513867Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7516806Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-04-25T04:36:18.7520036Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-04-25T04:36:18.7522996Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-04-25T04:36:18.7526227Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-04-25T04:36:18.7529248Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-04-25T04:36:18.7532630Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-04-25T04:36:18.7535937Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-04-25T04:36:18.7539331Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7542598Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7545528Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-04-25T04:36:18.7548777Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-04-25T04:36:18.7551728Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-04-25T04:36:18.7555396Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-04-25T04:36:18.7558422Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-04-25T04:36:18.7562513Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-04-25T04:36:18.7566417Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-04-25T04:36:18.7570179Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7573612Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7576539Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-04-25T04:36:18.7580115Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-04-25T04:36:18.7583465Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-04-25T04:36:18.7587124Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-04-25T04:36:18.7590587Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-04-25T04:36:18.7594415Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-04-25T04:36:18.7597868Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-04-25T04:36:18.7601291Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7605295Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7608280Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-04-25T04:36:18.7611535Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-04-25T04:36:18.7614548Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-04-25T04:36:18.7617873Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-04-25T04:36:18.7620892Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-04-25T04:36:18.7624370Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-04-25T04:36:18.7627967Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-04-25T04:36:18.7631416Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7634497Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-04-25T04:36:18.7637851Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-04-25T04:36:18.7641016Z adding 'torch/include/ATen/ops/block_diag.h' 2025-04-25T04:36:18.7644523Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7647328Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-04-25T04:36:18.7650450Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-04-25T04:36:18.7653561Z adding 'torch/include/ATen/ops/bmm.h' 2025-04-25T04:36:18.7656865Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7659780Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-04-25T04:36:18.7662853Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-04-25T04:36:18.7665822Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-04-25T04:36:18.7668889Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-04-25T04:36:18.7671968Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-04-25T04:36:18.7675450Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-04-25T04:36:18.7678591Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-04-25T04:36:18.7681870Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7684640Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-04-25T04:36:18.7687732Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-04-25T04:36:18.7690811Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-04-25T04:36:18.7694050Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7696863Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-04-25T04:36:18.7699902Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-04-25T04:36:18.7703052Z adding 'torch/include/ATen/ops/bucketize.h' 2025-04-25T04:36:18.7706349Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7709322Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-04-25T04:36:18.7712486Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-04-25T04:36:18.7715639Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-04-25T04:36:18.7718951Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-04-25T04:36:18.7722027Z adding 'torch/include/ATen/ops/can_cast.h' 2025-04-25T04:36:18.7725232Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7727992Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-04-25T04:36:18.7731028Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-04-25T04:36:18.7734137Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-04-25T04:36:18.7737362Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7740165Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-04-25T04:36:18.7743210Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-04-25T04:36:18.7746287Z adding 'torch/include/ATen/ops/cat.h' 2025-04-25T04:36:18.7749568Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7752681Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7755631Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-04-25T04:36:18.7758719Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-04-25T04:36:18.7762676Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-04-25T04:36:18.7765879Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-04-25T04:36:18.7768994Z adding 'torch/include/ATen/ops/cat_native.h' 2025-04-25T04:36:18.7772304Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-04-25T04:36:18.7775469Z adding 'torch/include/ATen/ops/cauchy.h' 2025-04-25T04:36:18.7778736Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7782014Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-04-25T04:36:18.7785100Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-04-25T04:36:18.7788155Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-04-25T04:36:18.7791188Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-04-25T04:36:18.7794461Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-04-25T04:36:18.7797466Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-04-25T04:36:18.7800680Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7803561Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-04-25T04:36:18.7806800Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7809933Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7812708Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-04-25T04:36:18.7815849Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-04-25T04:36:18.7818838Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-04-25T04:36:18.7821887Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-04-25T04:36:18.7824909Z adding 'torch/include/ATen/ops/cdist.h' 2025-04-25T04:36:18.7828169Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7830950Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-04-25T04:36:18.7834216Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-04-25T04:36:18.7837287Z adding 'torch/include/ATen/ops/ceil.h' 2025-04-25T04:36:18.7840537Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7843408Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-04-25T04:36:18.7846428Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-04-25T04:36:18.7849367Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-04-25T04:36:18.7852412Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-04-25T04:36:18.7855413Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-04-25T04:36:18.7858623Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-04-25T04:36:18.7861756Z adding 'torch/include/ATen/ops/celu.h' 2025-04-25T04:36:18.7864976Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7867822Z adding 'torch/include/ATen/ops/celu_native.h' 2025-04-25T04:36:18.7871616Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-04-25T04:36:18.7879184Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-04-25T04:36:18.7880687Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7883662Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-04-25T04:36:18.7887187Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-04-25T04:36:18.7889950Z adding 'torch/include/ATen/ops/chalf.h' 2025-04-25T04:36:18.7893209Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7896058Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-04-25T04:36:18.7899187Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-04-25T04:36:18.7902491Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-04-25T04:36:18.7905856Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7908873Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-04-25T04:36:18.7912074Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-04-25T04:36:18.7915114Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-04-25T04:36:18.7918290Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-04-25T04:36:18.7921400Z adding 'torch/include/ATen/ops/cholesky.h' 2025-04-25T04:36:18.7924511Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-04-25T04:36:18.7927607Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-04-25T04:36:18.7930673Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-04-25T04:36:18.7933822Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-04-25T04:36:18.7936950Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-04-25T04:36:18.7939980Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-04-25T04:36:18.7943569Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-04-25T04:36:18.7946156Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-04-25T04:36:18.7949284Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-04-25T04:36:18.7952493Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-04-25T04:36:18.7955769Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.7958793Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-04-25T04:36:18.7962215Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-04-25T04:36:18.7965371Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-04-25T04:36:18.7968719Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7971746Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-04-25T04:36:18.7974966Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-04-25T04:36:18.7978021Z adding 'torch/include/ATen/ops/chunk.h' 2025-04-25T04:36:18.7981287Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.7984104Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-04-25T04:36:18.7987252Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-04-25T04:36:18.7990560Z adding 'torch/include/ATen/ops/clamp.h' 2025-04-25T04:36:18.7994192Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.7997247Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-04-25T04:36:18.8000447Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-04-25T04:36:18.8003680Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-04-25T04:36:18.8007191Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8010160Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-04-25T04:36:18.8013292Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-04-25T04:36:18.8016349Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-04-25T04:36:18.8019484Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-04-25T04:36:18.8022439Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-04-25T04:36:18.8025867Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-04-25T04:36:18.8028997Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-04-25T04:36:18.8032261Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-04-25T04:36:18.8035513Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-04-25T04:36:18.8038940Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8041888Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-04-25T04:36:18.8045127Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-04-25T04:36:18.8048123Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-04-25T04:36:18.8051266Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-04-25T04:36:18.8054294Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-04-25T04:36:18.8057730Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-04-25T04:36:18.8060926Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-04-25T04:36:18.8064445Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-04-25T04:36:18.8067877Z adding 'torch/include/ATen/ops/clip.h' 2025-04-25T04:36:18.8071349Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8074721Z adding 'torch/include/ATen/ops/clip_native.h' 2025-04-25T04:36:18.8078267Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-04-25T04:36:18.8081655Z adding 'torch/include/ATen/ops/clone.h' 2025-04-25T04:36:18.8085056Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8088260Z adding 'torch/include/ATen/ops/clone_native.h' 2025-04-25T04:36:18.8092400Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-04-25T04:36:18.8095394Z adding 'torch/include/ATen/ops/coalesce.h' 2025-04-25T04:36:18.8098811Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8101682Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-04-25T04:36:18.8105004Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-04-25T04:36:18.8109021Z adding 'torch/include/ATen/ops/col2im.h' 2025-04-25T04:36:18.8113126Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-04-25T04:36:18.8117057Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-04-25T04:36:18.8120735Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-04-25T04:36:18.8124585Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-04-25T04:36:18.8128216Z adding 'torch/include/ATen/ops/col_indices.h' 2025-04-25T04:36:18.8131532Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8134683Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-04-25T04:36:18.8137965Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8141443Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8144267Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-04-25T04:36:18.8147659Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-04-25T04:36:18.8150853Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-04-25T04:36:18.8154119Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-04-25T04:36:18.8157216Z adding 'torch/include/ATen/ops/column_stack.h' 2025-04-25T04:36:18.8160445Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8163535Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-04-25T04:36:18.8166733Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-04-25T04:36:18.8170021Z adding 'torch/include/ATen/ops/combinations.h' 2025-04-25T04:36:18.8173280Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8176124Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-04-25T04:36:18.8179449Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-04-25T04:36:18.8182545Z adding 'torch/include/ATen/ops/complex.h' 2025-04-25T04:36:18.8185815Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8188792Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-04-25T04:36:18.8191818Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-04-25T04:36:18.8195475Z adding 'torch/include/ATen/ops/complex_native.h' 2025-04-25T04:36:18.8198803Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-04-25T04:36:18.8202002Z adding 'torch/include/ATen/ops/concat.h' 2025-04-25T04:36:18.8205300Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8208357Z adding 'torch/include/ATen/ops/concat_native.h' 2025-04-25T04:36:18.8211690Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-04-25T04:36:18.8214922Z adding 'torch/include/ATen/ops/concatenate.h' 2025-04-25T04:36:18.8218271Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8221361Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-04-25T04:36:18.8224664Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-04-25T04:36:18.8227736Z adding 'torch/include/ATen/ops/conj.h' 2025-04-25T04:36:18.8230970Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8233899Z adding 'torch/include/ATen/ops/conj_native.h' 2025-04-25T04:36:18.8236995Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-04-25T04:36:18.8240098Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-04-25T04:36:18.8243296Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8246347Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8249360Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-04-25T04:36:18.8252328Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-04-25T04:36:18.8255275Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-04-25T04:36:18.8258448Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-04-25T04:36:18.8261776Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-04-25T04:36:18.8265335Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8268287Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-04-25T04:36:18.8271697Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-04-25T04:36:18.8274793Z adding 'torch/include/ATen/ops/contiguous.h' 2025-04-25T04:36:18.8278200Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8281206Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-04-25T04:36:18.8284346Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-04-25T04:36:18.8287864Z adding 'torch/include/ATen/ops/conv1d.h' 2025-04-25T04:36:18.8291389Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8294424Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-04-25T04:36:18.8297811Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-04-25T04:36:18.8301305Z adding 'torch/include/ATen/ops/conv2d.h' 2025-04-25T04:36:18.8304894Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8307908Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-04-25T04:36:18.8311323Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-04-25T04:36:18.8315000Z adding 'torch/include/ATen/ops/conv3d.h' 2025-04-25T04:36:18.8318498Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8321599Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-04-25T04:36:18.8324915Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-04-25T04:36:18.8328726Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-04-25T04:36:18.8332407Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8335478Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-04-25T04:36:18.8338678Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-04-25T04:36:18.8342772Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-04-25T04:36:18.8346033Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-04-25T04:36:18.8349257Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-04-25T04:36:18.8352599Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8355635Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-04-25T04:36:18.8358820Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-04-25T04:36:18.8362224Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8365168Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-04-25T04:36:18.8368571Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-04-25T04:36:18.8372025Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-04-25T04:36:18.8375639Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8378775Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-04-25T04:36:18.8382064Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-04-25T04:36:18.8385442Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-04-25T04:36:18.8389013Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8392069Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-04-25T04:36:18.8395489Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-04-25T04:36:18.8398926Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-04-25T04:36:18.8402315Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8405417Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-04-25T04:36:18.8408595Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-04-25T04:36:18.8412360Z adding 'torch/include/ATen/ops/convolution.h' 2025-04-25T04:36:18.8416599Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-04-25T04:36:18.8420414Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8423720Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-04-25T04:36:18.8426960Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-04-25T04:36:18.8430458Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-04-25T04:36:18.8434664Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-04-25T04:36:18.8438526Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8441684Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-04-25T04:36:18.8445519Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-04-25T04:36:18.8448956Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8452114Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-04-25T04:36:18.8455553Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-04-25T04:36:18.8459292Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-04-25T04:36:18.8463078Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8466180Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-04-25T04:36:18.8469557Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-04-25T04:36:18.8472911Z adding 'torch/include/ATen/ops/copy.h' 2025-04-25T04:36:18.8476304Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8479664Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8482621Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-04-25T04:36:18.8485830Z adding 'torch/include/ATen/ops/copy_native.h' 2025-04-25T04:36:18.8489224Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-04-25T04:36:18.8492464Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-04-25T04:36:18.8495932Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8499046Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-04-25T04:36:18.8502242Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-04-25T04:36:18.8505617Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-04-25T04:36:18.8508826Z adding 'torch/include/ATen/ops/copysign.h' 2025-04-25T04:36:18.8512303Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8515516Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8518665Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-04-25T04:36:18.8521845Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-04-25T04:36:18.8524964Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-04-25T04:36:18.8528240Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-04-25T04:36:18.8531272Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-04-25T04:36:18.8534830Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-04-25T04:36:18.8537985Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-04-25T04:36:18.8541361Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8544301Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-04-25T04:36:18.8547483Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-04-25T04:36:18.8550697Z adding 'torch/include/ATen/ops/cos.h' 2025-04-25T04:36:18.8554202Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8557221Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-04-25T04:36:18.8560296Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-04-25T04:36:18.8563470Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-04-25T04:36:18.8566658Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-04-25T04:36:18.8570140Z adding 'torch/include/ATen/ops/cos_native.h' 2025-04-25T04:36:18.8573381Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-04-25T04:36:18.8576999Z adding 'torch/include/ATen/ops/cosh.h' 2025-04-25T04:36:18.8580392Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8583529Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-04-25T04:36:18.8587181Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-04-25T04:36:18.8590153Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-04-25T04:36:18.8593404Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-04-25T04:36:18.8596486Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-04-25T04:36:18.8599617Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-04-25T04:36:18.8602758Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-04-25T04:36:18.8606285Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8615383Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-04-25T04:36:18.8618602Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-04-25T04:36:18.8621881Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-04-25T04:36:18.8625137Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8627984Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-04-25T04:36:18.8631080Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-04-25T04:36:18.8634340Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-04-25T04:36:18.8637670Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8640663Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-04-25T04:36:18.8643673Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-04-25T04:36:18.8646649Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-04-25T04:36:18.8649947Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-04-25T04:36:18.8653219Z adding 'torch/include/ATen/ops/cov.h' 2025-04-25T04:36:18.8656449Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8659345Z adding 'torch/include/ATen/ops/cov_native.h' 2025-04-25T04:36:18.8662450Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-04-25T04:36:18.8665518Z adding 'torch/include/ATen/ops/cross.h' 2025-04-25T04:36:18.8668778Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8671884Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-04-25T04:36:18.8675284Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8678178Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-04-25T04:36:18.8681335Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-04-25T04:36:18.8684319Z adding 'torch/include/ATen/ops/cross_native.h' 2025-04-25T04:36:18.8687508Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-04-25T04:36:18.8690464Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-04-25T04:36:18.8693642Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8696542Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-04-25T04:36:18.8699791Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8702903Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8705757Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-04-25T04:36:18.8709231Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-04-25T04:36:18.8712330Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-04-25T04:36:18.8715668Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-04-25T04:36:18.8718795Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-04-25T04:36:18.8722212Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8725214Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-04-25T04:36:18.8728517Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-04-25T04:36:18.8731893Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-04-25T04:36:18.8735106Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-04-25T04:36:18.8738608Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8741730Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-04-25T04:36:18.8744832Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-04-25T04:36:18.8748115Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-04-25T04:36:18.8751383Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8754612Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-04-25T04:36:18.8757636Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-04-25T04:36:18.8760971Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-04-25T04:36:18.8764581Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-04-25T04:36:18.8767759Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-04-25T04:36:18.8771228Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8774269Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:18.8777466Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-04-25T04:36:18.8780973Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-04-25T04:36:18.8784357Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8787504Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-04-25T04:36:18.8790885Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-04-25T04:36:18.8794508Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-04-25T04:36:18.8798237Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-04-25T04:36:18.8802101Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-04-25T04:36:18.8805845Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8809050Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-04-25T04:36:18.8812139Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-04-25T04:36:18.8815558Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-04-25T04:36:18.8818854Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-04-25T04:36:18.8822109Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-04-25T04:36:18.8825460Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-04-25T04:36:18.8829127Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-04-25T04:36:18.8832819Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8835873Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-04-25T04:36:18.8839129Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-04-25T04:36:18.8842437Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-04-25T04:36:18.8846300Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-04-25T04:36:18.8850086Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8853194Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-04-25T04:36:18.8856377Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-04-25T04:36:18.8859750Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-04-25T04:36:18.8862869Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-04-25T04:36:18.8866238Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-04-25T04:36:18.8869574Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8872854Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-04-25T04:36:18.8875843Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-04-25T04:36:18.8879238Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-04-25T04:36:18.8882559Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8885575Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-04-25T04:36:18.8888637Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-04-25T04:36:18.8891842Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-04-25T04:36:18.8895034Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-04-25T04:36:18.8898276Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8901238Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-04-25T04:36:18.8904299Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-04-25T04:36:18.8907621Z adding 'torch/include/ATen/ops/cummax.h' 2025-04-25T04:36:18.8910900Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8914264Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8917308Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-04-25T04:36:18.8920654Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-04-25T04:36:18.8923926Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-04-25T04:36:18.8927203Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8930192Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-04-25T04:36:18.8933268Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-04-25T04:36:18.8936599Z adding 'torch/include/ATen/ops/cummin.h' 2025-04-25T04:36:18.8940121Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.8943277Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8946275Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-04-25T04:36:18.8949610Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-04-25T04:36:18.8953143Z adding 'torch/include/ATen/ops/cumprod.h' 2025-04-25T04:36:18.8956263Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-04-25T04:36:18.8959664Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8962644Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-04-25T04:36:18.8966116Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-04-25T04:36:18.8969570Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.8972640Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.8975808Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-04-25T04:36:18.8978921Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-04-25T04:36:18.8982089Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-04-25T04:36:18.8985701Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-04-25T04:36:18.8988569Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-04-25T04:36:18.8992057Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-04-25T04:36:18.8995563Z adding 'torch/include/ATen/ops/cumsum.h' 2025-04-25T04:36:18.8999341Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9002548Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9005566Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-04-25T04:36:18.9008791Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-04-25T04:36:18.9011830Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-04-25T04:36:18.9014973Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-04-25T04:36:18.9018046Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-04-25T04:36:18.9021593Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-04-25T04:36:18.9024780Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-04-25T04:36:18.9028082Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9030868Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-04-25T04:36:18.9034190Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-04-25T04:36:18.9037124Z adding 'torch/include/ATen/ops/data.h' 2025-04-25T04:36:18.9040313Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9043228Z adding 'torch/include/ATen/ops/data_native.h' 2025-04-25T04:36:18.9046346Z adding 'torch/include/ATen/ops/data_ops.h' 2025-04-25T04:36:18.9049406Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-04-25T04:36:18.9052631Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9055492Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-04-25T04:36:18.9058671Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-04-25T04:36:18.9061625Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-04-25T04:36:18.9064925Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9067841Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-04-25T04:36:18.9070934Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-04-25T04:36:18.9074237Z adding 'torch/include/ATen/ops/dequantize.h' 2025-04-25T04:36:18.9077524Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9080432Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-04-25T04:36:18.9083412Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-04-25T04:36:18.9086348Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-04-25T04:36:18.9089587Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-04-25T04:36:18.9092661Z adding 'torch/include/ATen/ops/det.h' 2025-04-25T04:36:18.9096574Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9099487Z adding 'torch/include/ATen/ops/det_native.h' 2025-04-25T04:36:18.9102579Z adding 'torch/include/ATen/ops/det_ops.h' 2025-04-25T04:36:18.9105590Z adding 'torch/include/ATen/ops/detach.h' 2025-04-25T04:36:18.9108750Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9111681Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-04-25T04:36:18.9114975Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9118088Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9121018Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-04-25T04:36:18.9124181Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-04-25T04:36:18.9127134Z adding 'torch/include/ATen/ops/detach_native.h' 2025-04-25T04:36:18.9130227Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-04-25T04:36:18.9133274Z adding 'torch/include/ATen/ops/diag.h' 2025-04-25T04:36:18.9136595Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9139497Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-04-25T04:36:18.9142723Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9145844Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9148693Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-04-25T04:36:18.9151922Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-04-25T04:36:18.9155017Z adding 'torch/include/ATen/ops/diag_native.h' 2025-04-25T04:36:18.9158169Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-04-25T04:36:18.9161220Z adding 'torch/include/ATen/ops/diagflat.h' 2025-04-25T04:36:18.9164397Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9167212Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-04-25T04:36:18.9170293Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-04-25T04:36:18.9173365Z adding 'torch/include/ATen/ops/diagonal.h' 2025-04-25T04:36:18.9176790Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-04-25T04:36:18.9180179Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9183051Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-04-25T04:36:18.9186240Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-04-25T04:36:18.9189452Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9192613Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9195971Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-04-25T04:36:18.9199231Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9202361Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9205160Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-04-25T04:36:18.9208335Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-04-25T04:36:18.9211309Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-04-25T04:36:18.9214492Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-04-25T04:36:18.9217689Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-04-25T04:36:18.9221198Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9224299Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9227225Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-04-25T04:36:18.9230373Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-04-25T04:36:18.9233767Z adding 'torch/include/ATen/ops/diff.h' 2025-04-25T04:36:18.9237035Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9240055Z adding 'torch/include/ATen/ops/diff_native.h' 2025-04-25T04:36:18.9243370Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-04-25T04:36:18.9246491Z adding 'torch/include/ATen/ops/digamma.h' 2025-04-25T04:36:18.9249899Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9252811Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-04-25T04:36:18.9255977Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-04-25T04:36:18.9258968Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-04-25T04:36:18.9262226Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-04-25T04:36:18.9265234Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-04-25T04:36:18.9268577Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-04-25T04:36:18.9271796Z adding 'torch/include/ATen/ops/dist.h' 2025-04-25T04:36:18.9275171Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9278192Z adding 'torch/include/ATen/ops/dist_native.h' 2025-04-25T04:36:18.9281445Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-04-25T04:36:18.9284870Z adding 'torch/include/ATen/ops/div.h' 2025-04-25T04:36:18.9288316Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9291639Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9294752Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-04-25T04:36:18.9297918Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-04-25T04:36:18.9301123Z adding 'torch/include/ATen/ops/div_meta.h' 2025-04-25T04:36:18.9304268Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-04-25T04:36:18.9307603Z adding 'torch/include/ATen/ops/div_native.h' 2025-04-25T04:36:18.9311480Z adding 'torch/include/ATen/ops/div_ops.h' 2025-04-25T04:36:18.9315049Z adding 'torch/include/ATen/ops/divide.h' 2025-04-25T04:36:18.9318633Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9321623Z adding 'torch/include/ATen/ops/divide_native.h' 2025-04-25T04:36:18.9325400Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-04-25T04:36:18.9328734Z adding 'torch/include/ATen/ops/dot.h' 2025-04-25T04:36:18.9331956Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9335074Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-04-25T04:36:18.9338113Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-04-25T04:36:18.9341290Z adding 'torch/include/ATen/ops/dot_native.h' 2025-04-25T04:36:18.9344553Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-04-25T04:36:18.9347666Z adding 'torch/include/ATen/ops/dropout.h' 2025-04-25T04:36:18.9351028Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9354019Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-04-25T04:36:18.9357357Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-04-25T04:36:18.9360430Z adding 'torch/include/ATen/ops/dsplit.h' 2025-04-25T04:36:18.9363782Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9367096Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-04-25T04:36:18.9370346Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-04-25T04:36:18.9373566Z adding 'torch/include/ATen/ops/dstack.h' 2025-04-25T04:36:18.9376812Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9379843Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-04-25T04:36:18.9382948Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-04-25T04:36:18.9386197Z adding 'torch/include/ATen/ops/einsum.h' 2025-04-25T04:36:18.9389814Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9392510Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-04-25T04:36:18.9395833Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-04-25T04:36:18.9399086Z adding 'torch/include/ATen/ops/elu.h' 2025-04-25T04:36:18.9402792Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-04-25T04:36:18.9406463Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9409306Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-04-25T04:36:18.9412516Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-04-25T04:36:18.9415512Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-04-25T04:36:18.9418815Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-04-25T04:36:18.9421836Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-04-25T04:36:18.9425206Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-04-25T04:36:18.9428633Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9431608Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-04-25T04:36:18.9434938Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-04-25T04:36:18.9437962Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-04-25T04:36:18.9441259Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-04-25T04:36:18.9444252Z adding 'torch/include/ATen/ops/elu_native.h' 2025-04-25T04:36:18.9447688Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-04-25T04:36:18.9451249Z adding 'torch/include/ATen/ops/embedding.h' 2025-04-25T04:36:18.9454704Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-04-25T04:36:18.9458091Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9460991Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-04-25T04:36:18.9464272Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-04-25T04:36:18.9467712Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-04-25T04:36:18.9470971Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9474164Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-04-25T04:36:18.9477457Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-04-25T04:36:18.9481200Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9484335Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-04-25T04:36:18.9487933Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9491089Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-04-25T04:36:18.9494214Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-04-25T04:36:18.9497384Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-04-25T04:36:18.9500616Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-04-25T04:36:18.9503823Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-04-25T04:36:18.9507171Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-04-25T04:36:18.9510393Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-04-25T04:36:18.9513924Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9516938Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-04-25T04:36:18.9520103Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-04-25T04:36:18.9523120Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-04-25T04:36:18.9526303Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-04-25T04:36:18.9529652Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-04-25T04:36:18.9532794Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-04-25T04:36:18.9536172Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9539062Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-04-25T04:36:18.9542164Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-04-25T04:36:18.9545950Z adding 'torch/include/ATen/ops/empty.h' 2025-04-25T04:36:18.9549500Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9552710Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9555759Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-04-25T04:36:18.9558905Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-04-25T04:36:18.9562312Z adding 'torch/include/ATen/ops/empty_like.h' 2025-04-25T04:36:18.9565717Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9568709Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-04-25T04:36:18.9572011Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-04-25T04:36:18.9575202Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-04-25T04:36:18.9578387Z adding 'torch/include/ATen/ops/empty_native.h' 2025-04-25T04:36:18.9581878Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-04-25T04:36:18.9585518Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-04-25T04:36:18.9589069Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9592077Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-04-25T04:36:18.9595463Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-04-25T04:36:18.9598778Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-04-25T04:36:18.9602106Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9605007Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-04-25T04:36:18.9608498Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-04-25T04:36:18.9612066Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-04-25T04:36:18.9615439Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9618482Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-04-25T04:36:18.9621611Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-04-25T04:36:18.9624709Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-04-25T04:36:18.9627863Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-04-25T04:36:18.9631066Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-04-25T04:36:18.9634299Z adding 'torch/include/ATen/ops/eq.h' 2025-04-25T04:36:18.9637588Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9640505Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-04-25T04:36:18.9643590Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-04-25T04:36:18.9646580Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-04-25T04:36:18.9649855Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-04-25T04:36:18.9652906Z adding 'torch/include/ATen/ops/eq_native.h' 2025-04-25T04:36:18.9656268Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-04-25T04:36:18.9659376Z adding 'torch/include/ATen/ops/equal.h' 2025-04-25T04:36:18.9662431Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-04-25T04:36:18.9665440Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-04-25T04:36:18.9668402Z adding 'torch/include/ATen/ops/equal_native.h' 2025-04-25T04:36:18.9671453Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-04-25T04:36:18.9674605Z adding 'torch/include/ATen/ops/erf.h' 2025-04-25T04:36:18.9677884Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9680732Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-04-25T04:36:18.9683744Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-04-25T04:36:18.9686684Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-04-25T04:36:18.9689736Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-04-25T04:36:18.9692702Z adding 'torch/include/ATen/ops/erf_native.h' 2025-04-25T04:36:18.9695897Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-04-25T04:36:18.9698980Z adding 'torch/include/ATen/ops/erfc.h' 2025-04-25T04:36:18.9702227Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9705097Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-04-25T04:36:18.9708073Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-04-25T04:36:18.9711007Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-04-25T04:36:18.9714180Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-04-25T04:36:18.9717132Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-04-25T04:36:18.9720267Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-04-25T04:36:18.9723358Z adding 'torch/include/ATen/ops/erfinv.h' 2025-04-25T04:36:18.9726749Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9729589Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-04-25T04:36:18.9732630Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-04-25T04:36:18.9735563Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-04-25T04:36:18.9738601Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-04-25T04:36:18.9741622Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-04-25T04:36:18.9745277Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-04-25T04:36:18.9748414Z adding 'torch/include/ATen/ops/exp.h' 2025-04-25T04:36:18.9751648Z adding 'torch/include/ATen/ops/exp2.h' 2025-04-25T04:36:18.9755190Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9758107Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-04-25T04:36:18.9761282Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-04-25T04:36:18.9764275Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-04-25T04:36:18.9767478Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-04-25T04:36:18.9770463Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-04-25T04:36:18.9773832Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-04-25T04:36:18.9777146Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9780213Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-04-25T04:36:18.9783334Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-04-25T04:36:18.9786392Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-04-25T04:36:18.9789579Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-04-25T04:36:18.9792648Z adding 'torch/include/ATen/ops/exp_native.h' 2025-04-25T04:36:18.9795952Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-04-25T04:36:18.9799093Z adding 'torch/include/ATen/ops/expand.h' 2025-04-25T04:36:18.9802218Z adding 'torch/include/ATen/ops/expand_as.h' 2025-04-25T04:36:18.9805686Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9808650Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-04-25T04:36:18.9811797Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-04-25T04:36:18.9815057Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9818388Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-04-25T04:36:18.9821742Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9825096Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9828672Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-04-25T04:36:18.9831979Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-04-25T04:36:18.9835202Z adding 'torch/include/ATen/ops/expand_native.h' 2025-04-25T04:36:18.9838321Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-04-25T04:36:18.9841547Z adding 'torch/include/ATen/ops/expm1.h' 2025-04-25T04:36:18.9844874Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:18.9847867Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-04-25T04:36:18.9851059Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-04-25T04:36:18.9854053Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-04-25T04:36:18.9857281Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-04-25T04:36:18.9860306Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-04-25T04:36:18.9863649Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-04-25T04:36:18.9866822Z adding 'torch/include/ATen/ops/exponential.h' 2025-04-25T04:36:18.9870300Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9873478Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-04-25T04:36:18.9876545Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-04-25T04:36:18.9879719Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-04-25T04:36:18.9882729Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-04-25T04:36:18.9886129Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-04-25T04:36:18.9890034Z adding 'torch/include/ATen/ops/eye.h' 2025-04-25T04:36:18.9893560Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9896811Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-04-25T04:36:18.9899912Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-04-25T04:36:18.9903308Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-04-25T04:36:18.9906382Z adding 'torch/include/ATen/ops/eye_native.h' 2025-04-25T04:36:18.9909918Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-04-25T04:36:18.9913383Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-04-25T04:36:18.9916690Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-04-25T04:36:18.9919979Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-04-25T04:36:18.9923405Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9926472Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-04-25T04:36:18.9929726Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-04-25T04:36:18.9933107Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9936219Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-04-25T04:36:18.9939293Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-04-25T04:36:18.9942428Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-04-25T04:36:18.9945767Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-04-25T04:36:18.9949160Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9952200Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-04-25T04:36:18.9955416Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-04-25T04:36:18.9958836Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-04-25T04:36:18.9962744Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-04-25T04:36:18.9966445Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-04-25T04:36:18.9969943Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9972862Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-04-25T04:36:18.9976230Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-04-25T04:36:18.9979623Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:18.9982718Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-04-25T04:36:18.9985968Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-04-25T04:36:18.9988995Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-04-25T04:36:18.9992559Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-04-25T04:36:18.9995893Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:18.9998879Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-04-25T04:36:19.0002233Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-04-25T04:36:19.0005318Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-04-25T04:36:19.0008569Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0011745Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-04-25T04:36:19.0015031Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0017949Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-04-25T04:36:19.0021057Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-04-25T04:36:19.0024011Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-04-25T04:36:19.0032233Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-04-25T04:36:19.0035361Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-04-25T04:36:19.0038616Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0041687Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-04-25T04:36:19.0044914Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0047769Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-04-25T04:36:19.0051240Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-04-25T04:36:19.0054166Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-04-25T04:36:19.0057308Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-04-25T04:36:19.0060346Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-04-25T04:36:19.0063535Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0066414Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-04-25T04:36:19.0069497Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-04-25T04:36:19.0072581Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-04-25T04:36:19.0075819Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0078694Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-04-25T04:36:19.0081735Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-04-25T04:36:19.0084796Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-04-25T04:36:19.0088024Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0090884Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-04-25T04:36:19.0093989Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-04-25T04:36:19.0096990Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-04-25T04:36:19.0100249Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0103097Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-04-25T04:36:19.0106492Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-04-25T04:36:19.0109532Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-04-25T04:36:19.0113049Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0115909Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-04-25T04:36:19.0119206Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-04-25T04:36:19.0123038Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-04-25T04:36:19.0126573Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-04-25T04:36:19.0130234Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0133775Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-04-25T04:36:19.0137578Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-04-25T04:36:19.0141458Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0144906Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-04-25T04:36:19.0149059Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-04-25T04:36:19.0153032Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-04-25T04:36:19.0157119Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0159878Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-04-25T04:36:19.0163259Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-04-25T04:36:19.0166716Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-04-25T04:36:19.0170389Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0173318Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-04-25T04:36:19.0176779Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-04-25T04:36:19.0179943Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-04-25T04:36:19.0183223Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0186094Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-04-25T04:36:19.0189126Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-04-25T04:36:19.0192734Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-04-25T04:36:19.0196337Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-04-25T04:36:19.0199755Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0202685Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-04-25T04:36:19.0205888Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-04-25T04:36:19.0209406Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0212328Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-04-25T04:36:19.0215523Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-04-25T04:36:19.0218926Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-04-25T04:36:19.0222583Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0225556Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-04-25T04:36:19.0228963Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-04-25T04:36:19.0232426Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-04-25T04:36:19.0235956Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-04-25T04:36:19.0239585Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0242557Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-04-25T04:36:19.0245777Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-04-25T04:36:19.0249084Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0251979Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-04-25T04:36:19.0255161Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-04-25T04:36:19.0258533Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-04-25T04:36:19.0261976Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0264946Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-04-25T04:36:19.0268169Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-04-25T04:36:19.0271217Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-04-25T04:36:19.0274543Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0277401Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-04-25T04:36:19.0280470Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-04-25T04:36:19.0283815Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-04-25T04:36:19.0287287Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-04-25T04:36:19.0290717Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0293786Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-04-25T04:36:19.0303509Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-04-25T04:36:19.0303886Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0305371Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-04-25T04:36:19.0308898Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-04-25T04:36:19.0312991Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-04-25T04:36:19.0315793Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0318665Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-04-25T04:36:19.0321826Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-04-25T04:36:19.0325242Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-04-25T04:36:19.0328826Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-04-25T04:36:19.0332203Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0335117Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-04-25T04:36:19.0338293Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-04-25T04:36:19.0341627Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0344515Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-04-25T04:36:19.0347708Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-04-25T04:36:19.0351312Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-04-25T04:36:19.0355025Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0357913Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-04-25T04:36:19.0361134Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-04-25T04:36:19.0364574Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-04-25T04:36:19.0368080Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-04-25T04:36:19.0371499Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0374426Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-04-25T04:36:19.0377653Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-04-25T04:36:19.0380985Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0383971Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-04-25T04:36:19.0387168Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-04-25T04:36:19.0390359Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-04-25T04:36:19.0393747Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0396966Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-04-25T04:36:19.0400092Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-04-25T04:36:19.0403530Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-04-25T04:36:19.0407003Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0409993Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-04-25T04:36:19.0413142Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-04-25T04:36:19.0416343Z adding 'torch/include/ATen/ops/fill.h' 2025-04-25T04:36:19.0419643Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0422594Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-04-25T04:36:19.0425633Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-04-25T04:36:19.0428768Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-04-25T04:36:19.0432000Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0434897Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-04-25T04:36:19.0437967Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-04-25T04:36:19.0440997Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-04-25T04:36:19.0444045Z adding 'torch/include/ATen/ops/fill_native.h' 2025-04-25T04:36:19.0447424Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-04-25T04:36:19.0450591Z adding 'torch/include/ATen/ops/fix.h' 2025-04-25T04:36:19.0453815Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0456668Z adding 'torch/include/ATen/ops/fix_native.h' 2025-04-25T04:36:19.0459827Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-04-25T04:36:19.0462944Z adding 'torch/include/ATen/ops/flatten.h' 2025-04-25T04:36:19.0466521Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0469125Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-04-25T04:36:19.0472404Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0475276Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-04-25T04:36:19.0478340Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-04-25T04:36:19.0481299Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-04-25T04:36:19.0484611Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-04-25T04:36:19.0487706Z adding 'torch/include/ATen/ops/flip.h' 2025-04-25T04:36:19.0490903Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0493848Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-04-25T04:36:19.0497225Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-04-25T04:36:19.0500065Z adding 'torch/include/ATen/ops/flip_native.h' 2025-04-25T04:36:19.0503781Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-04-25T04:36:19.0507410Z adding 'torch/include/ATen/ops/fliplr.h' 2025-04-25T04:36:19.0510394Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0513800Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-04-25T04:36:19.0517435Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-04-25T04:36:19.0520990Z adding 'torch/include/ATen/ops/flipud.h' 2025-04-25T04:36:19.0525076Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0528427Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-04-25T04:36:19.0532103Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-04-25T04:36:19.0535981Z adding 'torch/include/ATen/ops/float_power.h' 2025-04-25T04:36:19.0540048Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0543244Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-04-25T04:36:19.0546757Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-04-25T04:36:19.0550135Z adding 'torch/include/ATen/ops/floor.h' 2025-04-25T04:36:19.0553695Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0556662Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-04-25T04:36:19.0559874Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-04-25T04:36:19.0563033Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-04-25T04:36:19.0566501Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0569510Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-04-25T04:36:19.0572535Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-04-25T04:36:19.0575580Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-04-25T04:36:19.0578763Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-04-25T04:36:19.0583146Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-04-25T04:36:19.0586114Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-04-25T04:36:19.0589185Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-04-25T04:36:19.0592388Z adding 'torch/include/ATen/ops/floor_native.h' 2025-04-25T04:36:19.0595651Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-04-25T04:36:19.0598740Z adding 'torch/include/ATen/ops/fmax.h' 2025-04-25T04:36:19.0602034Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0604990Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-04-25T04:36:19.0608023Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-04-25T04:36:19.0610970Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-04-25T04:36:19.0614247Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-04-25T04:36:19.0617452Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-04-25T04:36:19.0620420Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-04-25T04:36:19.0623725Z adding 'torch/include/ATen/ops/fmin.h' 2025-04-25T04:36:19.0627484Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0630183Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-04-25T04:36:19.0633663Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-04-25T04:36:19.0636665Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-04-25T04:36:19.0639764Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-04-25T04:36:19.0642737Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-04-25T04:36:19.0646143Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-04-25T04:36:19.0649107Z adding 'torch/include/ATen/ops/fmod.h' 2025-04-25T04:36:19.0652295Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0655416Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0658339Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-04-25T04:36:19.0661431Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-04-25T04:36:19.0664993Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-04-25T04:36:19.0667528Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-04-25T04:36:19.0670547Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-04-25T04:36:19.0674001Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-04-25T04:36:19.0677215Z adding 'torch/include/ATen/ops/frac.h' 2025-04-25T04:36:19.0680661Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0683624Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-04-25T04:36:19.0686740Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-04-25T04:36:19.0689697Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-04-25T04:36:19.0692749Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-04-25T04:36:19.0695747Z adding 'torch/include/ATen/ops/frac_native.h' 2025-04-25T04:36:19.0698941Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-04-25T04:36:19.0702174Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-04-25T04:36:19.0705432Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-04-25T04:36:19.0708843Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0711789Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.0715007Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.0718023Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-04-25T04:36:19.0721113Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-04-25T04:36:19.0724134Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-04-25T04:36:19.0727401Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-04-25T04:36:19.0730863Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0733863Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-04-25T04:36:19.0736952Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-04-25T04:36:19.0739945Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-04-25T04:36:19.0743076Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-04-25T04:36:19.0746129Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-04-25T04:36:19.0749308Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-04-25T04:36:19.0752577Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-04-25T04:36:19.0755868Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-04-25T04:36:19.0759080Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.0762215Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.0765530Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-04-25T04:36:19.0768449Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-04-25T04:36:19.0771748Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0774663Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-04-25T04:36:19.0777798Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-04-25T04:36:19.0781748Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-04-25T04:36:19.0785136Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-04-25T04:36:19.0788196Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-04-25T04:36:19.0791459Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-04-25T04:36:19.0794690Z adding 'torch/include/ATen/ops/frexp.h' 2025-04-25T04:36:19.0799596Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0805328Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-04-25T04:36:19.0808339Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-04-25T04:36:19.0811289Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-04-25T04:36:19.0814535Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-04-25T04:36:19.0817578Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-04-25T04:36:19.0820865Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0823711Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-04-25T04:36:19.0826841Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-04-25T04:36:19.0830473Z adding 'torch/include/ATen/ops/from_blob.h' 2025-04-25T04:36:19.0833918Z adding 'torch/include/ATen/ops/from_file.h' 2025-04-25T04:36:19.0837477Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0840507Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-04-25T04:36:19.0843520Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-04-25T04:36:19.0846786Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-04-25T04:36:19.0850447Z adding 'torch/include/ATen/ops/full.h' 2025-04-25T04:36:19.0854004Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0857255Z adding 'torch/include/ATen/ops/full_like.h' 2025-04-25T04:36:19.0860649Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.0863619Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-04-25T04:36:19.0867207Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-04-25T04:36:19.0870019Z adding 'torch/include/ATen/ops/full_native.h' 2025-04-25T04:36:19.0873518Z adding 'torch/include/ATen/ops/full_ops.h' 2025-04-25T04:36:19.0876850Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-04-25T04:36:19.0880136Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0883073Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-04-25T04:36:19.0886400Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-04-25T04:36:19.0889561Z adding 'torch/include/ATen/ops/gather.h' 2025-04-25T04:36:19.0892678Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-04-25T04:36:19.0896144Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0898741Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-04-25T04:36:19.0901813Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-04-25T04:36:19.0905030Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0908085Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.0911402Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-04-25T04:36:19.0915088Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-04-25T04:36:19.0917755Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-04-25T04:36:19.0921071Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-04-25T04:36:19.0923789Z adding 'torch/include/ATen/ops/gather_native.h' 2025-04-25T04:36:19.0927044Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-04-25T04:36:19.0930151Z adding 'torch/include/ATen/ops/gcd.h' 2025-04-25T04:36:19.0933455Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0936382Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-04-25T04:36:19.0939433Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-04-25T04:36:19.0942363Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-04-25T04:36:19.0945383Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-04-25T04:36:19.0948384Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-04-25T04:36:19.0951517Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-04-25T04:36:19.0954810Z adding 'torch/include/ATen/ops/ge.h' 2025-04-25T04:36:19.0958175Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0961072Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-04-25T04:36:19.0964160Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-04-25T04:36:19.0967184Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-04-25T04:36:19.0970279Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-04-25T04:36:19.0973324Z adding 'torch/include/ATen/ops/ge_native.h' 2025-04-25T04:36:19.0976777Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-04-25T04:36:19.0979861Z adding 'torch/include/ATen/ops/gelu.h' 2025-04-25T04:36:19.0982985Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-04-25T04:36:19.0986339Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.0989431Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-04-25T04:36:19.0992715Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-04-25T04:36:19.0995739Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-04-25T04:36:19.0998950Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-04-25T04:36:19.1001989Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-04-25T04:36:19.1014154Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-04-25T04:36:19.1014495Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1014686Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-04-25T04:36:19.1014839Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-04-25T04:36:19.1018052Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-04-25T04:36:19.1021118Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-04-25T04:36:19.1024237Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-04-25T04:36:19.1027585Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-04-25T04:36:19.1030847Z adding 'torch/include/ATen/ops/geometric.h' 2025-04-25T04:36:19.1034379Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1037659Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-04-25T04:36:19.1040750Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-04-25T04:36:19.1044041Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-04-25T04:36:19.1046967Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-04-25T04:36:19.1050363Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-04-25T04:36:19.1053366Z adding 'torch/include/ATen/ops/geqrf.h' 2025-04-25T04:36:19.1056633Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-04-25T04:36:19.1059897Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-04-25T04:36:19.1062908Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-04-25T04:36:19.1067211Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-04-25T04:36:19.1071455Z adding 'torch/include/ATen/ops/ger.h' 2025-04-25T04:36:19.1075946Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1080444Z adding 'torch/include/ATen/ops/ger_native.h' 2025-04-25T04:36:19.1085174Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-04-25T04:36:19.1090222Z adding 'torch/include/ATen/ops/glu.h' 2025-04-25T04:36:19.1095140Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-04-25T04:36:19.1099475Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1103941Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1108425Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-04-25T04:36:19.1113379Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1117338Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-04-25T04:36:19.1121626Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-04-25T04:36:19.1126142Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-04-25T04:36:19.1131208Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-04-25T04:36:19.1135027Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-04-25T04:36:19.1139489Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-04-25T04:36:19.1144006Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1148304Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-04-25T04:36:19.1152370Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-04-25T04:36:19.1156614Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-04-25T04:36:19.1161096Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1165430Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-04-25T04:36:19.1169702Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-04-25T04:36:19.1173725Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-04-25T04:36:19.1178165Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-04-25T04:36:19.1182431Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-04-25T04:36:19.1186753Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-04-25T04:36:19.1190714Z adding 'torch/include/ATen/ops/glu_native.h' 2025-04-25T04:36:19.1195142Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-04-25T04:36:19.1199710Z adding 'torch/include/ATen/ops/gradient.h' 2025-04-25T04:36:19.1204279Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1208889Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-04-25T04:36:19.1213658Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-04-25T04:36:19.1218381Z adding 'torch/include/ATen/ops/greater.h' 2025-04-25T04:36:19.1222820Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1227218Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-04-25T04:36:19.1231024Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1234166Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-04-25T04:36:19.1237608Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-04-25T04:36:19.1240761Z adding 'torch/include/ATen/ops/greater_native.h' 2025-04-25T04:36:19.1244143Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-04-25T04:36:19.1247416Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-04-25T04:36:19.1250675Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-04-25T04:36:19.1253979Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-04-25T04:36:19.1257371Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1260401Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1263485Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1266477Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-04-25T04:36:19.1269867Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-04-25T04:36:19.1273093Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1276076Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-04-25T04:36:19.1279151Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-04-25T04:36:19.1282124Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-04-25T04:36:19.1285289Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-04-25T04:36:19.1288413Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-04-25T04:36:19.1291638Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-04-25T04:36:19.1294970Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1297967Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1301066Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1304162Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-04-25T04:36:19.1307341Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-04-25T04:36:19.1310601Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1313657Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-04-25T04:36:19.1316714Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-04-25T04:36:19.1319704Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-04-25T04:36:19.1322900Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-04-25T04:36:19.1326201Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1329006Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-04-25T04:36:19.1332111Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-04-25T04:36:19.1335182Z adding 'torch/include/ATen/ops/group_norm.h' 2025-04-25T04:36:19.1338382Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1341272Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-04-25T04:36:19.1344953Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-04-25T04:36:19.1348151Z adding 'torch/include/ATen/ops/gru.h' 2025-04-25T04:36:19.1351225Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-04-25T04:36:19.1354556Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1357435Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-04-25T04:36:19.1361271Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-04-25T04:36:19.1364602Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1367534Z adding 'torch/include/ATen/ops/gru_native.h' 2025-04-25T04:36:19.1370810Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-04-25T04:36:19.1374007Z adding 'torch/include/ATen/ops/gt.h' 2025-04-25T04:36:19.1377280Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1380203Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-04-25T04:36:19.1383288Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-04-25T04:36:19.1386247Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-04-25T04:36:19.1389464Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-04-25T04:36:19.1392783Z adding 'torch/include/ATen/ops/gt_native.h' 2025-04-25T04:36:19.1396209Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-04-25T04:36:19.1399884Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-04-25T04:36:19.1403463Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1406496Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-04-25T04:36:19.1410071Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-04-25T04:36:19.1413542Z adding 'torch/include/ATen/ops/hann_window.h' 2025-04-25T04:36:19.1417009Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1419852Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-04-25T04:36:19.1423225Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-04-25T04:36:19.1426377Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-04-25T04:36:19.1429491Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-04-25T04:36:19.1432928Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1435853Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1438943Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1441897Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-04-25T04:36:19.1444968Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-04-25T04:36:19.1447923Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-04-25T04:36:19.1451144Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-04-25T04:36:19.1454374Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1457234Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-04-25T04:36:19.1460282Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-04-25T04:36:19.1463223Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-04-25T04:36:19.1466276Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-04-25T04:36:19.1469197Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-04-25T04:36:19.1472394Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-04-25T04:36:19.1475509Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-04-25T04:36:19.1478644Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-04-25T04:36:19.1481963Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1484850Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1487919Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1490858Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-04-25T04:36:19.1494124Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-04-25T04:36:19.1497104Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-04-25T04:36:19.1500237Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-04-25T04:36:19.1503517Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1506414Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-04-25T04:36:19.1509437Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-04-25T04:36:19.1512434Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-04-25T04:36:19.1515517Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-04-25T04:36:19.1518500Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-04-25T04:36:19.1521628Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-04-25T04:36:19.1524693Z adding 'torch/include/ATen/ops/hardswish.h' 2025-04-25T04:36:19.1527778Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-04-25T04:36:19.1531012Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1533965Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1536986Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1539944Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-04-25T04:36:19.1543055Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-04-25T04:36:19.1546081Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-04-25T04:36:19.1549069Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-04-25T04:36:19.1552190Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-04-25T04:36:19.1555116Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-04-25T04:36:19.1558246Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-04-25T04:36:19.1561425Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-04-25T04:36:19.1564581Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-04-25T04:36:19.1567710Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1570785Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1573688Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-04-25T04:36:19.1576866Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-04-25T04:36:19.1579964Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-04-25T04:36:19.1583037Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-04-25T04:36:19.1586096Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-04-25T04:36:19.1589092Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-04-25T04:36:19.1592503Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-04-25T04:36:19.1595662Z adding 'torch/include/ATen/ops/heaviside.h' 2025-04-25T04:36:19.1598946Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1601801Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-04-25T04:36:19.1604833Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-04-25T04:36:19.1607757Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-04-25T04:36:19.1610846Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-04-25T04:36:19.1613778Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-04-25T04:36:19.1616968Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-04-25T04:36:19.1620285Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-04-25T04:36:19.1623579Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1626437Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-04-25T04:36:19.1629532Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-04-25T04:36:19.1632743Z adding 'torch/include/ATen/ops/histc.h' 2025-04-25T04:36:19.1635904Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-04-25T04:36:19.1638994Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-04-25T04:36:19.1642019Z adding 'torch/include/ATen/ops/histc_native.h' 2025-04-25T04:36:19.1645182Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-04-25T04:36:19.1648458Z adding 'torch/include/ATen/ops/histogram.h' 2025-04-25T04:36:19.1651722Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-04-25T04:36:19.1654762Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-04-25T04:36:19.1658210Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-04-25T04:36:19.1661478Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-04-25T04:36:19.1664823Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1667726Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-04-25T04:36:19.1671049Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-04-25T04:36:19.1674357Z adding 'torch/include/ATen/ops/hsplit.h' 2025-04-25T04:36:19.1677596Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1680458Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-04-25T04:36:19.1683616Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-04-25T04:36:19.1686677Z adding 'torch/include/ATen/ops/hspmm.h' 2025-04-25T04:36:19.1689676Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-04-25T04:36:19.1692785Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-04-25T04:36:19.1696032Z adding 'torch/include/ATen/ops/hstack.h' 2025-04-25T04:36:19.1699251Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1702093Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-04-25T04:36:19.1705288Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-04-25T04:36:19.1708335Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-04-25T04:36:19.1711491Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-04-25T04:36:19.1714840Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1717825Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.1720866Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.1723790Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-04-25T04:36:19.1726992Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-04-25T04:36:19.1730413Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-04-25T04:36:19.1733576Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-04-25T04:36:19.1736604Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-04-25T04:36:19.1739899Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-04-25T04:36:19.1743024Z adding 'torch/include/ATen/ops/hypot.h' 2025-04-25T04:36:19.1746251Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1749120Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-04-25T04:36:19.1752229Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-04-25T04:36:19.1755224Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-04-25T04:36:19.1758319Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-04-25T04:36:19.1761259Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-04-25T04:36:19.1764407Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-04-25T04:36:19.1767475Z adding 'torch/include/ATen/ops/i0.h' 2025-04-25T04:36:19.1770684Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1773553Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-04-25T04:36:19.1776551Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-04-25T04:36:19.1779501Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-04-25T04:36:19.1782570Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-04-25T04:36:19.1785501Z adding 'torch/include/ATen/ops/i0_native.h' 2025-04-25T04:36:19.1788666Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-04-25T04:36:19.1791700Z adding 'torch/include/ATen/ops/igamma.h' 2025-04-25T04:36:19.1795182Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1798110Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-04-25T04:36:19.1801277Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-04-25T04:36:19.1804272Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-04-25T04:36:19.1807503Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-04-25T04:36:19.1810492Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-04-25T04:36:19.1813837Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-04-25T04:36:19.1817280Z adding 'torch/include/ATen/ops/igammac.h' 2025-04-25T04:36:19.1820592Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1823603Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-04-25T04:36:19.1826667Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-04-25T04:36:19.1829759Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-04-25T04:36:19.1832963Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-04-25T04:36:19.1836122Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-04-25T04:36:19.1839307Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-04-25T04:36:19.1842605Z adding 'torch/include/ATen/ops/im2col.h' 2025-04-25T04:36:19.1845878Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-04-25T04:36:19.1848964Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-04-25T04:36:19.1852095Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-04-25T04:36:19.1855363Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-04-25T04:36:19.1858523Z adding 'torch/include/ATen/ops/imag.h' 2025-04-25T04:36:19.1861810Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1864812Z adding 'torch/include/ATen/ops/imag_native.h' 2025-04-25T04:36:19.1868045Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-04-25T04:36:19.1871139Z adding 'torch/include/ATen/ops/index.h' 2025-04-25T04:36:19.1874601Z adding 'torch/include/ATen/ops/index_add.h' 2025-04-25T04:36:19.1878025Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1881172Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1884401Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-04-25T04:36:19.1887517Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-04-25T04:36:19.1890846Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-04-25T04:36:19.1894472Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-04-25T04:36:19.1898097Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-04-25T04:36:19.1901956Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-04-25T04:36:19.1905831Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1909249Z adding 'torch/include/ATen/ops/index_copy.h' 2025-04-25T04:36:19.1913183Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.1916253Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1919472Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-04-25T04:36:19.1922528Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-04-25T04:36:19.1925824Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-04-25T04:36:19.1928953Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-04-25T04:36:19.1932144Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-04-25T04:36:19.1935555Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-04-25T04:36:19.1938970Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-04-25T04:36:19.1942048Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-04-25T04:36:19.1945277Z adding 'torch/include/ATen/ops/index_fill.h' 2025-04-25T04:36:19.1948820Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1951956Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.1954963Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-04-25T04:36:19.1957977Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-04-25T04:36:19.1961026Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-04-25T04:36:19.1964250Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-04-25T04:36:19.1968000Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-04-25T04:36:19.1971418Z adding 'torch/include/ATen/ops/index_meta.h' 2025-04-25T04:36:19.1974517Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-04-25T04:36:19.1977530Z adding 'torch/include/ATen/ops/index_native.h' 2025-04-25T04:36:19.1980721Z adding 'torch/include/ATen/ops/index_ops.h' 2025-04-25T04:36:19.1983929Z adding 'torch/include/ATen/ops/index_put.h' 2025-04-25T04:36:19.1987207Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.1990132Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-04-25T04:36:19.1993572Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-04-25T04:36:19.1996763Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-04-25T04:36:19.2000112Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2003032Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-04-25T04:36:19.2006145Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-04-25T04:36:19.2009338Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-04-25T04:36:19.2012394Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-04-25T04:36:19.2015394Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-04-25T04:36:19.2018647Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-04-25T04:36:19.2022180Z adding 'torch/include/ATen/ops/index_select.h' 2025-04-25T04:36:19.2025386Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-04-25T04:36:19.2028655Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2031556Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-04-25T04:36:19.2034771Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-04-25T04:36:19.2037975Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2041137Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-04-25T04:36:19.2044263Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-04-25T04:36:19.2047376Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-04-25T04:36:19.2050611Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-04-25T04:36:19.2053601Z adding 'torch/include/ATen/ops/indices.h' 2025-04-25T04:36:19.2056764Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2059652Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-04-25T04:36:19.2062835Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2065954Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2068676Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-04-25T04:36:19.2071749Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-04-25T04:36:19.2074786Z adding 'torch/include/ATen/ops/indices_native.h' 2025-04-25T04:36:19.2077875Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-04-25T04:36:19.2081054Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-04-25T04:36:19.2084966Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2087882Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-04-25T04:36:19.2090969Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-04-25T04:36:19.2093882Z adding 'torch/include/ATen/ops/inner.h' 2025-04-25T04:36:19.2097195Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2100034Z adding 'torch/include/ATen/ops/inner_native.h' 2025-04-25T04:36:19.2103164Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-04-25T04:36:19.2106294Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-04-25T04:36:19.2109547Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2112495Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-04-25T04:36:19.2115627Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-04-25T04:36:19.2118679Z adding 'torch/include/ATen/ops/int_repr.h' 2025-04-25T04:36:19.2121868Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2124699Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-04-25T04:36:19.2127818Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-04-25T04:36:19.2131147Z adding 'torch/include/ATen/ops/inverse.h' 2025-04-25T04:36:19.2134402Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2137227Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-04-25T04:36:19.2140329Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-04-25T04:36:19.2143283Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-04-25T04:36:19.2146437Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2149391Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-04-25T04:36:19.2152388Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-04-25T04:36:19.2155370Z adding 'torch/include/ATen/ops/is_complex.h' 2025-04-25T04:36:19.2158556Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2161370Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-04-25T04:36:19.2164426Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-04-25T04:36:19.2167385Z adding 'torch/include/ATen/ops/is_conj.h' 2025-04-25T04:36:19.2170519Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2173332Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-04-25T04:36:19.2176364Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-04-25T04:36:19.2179366Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-04-25T04:36:19.2182521Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2185421Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-04-25T04:36:19.2188437Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-04-25T04:36:19.2191410Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-04-25T04:36:19.2194723Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2198480Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-04-25T04:36:19.2201549Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-04-25T04:36:19.2204517Z adding 'torch/include/ATen/ops/is_inference.h' 2025-04-25T04:36:19.2208207Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2211575Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-04-25T04:36:19.2215151Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-04-25T04:36:19.2219068Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-04-25T04:36:19.2222833Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2226207Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-04-25T04:36:19.2229926Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-04-25T04:36:19.2233481Z adding 'torch/include/ATen/ops/is_neg.h' 2025-04-25T04:36:19.2236800Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2239739Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-04-25T04:36:19.2242895Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-04-25T04:36:19.2246043Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-04-25T04:36:19.2249253Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2252221Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-04-25T04:36:19.2255284Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-04-25T04:36:19.2258353Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-04-25T04:36:19.2261570Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2264409Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-04-25T04:36:19.2267491Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-04-25T04:36:19.2270672Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-04-25T04:36:19.2274038Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2276942Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-04-25T04:36:19.2280033Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-04-25T04:36:19.2282943Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-04-25T04:36:19.2286179Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-04-25T04:36:19.2289189Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-04-25T04:36:19.2292109Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-04-25T04:36:19.2295130Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-04-25T04:36:19.2298091Z adding 'torch/include/ATen/ops/is_signed.h' 2025-04-25T04:36:19.2301305Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2304062Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-04-25T04:36:19.2307116Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-04-25T04:36:19.2310087Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-04-25T04:36:19.2313326Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2316314Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-04-25T04:36:19.2319340Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-04-25T04:36:19.2322346Z adding 'torch/include/ATen/ops/isclose.h' 2025-04-25T04:36:19.2325529Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2328348Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-04-25T04:36:19.2331475Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-04-25T04:36:19.2334459Z adding 'torch/include/ATen/ops/isfinite.h' 2025-04-25T04:36:19.2337699Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2340484Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-04-25T04:36:19.2343537Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-04-25T04:36:19.2346794Z adding 'torch/include/ATen/ops/isin.h' 2025-04-25T04:36:19.2350183Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2353255Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-04-25T04:36:19.2356451Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-04-25T04:36:19.2359499Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-04-25T04:36:19.2362716Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-04-25T04:36:19.2365738Z adding 'torch/include/ATen/ops/isin_native.h' 2025-04-25T04:36:19.2369161Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-04-25T04:36:19.2372507Z adding 'torch/include/ATen/ops/isinf.h' 2025-04-25T04:36:19.2375792Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2378794Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-04-25T04:36:19.2381935Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-04-25T04:36:19.2384982Z adding 'torch/include/ATen/ops/isnan.h' 2025-04-25T04:36:19.2388174Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2391098Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-04-25T04:36:19.2394207Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-04-25T04:36:19.2397135Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-04-25T04:36:19.2400238Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-04-25T04:36:19.2403280Z adding 'torch/include/ATen/ops/isneginf.h' 2025-04-25T04:36:19.2406587Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2409467Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-04-25T04:36:19.2412476Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-04-25T04:36:19.2415736Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-04-25T04:36:19.2418804Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-04-25T04:36:19.2421773Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-04-25T04:36:19.2424895Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-04-25T04:36:19.2427928Z adding 'torch/include/ATen/ops/isposinf.h' 2025-04-25T04:36:19.2431220Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2434208Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-04-25T04:36:19.2437251Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-04-25T04:36:19.2440204Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-04-25T04:36:19.2443281Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-04-25T04:36:19.2446278Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-04-25T04:36:19.2449460Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-04-25T04:36:19.2452375Z adding 'torch/include/ATen/ops/isreal.h' 2025-04-25T04:36:19.2455553Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2458353Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-04-25T04:36:19.2461424Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-04-25T04:36:19.2464483Z adding 'torch/include/ATen/ops/istft.h' 2025-04-25T04:36:19.2467744Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2470620Z adding 'torch/include/ATen/ops/istft_native.h' 2025-04-25T04:36:19.2474062Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-04-25T04:36:19.2477007Z adding 'torch/include/ATen/ops/item.h' 2025-04-25T04:36:19.2480201Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2483003Z adding 'torch/include/ATen/ops/item_native.h' 2025-04-25T04:36:19.2486068Z adding 'torch/include/ATen/ops/item_ops.h' 2025-04-25T04:36:19.2489549Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-04-25T04:36:19.2493028Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2495963Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-04-25T04:36:19.2499426Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-04-25T04:36:19.2502574Z adding 'torch/include/ATen/ops/kl_div.h' 2025-04-25T04:36:19.2505814Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2508667Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-04-25T04:36:19.2511742Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-04-25T04:36:19.2514865Z adding 'torch/include/ATen/ops/kron.h' 2025-04-25T04:36:19.2518015Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2520806Z adding 'torch/include/ATen/ops/kron_native.h' 2025-04-25T04:36:19.2523909Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-04-25T04:36:19.2527077Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-04-25T04:36:19.2530438Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2533500Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2536470Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-04-25T04:36:19.2539500Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-04-25T04:36:19.2542486Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-04-25T04:36:19.2545813Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-04-25T04:36:19.2548865Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-04-25T04:36:19.2552103Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2555329Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-04-25T04:36:19.2558444Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-04-25T04:36:19.2561627Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-04-25T04:36:19.2564904Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2567801Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-04-25T04:36:19.2570947Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-04-25T04:36:19.2574160Z adding 'torch/include/ATen/ops/lcm.h' 2025-04-25T04:36:19.2577534Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2580450Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-04-25T04:36:19.2583508Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-04-25T04:36:19.2586459Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-04-25T04:36:19.2589479Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-04-25T04:36:19.2592479Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-04-25T04:36:19.2595673Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-04-25T04:36:19.2598799Z adding 'torch/include/ATen/ops/ldexp.h' 2025-04-25T04:36:19.2602082Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2604909Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-04-25T04:36:19.2608116Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-04-25T04:36:19.2611603Z adding 'torch/include/ATen/ops/le.h' 2025-04-25T04:36:19.2614911Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2617855Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-04-25T04:36:19.2620882Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-04-25T04:36:19.2623859Z adding 'torch/include/ATen/ops/le_meta.h' 2025-04-25T04:36:19.2626952Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-04-25T04:36:19.2629974Z adding 'torch/include/ATen/ops/le_native.h' 2025-04-25T04:36:19.2633434Z adding 'torch/include/ATen/ops/le_ops.h' 2025-04-25T04:36:19.2636623Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-04-25T04:36:19.2639782Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-04-25T04:36:19.2643189Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2646052Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-04-25T04:36:19.2649129Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-04-25T04:36:19.2652090Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-04-25T04:36:19.2655182Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-04-25T04:36:19.2658159Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-04-25T04:36:19.2661292Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-04-25T04:36:19.2664563Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2667419Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-04-25T04:36:19.2670461Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-04-25T04:36:19.2673686Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-04-25T04:36:19.2677198Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-04-25T04:36:19.2680248Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-04-25T04:36:19.2683727Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-04-25T04:36:19.2687521Z adding 'torch/include/ATen/ops/lerp.h' 2025-04-25T04:36:19.2691412Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2700430Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-04-25T04:36:19.2700578Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-04-25T04:36:19.2702701Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-04-25T04:36:19.2706158Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-04-25T04:36:19.2709762Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-04-25T04:36:19.2713845Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-04-25T04:36:19.2717639Z adding 'torch/include/ATen/ops/less.h' 2025-04-25T04:36:19.2721499Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2725068Z adding 'torch/include/ATen/ops/less_equal.h' 2025-04-25T04:36:19.2728858Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2732319Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-04-25T04:36:19.2735503Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-04-25T04:36:19.2738708Z adding 'torch/include/ATen/ops/less_native.h' 2025-04-25T04:36:19.2742172Z adding 'torch/include/ATen/ops/less_ops.h' 2025-04-25T04:36:19.2745310Z adding 'torch/include/ATen/ops/lgamma.h' 2025-04-25T04:36:19.2748699Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2751592Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-04-25T04:36:19.2754849Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-04-25T04:36:19.2757885Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-04-25T04:36:19.2761091Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-04-25T04:36:19.2764132Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-04-25T04:36:19.2767321Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-04-25T04:36:19.2770507Z adding 'torch/include/ATen/ops/lift.h' 2025-04-25T04:36:19.2773762Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2776791Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-04-25T04:36:19.2779979Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2783027Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-04-25T04:36:19.2786609Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.2789647Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2792616Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-04-25T04:36:19.2795858Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-04-25T04:36:19.2798847Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-04-25T04:36:19.2801909Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-04-25T04:36:19.2804945Z adding 'torch/include/ATen/ops/lift_native.h' 2025-04-25T04:36:19.2808756Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-04-25T04:36:19.2811949Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-04-25T04:36:19.2815300Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2818620Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-04-25T04:36:19.2822095Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2825012Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-04-25T04:36:19.2828070Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-04-25T04:36:19.2831209Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-04-25T04:36:19.2834460Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-04-25T04:36:19.2837459Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-04-25T04:36:19.2840608Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-04-25T04:36:19.2843635Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-04-25T04:36:19.2846722Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-04-25T04:36:19.2849915Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-04-25T04:36:19.2853198Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2856061Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-04-25T04:36:19.2859305Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-04-25T04:36:19.2862590Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-04-25T04:36:19.2865895Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2868755Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-04-25T04:36:19.2871772Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-04-25T04:36:19.2874864Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-04-25T04:36:19.2877905Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-04-25T04:36:19.2880825Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-04-25T04:36:19.2883986Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-04-25T04:36:19.2887071Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-04-25T04:36:19.2890265Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2893085Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-04-25T04:36:19.2896146Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-04-25T04:36:19.2899197Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-04-25T04:36:19.2902485Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2905262Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-04-25T04:36:19.2908329Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-04-25T04:36:19.2911392Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-04-25T04:36:19.2914615Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-04-25T04:36:19.2917808Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-04-25T04:36:19.2920745Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-04-25T04:36:19.2923847Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-04-25T04:36:19.2927012Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-04-25T04:36:19.2930225Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2933076Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-04-25T04:36:19.2936247Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-04-25T04:36:19.2939403Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-04-25T04:36:19.2942548Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2945474Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-04-25T04:36:19.2948529Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-04-25T04:36:19.2951429Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-04-25T04:36:19.2954644Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-04-25T04:36:19.2957691Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-04-25T04:36:19.2962364Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2965397Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-04-25T04:36:19.2968535Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-04-25T04:36:19.2971699Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-04-25T04:36:19.2974888Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-04-25T04:36:19.2977934Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-04-25T04:36:19.2980936Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-04-25T04:36:19.2984003Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-04-25T04:36:19.2986986Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-04-25T04:36:19.2990156Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.2993194Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-04-25T04:36:19.2996485Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.2999374Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-04-25T04:36:19.3002436Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-04-25T04:36:19.3005423Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-04-25T04:36:19.3008538Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-04-25T04:36:19.3011482Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-04-25T04:36:19.3015013Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-04-25T04:36:19.3018216Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-04-25T04:36:19.3021346Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-04-25T04:36:19.3024642Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-04-25T04:36:19.3027993Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3031094Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-04-25T04:36:19.3034710Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3037677Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-04-25T04:36:19.3040982Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-04-25T04:36:19.3043926Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-04-25T04:36:19.3047183Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-04-25T04:36:19.3050259Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-04-25T04:36:19.3053519Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-04-25T04:36:19.3056652Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-04-25T04:36:19.3059898Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-04-25T04:36:19.3063175Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-04-25T04:36:19.3066628Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3069664Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-04-25T04:36:19.3072938Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-04-25T04:36:19.3075934Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-04-25T04:36:19.3079763Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-04-25T04:36:19.3082189Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-04-25T04:36:19.3085456Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-04-25T04:36:19.3088687Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-04-25T04:36:19.3092790Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3119954Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-04-25T04:36:19.3120299Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-04-25T04:36:19.3120454Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-04-25T04:36:19.3120582Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-04-25T04:36:19.3120689Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-04-25T04:36:19.3121012Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3121175Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-04-25T04:36:19.3121327Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-04-25T04:36:19.3125623Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-04-25T04:36:19.3127856Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3131455Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-04-25T04:36:19.3134385Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3137498Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-04-25T04:36:19.3140588Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-04-25T04:36:19.3143749Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-04-25T04:36:19.3146849Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-04-25T04:36:19.3149806Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-04-25T04:36:19.3154050Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-04-25T04:36:19.3156268Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-04-25T04:36:19.3159440Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-04-25T04:36:19.3162434Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-04-25T04:36:19.3165517Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-04-25T04:36:19.3168466Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-04-25T04:36:19.3171898Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-04-25T04:36:19.3175012Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-04-25T04:36:19.3178335Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3181261Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-04-25T04:36:19.3184318Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-04-25T04:36:19.3187369Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-04-25T04:36:19.3190393Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-04-25T04:36:19.3193434Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-04-25T04:36:19.3196596Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-04-25T04:36:19.3200502Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-04-25T04:36:19.3203060Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3205919Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-04-25T04:36:19.3209052Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-04-25T04:36:19.3212104Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-04-25T04:36:19.3215816Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3218856Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-04-25T04:36:19.3221769Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-04-25T04:36:19.3225281Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-04-25T04:36:19.3227819Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-04-25T04:36:19.3231058Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-04-25T04:36:19.3234591Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3237572Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-04-25T04:36:19.3240907Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-04-25T04:36:19.3244045Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-04-25T04:36:19.3247453Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3250310Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-04-25T04:36:19.3253451Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-04-25T04:36:19.3257027Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-04-25T04:36:19.3260658Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3263646Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-04-25T04:36:19.3267231Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-04-25T04:36:19.3270440Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-04-25T04:36:19.3273817Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3276668Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-04-25T04:36:19.3279790Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-04-25T04:36:19.3283020Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-04-25T04:36:19.3286367Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3289351Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-04-25T04:36:19.3292732Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-04-25T04:36:19.3296159Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-04-25T04:36:19.3299544Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3302689Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3305720Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3308682Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-04-25T04:36:19.3312293Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-04-25T04:36:19.3315520Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-04-25T04:36:19.3318851Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3321782Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-04-25T04:36:19.3324817Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-04-25T04:36:19.3327808Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-04-25T04:36:19.3330830Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-04-25T04:36:19.3333728Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-04-25T04:36:19.3336907Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-04-25T04:36:19.3340346Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-04-25T04:36:19.3343638Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3346487Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-04-25T04:36:19.3349633Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-04-25T04:36:19.3352767Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-04-25T04:36:19.3356031Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3359126Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-04-25T04:36:19.3363225Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3366002Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-04-25T04:36:19.3368897Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-04-25T04:36:19.3371814Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-04-25T04:36:19.3375074Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-04-25T04:36:19.3378242Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-04-25T04:36:19.3381520Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-04-25T04:36:19.3384653Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-04-25T04:36:19.3387788Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-04-25T04:36:19.3391078Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-04-25T04:36:19.3394331Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-04-25T04:36:19.3397779Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3400688Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-04-25T04:36:19.3404049Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-04-25T04:36:19.3407175Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-04-25T04:36:19.3410706Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3413874Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-04-25T04:36:19.3417319Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-04-25T04:36:19.3420577Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-04-25T04:36:19.3423895Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3426918Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-04-25T04:36:19.3430600Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-04-25T04:36:19.3433450Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-04-25T04:36:19.3436870Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3439737Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-04-25T04:36:19.3443057Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-04-25T04:36:19.3446187Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-04-25T04:36:19.3449586Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3453094Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-04-25T04:36:19.3455604Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-04-25T04:36:19.3458778Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-04-25T04:36:19.3462016Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3464995Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-04-25T04:36:19.3468151Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-04-25T04:36:19.3471568Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-04-25T04:36:19.3475765Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3478067Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-04-25T04:36:19.3481320Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-04-25T04:36:19.3484309Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-04-25T04:36:19.3487596Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-04-25T04:36:19.3490611Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-04-25T04:36:19.3494009Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-04-25T04:36:19.3497114Z adding 'torch/include/ATen/ops/linear.h' 2025-04-25T04:36:19.3500483Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-04-25T04:36:19.3503989Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3506774Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-04-25T04:36:19.3510697Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-04-25T04:36:19.3513625Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3516884Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3520535Z adding 'torch/include/ATen/ops/linear_native.h' 2025-04-25T04:36:19.3523073Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-04-25T04:36:19.3526769Z adding 'torch/include/ATen/ops/linspace.h' 2025-04-25T04:36:19.3530368Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3533609Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-04-25T04:36:19.3537539Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-04-25T04:36:19.3540605Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-04-25T04:36:19.3543912Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-04-25T04:36:19.3547662Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-04-25T04:36:19.3551104Z adding 'torch/include/ATen/ops/log.h' 2025-04-25T04:36:19.3554401Z adding 'torch/include/ATen/ops/log10.h' 2025-04-25T04:36:19.3557722Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3560808Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-04-25T04:36:19.3563846Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-04-25T04:36:19.3566956Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-04-25T04:36:19.3570030Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-04-25T04:36:19.3573085Z adding 'torch/include/ATen/ops/log10_native.h' 2025-04-25T04:36:19.3576758Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-04-25T04:36:19.3579482Z adding 'torch/include/ATen/ops/log1p.h' 2025-04-25T04:36:19.3582903Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3585832Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-04-25T04:36:19.3589008Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-04-25T04:36:19.3591986Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-04-25T04:36:19.3600104Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-04-25T04:36:19.3600250Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-04-25T04:36:19.3602370Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-04-25T04:36:19.3605800Z adding 'torch/include/ATen/ops/log2.h' 2025-04-25T04:36:19.3608945Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3612003Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-04-25T04:36:19.3615088Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-04-25T04:36:19.3618172Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-04-25T04:36:19.3621714Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-04-25T04:36:19.3624926Z adding 'torch/include/ATen/ops/log2_native.h' 2025-04-25T04:36:19.3628195Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-04-25T04:36:19.3631373Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3634542Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-04-25T04:36:19.3637611Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-04-25T04:36:19.3640626Z adding 'torch/include/ATen/ops/log_meta.h' 2025-04-25T04:36:19.3643703Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-04-25T04:36:19.3646639Z adding 'torch/include/ATen/ops/log_native.h' 2025-04-25T04:36:19.3649835Z adding 'torch/include/ATen/ops/log_normal.h' 2025-04-25T04:36:19.3653145Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3656081Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-04-25T04:36:19.3659076Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-04-25T04:36:19.3662114Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-04-25T04:36:19.3665623Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-04-25T04:36:19.3668322Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-04-25T04:36:19.3671524Z adding 'torch/include/ATen/ops/log_ops.h' 2025-04-25T04:36:19.3674725Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-04-25T04:36:19.3677836Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-04-25T04:36:19.3681133Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-04-25T04:36:19.3684230Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-04-25T04:36:19.3687181Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-04-25T04:36:19.3690322Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-04-25T04:36:19.3693520Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3696489Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-04-25T04:36:19.3699634Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-04-25T04:36:19.3702751Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-04-25T04:36:19.3705589Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-04-25T04:36:19.3708694Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-04-25T04:36:19.3711623Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-04-25T04:36:19.3714892Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-04-25T04:36:19.3718034Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-04-25T04:36:19.3721252Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3724303Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3727160Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-04-25T04:36:19.3730322Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-04-25T04:36:19.3733399Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-04-25T04:36:19.3736884Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-04-25T04:36:19.3740289Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3743177Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-04-25T04:36:19.3746277Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-04-25T04:36:19.3749484Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-04-25T04:36:19.3752415Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-04-25T04:36:19.3755338Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-04-25T04:36:19.3758455Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-04-25T04:36:19.3761720Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3764607Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-04-25T04:36:19.3767619Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-04-25T04:36:19.3770704Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-04-25T04:36:19.3773577Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-04-25T04:36:19.3776577Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-04-25T04:36:19.3779697Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-04-25T04:36:19.3782792Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-04-25T04:36:19.3786010Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3789067Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3791961Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-04-25T04:36:19.3795309Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-04-25T04:36:19.3798385Z adding 'torch/include/ATen/ops/logdet.h' 2025-04-25T04:36:19.3801992Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3804802Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-04-25T04:36:19.3808387Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-04-25T04:36:19.3810970Z adding 'torch/include/ATen/ops/logical_and.h' 2025-04-25T04:36:19.3814101Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3817066Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-04-25T04:36:19.3820067Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-04-25T04:36:19.3822995Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-04-25T04:36:19.3826204Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-04-25T04:36:19.3829344Z adding 'torch/include/ATen/ops/logical_not.h' 2025-04-25T04:36:19.3832529Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3835467Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-04-25T04:36:19.3838483Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-04-25T04:36:19.3841423Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-04-25T04:36:19.3844572Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-04-25T04:36:19.3847643Z adding 'torch/include/ATen/ops/logical_or.h' 2025-04-25T04:36:19.3850888Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3853828Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-04-25T04:36:19.3856864Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-04-25T04:36:19.3859770Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-04-25T04:36:19.3862961Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-04-25T04:36:19.3866073Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-04-25T04:36:19.3869256Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3872254Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-04-25T04:36:19.3875273Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-04-25T04:36:19.3878267Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-04-25T04:36:19.3881465Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-04-25T04:36:19.3884562Z adding 'torch/include/ATen/ops/logit.h' 2025-04-25T04:36:19.3887721Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-04-25T04:36:19.3891070Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3893927Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-04-25T04:36:19.3896960Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-04-25T04:36:19.3899950Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-04-25T04:36:19.3903008Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-04-25T04:36:19.3906098Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-04-25T04:36:19.3909258Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-04-25T04:36:19.3912470Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-04-25T04:36:19.3915587Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-04-25T04:36:19.3918550Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-04-25T04:36:19.3921478Z adding 'torch/include/ATen/ops/logit_native.h' 2025-04-25T04:36:19.3924677Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-04-25T04:36:19.3928305Z adding 'torch/include/ATen/ops/logspace.h' 2025-04-25T04:36:19.3931947Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3934974Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-04-25T04:36:19.3938067Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-04-25T04:36:19.3941064Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-04-25T04:36:19.3944124Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-04-25T04:36:19.3947876Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-04-25T04:36:19.3951196Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-04-25T04:36:19.3955415Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3957862Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.3960802Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.3963991Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-04-25T04:36:19.3967256Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-04-25T04:36:19.3970427Z adding 'torch/include/ATen/ops/lshift.h' 2025-04-25T04:36:19.3973783Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.3976746Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-04-25T04:36:19.3979784Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-04-25T04:36:19.3982805Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-04-25T04:36:19.3985761Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-04-25T04:36:19.3989126Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-04-25T04:36:19.3992575Z adding 'torch/include/ATen/ops/lstm.h' 2025-04-25T04:36:19.3995589Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-04-25T04:36:19.3998831Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4001683Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-04-25T04:36:19.4004981Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-04-25T04:36:19.4008253Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4011583Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-04-25T04:36:19.4015084Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4018092Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-04-25T04:36:19.4021618Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-04-25T04:36:19.4024750Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-04-25T04:36:19.4028149Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-04-25T04:36:19.4031310Z adding 'torch/include/ATen/ops/lt.h' 2025-04-25T04:36:19.4034908Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4037946Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-04-25T04:36:19.4041003Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-04-25T04:36:19.4044088Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-04-25T04:36:19.4047193Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-04-25T04:36:19.4050381Z adding 'torch/include/ATen/ops/lt_native.h' 2025-04-25T04:36:19.4054049Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-04-25T04:36:19.4057132Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-04-25T04:36:19.4060448Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4063320Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-04-25T04:36:19.4066600Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-04-25T04:36:19.4069893Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-04-25T04:36:19.4073402Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4076377Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-04-25T04:36:19.4079640Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-04-25T04:36:19.4082696Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-04-25T04:36:19.4085835Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-04-25T04:36:19.4088912Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-04-25T04:36:19.4092138Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-04-25T04:36:19.4095509Z adding 'torch/include/ATen/ops/mH.h' 2025-04-25T04:36:19.4099208Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4102560Z adding 'torch/include/ATen/ops/mH_native.h' 2025-04-25T04:36:19.4106179Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-04-25T04:36:19.4109610Z adding 'torch/include/ATen/ops/mT.h' 2025-04-25T04:36:19.4114018Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4116713Z adding 'torch/include/ATen/ops/mT_native.h' 2025-04-25T04:36:19.4120064Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-04-25T04:36:19.4123222Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-04-25T04:36:19.4126610Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4129602Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-04-25T04:36:19.4133140Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-04-25T04:36:19.4136480Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-04-25T04:36:19.4139853Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4143010Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-04-25T04:36:19.4146059Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-04-25T04:36:19.4149068Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-04-25T04:36:19.4152337Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-04-25T04:36:19.4155829Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-04-25T04:36:19.4159028Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-04-25T04:36:19.4162203Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-04-25T04:36:19.4165476Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4168517Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-04-25T04:36:19.4171634Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-04-25T04:36:19.4174818Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4177760Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-04-25T04:36:19.4180778Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-04-25T04:36:19.4183741Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-04-25T04:36:19.4186616Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-04-25T04:36:19.4189758Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-04-25T04:36:19.4192936Z adding 'torch/include/ATen/ops/masked_select.h' 2025-04-25T04:36:19.4195979Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-04-25T04:36:19.4199283Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4202129Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-04-25T04:36:19.4205226Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-04-25T04:36:19.4208247Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-04-25T04:36:19.4211269Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-04-25T04:36:19.4214195Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-04-25T04:36:19.4217352Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-04-25T04:36:19.4220338Z adding 'torch/include/ATen/ops/matmul.h' 2025-04-25T04:36:19.4223491Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-04-25T04:36:19.4226732Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4229639Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-04-25T04:36:19.4232971Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-04-25T04:36:19.4236244Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4239085Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-04-25T04:36:19.4242202Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-04-25T04:36:19.4245141Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-04-25T04:36:19.4248334Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4251806Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-04-25T04:36:19.4256616Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-04-25T04:36:19.4259578Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-04-25T04:36:19.4263109Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-04-25T04:36:19.4272984Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4275904Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-04-25T04:36:19.4279003Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-04-25T04:36:19.4282148Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4284978Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-04-25T04:36:19.4288042Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-04-25T04:36:19.4291064Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-04-25T04:36:19.4294284Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4297123Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-04-25T04:36:19.4300216Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-04-25T04:36:19.4303546Z adding 'torch/include/ATen/ops/max.h' 2025-04-25T04:36:19.4306935Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4309982Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4313087Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-04-25T04:36:19.4316255Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-04-25T04:36:19.4319358Z adding 'torch/include/ATen/ops/max_meta.h' 2025-04-25T04:36:19.4322450Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-04-25T04:36:19.4325558Z adding 'torch/include/ATen/ops/max_native.h' 2025-04-25T04:36:19.4329092Z adding 'torch/include/ATen/ops/max_ops.h' 2025-04-25T04:36:19.4332290Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-04-25T04:36:19.4335518Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4338388Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-04-25T04:36:19.4341520Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-04-25T04:36:19.4344819Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-04-25T04:36:19.4347886Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4350762Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-04-25T04:36:19.4354001Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-04-25T04:36:19.4356979Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-04-25T04:36:19.4360226Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-04-25T04:36:19.4363502Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4366348Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-04-25T04:36:19.4369622Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-04-25T04:36:19.4372825Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4375638Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-04-25T04:36:19.4379136Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-04-25T04:36:19.4382377Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-04-25T04:36:19.4385699Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-04-25T04:36:19.4389103Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4392102Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-04-25T04:36:19.4395263Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-04-25T04:36:19.4398434Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-04-25T04:36:19.4401474Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-04-25T04:36:19.4404416Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-04-25T04:36:19.4407879Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-04-25T04:36:19.4411364Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4414646Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-04-25T04:36:19.4417784Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-04-25T04:36:19.4420698Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-04-25T04:36:19.4423957Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-04-25T04:36:19.4427015Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-04-25T04:36:19.4430469Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-04-25T04:36:19.4434228Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-04-25T04:36:19.4437018Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4440029Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-04-25T04:36:19.4443159Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-04-25T04:36:19.4446593Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-04-25T04:36:19.4449839Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-04-25T04:36:19.4453218Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-04-25T04:36:19.4457038Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-04-25T04:36:19.4459556Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-04-25T04:36:19.4462957Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-04-25T04:36:19.4466178Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-04-25T04:36:19.4469455Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-04-25T04:36:19.4472592Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-04-25T04:36:19.4476053Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-04-25T04:36:19.4479488Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-04-25T04:36:19.4482773Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-04-25T04:36:19.4486016Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-04-25T04:36:19.4489010Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-04-25T04:36:19.4492325Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-04-25T04:36:19.4496238Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-04-25T04:36:19.4499223Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-04-25T04:36:19.4502496Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-04-25T04:36:19.4505710Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-04-25T04:36:19.4509112Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-04-25T04:36:19.4513074Z adding 'torch/include/ATen/ops/maximum.h' 2025-04-25T04:36:19.4515701Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4519281Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-04-25T04:36:19.4522423Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-04-25T04:36:19.4525571Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-04-25T04:36:19.4528672Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-04-25T04:36:19.4531783Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-04-25T04:36:19.4535534Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-04-25T04:36:19.4538312Z adding 'torch/include/ATen/ops/mean.h' 2025-04-25T04:36:19.4541747Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4545039Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4548167Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4551144Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-04-25T04:36:19.4554489Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-04-25T04:36:19.4558048Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-04-25T04:36:19.4560760Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-04-25T04:36:19.4564372Z adding 'torch/include/ATen/ops/mean_native.h' 2025-04-25T04:36:19.4567942Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-04-25T04:36:19.4571469Z adding 'torch/include/ATen/ops/median.h' 2025-04-25T04:36:19.4575294Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4578403Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4581515Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-04-25T04:36:19.4584636Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-04-25T04:36:19.4587849Z adding 'torch/include/ATen/ops/median_native.h' 2025-04-25T04:36:19.4591441Z adding 'torch/include/ATen/ops/median_ops.h' 2025-04-25T04:36:19.4594700Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-04-25T04:36:19.4612176Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4612329Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-04-25T04:36:19.4612446Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-04-25T04:36:19.4612556Z adding 'torch/include/ATen/ops/min.h' 2025-04-25T04:36:19.4612844Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4615934Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4619202Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-04-25T04:36:19.4622287Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-04-25T04:36:19.4625575Z adding 'torch/include/ATen/ops/min_meta.h' 2025-04-25T04:36:19.4629591Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-04-25T04:36:19.4631999Z adding 'torch/include/ATen/ops/min_native.h' 2025-04-25T04:36:19.4635761Z adding 'torch/include/ATen/ops/min_ops.h' 2025-04-25T04:36:19.4639008Z adding 'torch/include/ATen/ops/minimum.h' 2025-04-25T04:36:19.4642308Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4646354Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-04-25T04:36:19.4648469Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-04-25T04:36:19.4651411Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-04-25T04:36:19.4654454Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-04-25T04:36:19.4657383Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-04-25T04:36:19.4660481Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-04-25T04:36:19.4664035Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-04-25T04:36:19.4667355Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-04-25T04:36:19.4670697Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4673851Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:19.4676832Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-04-25T04:36:19.4680139Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-04-25T04:36:19.4683450Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4686505Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-04-25T04:36:19.4689487Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-04-25T04:36:19.4693113Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-04-25T04:36:19.4696620Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-04-25T04:36:19.4700156Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-04-25T04:36:19.4703351Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-04-25T04:36:19.4706335Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-04-25T04:36:19.4709548Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-04-25T04:36:19.4713013Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4716003Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-04-25T04:36:19.4719044Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-04-25T04:36:19.4722259Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-04-25T04:36:19.4725473Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-04-25T04:36:19.4728705Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-04-25T04:36:19.4731759Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-04-25T04:36:19.4734822Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-04-25T04:36:19.4738449Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-04-25T04:36:19.4742047Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4745223Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-04-25T04:36:19.4748915Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-04-25T04:36:19.4751811Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-04-25T04:36:19.4755619Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-04-25T04:36:19.4759195Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4762261Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-04-25T04:36:19.4765317Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-04-25T04:36:19.4768585Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-04-25T04:36:19.4771917Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-04-25T04:36:19.4775442Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-04-25T04:36:19.4778962Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4782098Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-04-25T04:36:19.4785239Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-04-25T04:36:19.4788819Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-04-25T04:36:19.4792369Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4795472Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-04-25T04:36:19.4798572Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-04-25T04:36:19.4802079Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-04-25T04:36:19.4805142Z adding 'torch/include/ATen/ops/mish.h' 2025-04-25T04:36:19.4808233Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-04-25T04:36:19.4820769Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.4821198Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-04-25T04:36:19.4821384Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-04-25T04:36:19.4821526Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-04-25T04:36:19.4823458Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-04-25T04:36:19.4826510Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.4829360Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-04-25T04:36:19.4832505Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-04-25T04:36:19.4835489Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-04-25T04:36:19.4838709Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-04-25T04:36:19.4841544Z adding 'torch/include/ATen/ops/mish_native.h' 2025-04-25T04:36:19.4844685Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-04-25T04:36:19.4847842Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-04-25T04:36:19.4850982Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-04-25T04:36:19.4854265Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4857218Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-04-25T04:36:19.4860387Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-04-25T04:36:19.4863414Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-04-25T04:36:19.4866541Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-04-25T04:36:19.4869974Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-04-25T04:36:19.4873574Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4876544Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-04-25T04:36:19.4880099Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-04-25T04:36:19.4883294Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-04-25T04:36:19.4886605Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-04-25T04:36:19.4889815Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4892821Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-04-25T04:36:19.4896162Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4899041Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-04-25T04:36:19.4902229Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-04-25T04:36:19.4905292Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-04-25T04:36:19.4908522Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-04-25T04:36:19.4911979Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-04-25T04:36:19.4915257Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4918122Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-04-25T04:36:19.4921298Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-04-25T04:36:19.4924496Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4927300Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-04-25T04:36:19.4930462Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-04-25T04:36:19.4933671Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-04-25T04:36:19.4936956Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-04-25T04:36:19.4940223Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4943131Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-04-25T04:36:19.4946370Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-04-25T04:36:19.4949663Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4952714Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-04-25T04:36:19.4955962Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-04-25T04:36:19.4959195Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-04-25T04:36:19.4962449Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-04-25T04:36:19.4965736Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4968667Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-04-25T04:36:19.4972047Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-04-25T04:36:19.4975219Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4978097Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-04-25T04:36:19.4981321Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-04-25T04:36:19.4984958Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-04-25T04:36:19.4988547Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.4991545Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-04-25T04:36:19.4994952Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-04-25T04:36:19.4998567Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-04-25T04:36:19.5002100Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5005044Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-04-25T04:36:19.5008269Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-04-25T04:36:19.5012482Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-04-25T04:36:19.5016214Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-04-25T04:36:19.5019764Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5022899Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5026020Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-04-25T04:36:19.5030024Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-04-25T04:36:19.5033272Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5036307Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-04-25T04:36:19.5039377Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-04-25T04:36:19.5042761Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-04-25T04:36:19.5045984Z adding 'torch/include/ATen/ops/mm.h' 2025-04-25T04:36:19.5049609Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5052254Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-04-25T04:36:19.5055303Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-04-25T04:36:19.5058246Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-04-25T04:36:19.5061300Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-04-25T04:36:19.5064318Z adding 'torch/include/ATen/ops/mm_native.h' 2025-04-25T04:36:19.5067564Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-04-25T04:36:19.5071043Z adding 'torch/include/ATen/ops/mode.h' 2025-04-25T04:36:19.5074213Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5077778Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5080304Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-04-25T04:36:19.5083284Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-04-25T04:36:19.5086261Z adding 'torch/include/ATen/ops/mode_native.h' 2025-04-25T04:36:19.5089537Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-04-25T04:36:19.5092628Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-04-25T04:36:19.5095894Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5098728Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-04-25T04:36:19.5101886Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-04-25T04:36:19.5104926Z adding 'torch/include/ATen/ops/movedim.h' 2025-04-25T04:36:19.5108125Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5110951Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-04-25T04:36:19.5114363Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-04-25T04:36:19.5118135Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-04-25T04:36:19.5121663Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5124623Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-04-25T04:36:19.5127933Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-04-25T04:36:19.5131670Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-04-25T04:36:19.5135270Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5138179Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-04-25T04:36:19.5141510Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-04-25T04:36:19.5144568Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-04-25T04:36:19.5147686Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-04-25T04:36:19.5150845Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5154068Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5157011Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-04-25T04:36:19.5160166Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-04-25T04:36:19.5163473Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5166444Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-04-25T04:36:19.5169508Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-04-25T04:36:19.5172459Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-04-25T04:36:19.5175496Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-04-25T04:36:19.5178415Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-04-25T04:36:19.5181848Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-04-25T04:36:19.5184908Z adding 'torch/include/ATen/ops/msort.h' 2025-04-25T04:36:19.5188121Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5190953Z adding 'torch/include/ATen/ops/msort_native.h' 2025-04-25T04:36:19.5194157Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-04-25T04:36:19.5197283Z adding 'torch/include/ATen/ops/mul.h' 2025-04-25T04:36:19.5200524Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5203637Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5206493Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-04-25T04:36:19.5209484Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-04-25T04:36:19.5212417Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-04-25T04:36:19.5215666Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-04-25T04:36:19.5218857Z adding 'torch/include/ATen/ops/mul_native.h' 2025-04-25T04:36:19.5222238Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-04-25T04:36:19.5225608Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-04-25T04:36:19.5228788Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-04-25T04:36:19.5232048Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5235235Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5238572Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-04-25T04:36:19.5241882Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-04-25T04:36:19.5245058Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-04-25T04:36:19.5248158Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-04-25T04:36:19.5251167Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-04-25T04:36:19.5254396Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-04-25T04:36:19.5257515Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-04-25T04:36:19.5260956Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-04-25T04:36:19.5264128Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5267214Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5270212Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-04-25T04:36:19.5273553Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-04-25T04:36:19.5276798Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5279759Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-04-25T04:36:19.5282975Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-04-25T04:36:19.5286077Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-04-25T04:36:19.5289090Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-04-25T04:36:19.5292303Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-04-25T04:36:19.5295295Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-04-25T04:36:19.5298451Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-04-25T04:36:19.5301769Z adding 'torch/include/ATen/ops/multinomial.h' 2025-04-25T04:36:19.5305076Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-04-25T04:36:19.5308243Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-04-25T04:36:19.5311243Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-04-25T04:36:19.5314651Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-04-25T04:36:19.5318015Z adding 'torch/include/ATen/ops/multiply.h' 2025-04-25T04:36:19.5321076Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5323928Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-04-25T04:36:19.5327241Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-04-25T04:36:19.5330358Z adding 'torch/include/ATen/ops/mv.h' 2025-04-25T04:36:19.5333532Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5336387Z adding 'torch/include/ATen/ops/mv_native.h' 2025-04-25T04:36:19.5339693Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-04-25T04:36:19.5348243Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-04-25T04:36:19.5348642Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5351246Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-04-25T04:36:19.5354580Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-04-25T04:36:19.5357558Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-04-25T04:36:19.5360757Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-04-25T04:36:19.5363934Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-04-25T04:36:19.5367371Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5370259Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-04-25T04:36:19.5373314Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-04-25T04:36:19.5376311Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-04-25T04:36:19.5379604Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-04-25T04:36:19.5382781Z adding 'torch/include/ATen/ops/nanmean.h' 2025-04-25T04:36:19.5386057Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5388962Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-04-25T04:36:19.5392216Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-04-25T04:36:19.5395557Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-04-25T04:36:19.5398906Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5402033Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5405059Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-04-25T04:36:19.5408181Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-04-25T04:36:19.5411123Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-04-25T04:36:19.5414556Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-04-25T04:36:19.5418142Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-04-25T04:36:19.5421515Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5424444Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-04-25T04:36:19.5427798Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-04-25T04:36:19.5430965Z adding 'torch/include/ATen/ops/nansum.h' 2025-04-25T04:36:19.5434209Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-04-25T04:36:19.5437303Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-04-25T04:36:19.5440596Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-04-25T04:36:19.5443523Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-04-25T04:36:19.5446780Z adding 'torch/include/ATen/ops/narrow.h' 2025-04-25T04:36:19.5450174Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5453335Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-04-25T04:36:19.5456751Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5459720Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-04-25T04:36:19.5462748Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-04-25T04:36:19.5465895Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-04-25T04:36:19.5468928Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-04-25T04:36:19.5472309Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-04-25T04:36:19.5475424Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-04-25T04:36:19.5478937Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-04-25T04:36:19.5482340Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5485354Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5488441Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5491534Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-04-25T04:36:19.5494920Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-04-25T04:36:19.5498132Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-04-25T04:36:19.5501291Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-04-25T04:36:19.5504366Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-04-25T04:36:19.5507711Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-04-25T04:36:19.5510883Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-04-25T04:36:19.5514320Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5517206Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-04-25T04:36:19.5520291Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-04-25T04:36:19.5523450Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-04-25T04:36:19.5526534Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-04-25T04:36:19.5529783Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-04-25T04:36:19.5533056Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5536160Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5539234Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5542329Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-04-25T04:36:19.5545574Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-04-25T04:36:19.5549016Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5552043Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-04-25T04:36:19.5555167Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-04-25T04:36:19.5558282Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-04-25T04:36:19.5561500Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-04-25T04:36:19.5565217Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-04-25T04:36:19.5569246Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-04-25T04:36:19.5572844Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5576066Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5579296Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5582475Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-04-25T04:36:19.5585928Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-04-25T04:36:19.5589838Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5593114Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-04-25T04:36:19.5596337Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-04-25T04:36:19.5599428Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-04-25T04:36:19.5603150Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-04-25T04:36:19.5606757Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-04-25T04:36:19.5611223Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-04-25T04:36:19.5615511Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5619100Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5622809Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5626401Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-04-25T04:36:19.5630371Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-04-25T04:36:19.5634289Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5637368Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-04-25T04:36:19.5640637Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-04-25T04:36:19.5643690Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-04-25T04:36:19.5647234Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-04-25T04:36:19.5650652Z adding 'torch/include/ATen/ops/native_norm.h' 2025-04-25T04:36:19.5653996Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5657140Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-04-25T04:36:19.5660433Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-04-25T04:36:19.5663621Z adding 'torch/include/ATen/ops/ne.h' 2025-04-25T04:36:19.5666989Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5670145Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-04-25T04:36:19.5673346Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-04-25T04:36:19.5676366Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-04-25T04:36:19.5679491Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-04-25T04:36:19.5682522Z adding 'torch/include/ATen/ops/ne_native.h' 2025-04-25T04:36:19.5686063Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-04-25T04:36:19.5689249Z adding 'torch/include/ATen/ops/neg.h' 2025-04-25T04:36:19.5692531Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5695491Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-04-25T04:36:19.5698643Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-04-25T04:36:19.5701672Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-04-25T04:36:19.5704625Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-04-25T04:36:19.5707680Z adding 'torch/include/ATen/ops/neg_native.h' 2025-04-25T04:36:19.5710813Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-04-25T04:36:19.5714070Z adding 'torch/include/ATen/ops/negative.h' 2025-04-25T04:36:19.5717295Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5720144Z adding 'torch/include/ATen/ops/negative_native.h' 2025-04-25T04:36:19.5723333Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-04-25T04:36:19.5726454Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-04-25T04:36:19.5729674Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5732491Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-04-25T04:36:19.5735569Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-04-25T04:36:19.5738889Z adding 'torch/include/ATen/ops/new_empty.h' 2025-04-25T04:36:19.5742312Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5745287Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-04-25T04:36:19.5748507Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-04-25T04:36:19.5752723Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-04-25T04:36:19.5756273Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5759509Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5762360Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-04-25T04:36:19.5765723Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-04-25T04:36:19.5769153Z adding 'torch/include/ATen/ops/new_full.h' 2025-04-25T04:36:19.5772638Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5776112Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-04-25T04:36:19.5779367Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-04-25T04:36:19.5782777Z adding 'torch/include/ATen/ops/new_ones.h' 2025-04-25T04:36:19.5786215Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5789122Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-04-25T04:36:19.5792491Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-04-25T04:36:19.5795922Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-04-25T04:36:19.5799310Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.5802200Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-04-25T04:36:19.5805444Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-04-25T04:36:19.5808559Z adding 'torch/include/ATen/ops/nextafter.h' 2025-04-25T04:36:19.5811996Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5814829Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-04-25T04:36:19.5817824Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-04-25T04:36:19.5820770Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-04-25T04:36:19.5823839Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-04-25T04:36:19.5826721Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-04-25T04:36:19.5829875Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-04-25T04:36:19.5833374Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-04-25T04:36:19.5836889Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-04-25T04:36:19.5840481Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-04-25T04:36:19.5843942Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5847156Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5850289Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-04-25T04:36:19.5853534Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-04-25T04:36:19.5856865Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5860195Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-04-25T04:36:19.5863588Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-04-25T04:36:19.5866808Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-04-25T04:36:19.5869882Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-04-25T04:36:19.5873245Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-04-25T04:36:19.5876323Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-04-25T04:36:19.5879509Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-04-25T04:36:19.5882956Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-04-25T04:36:19.5886486Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5889489Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.5892679Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.5895713Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-04-25T04:36:19.5898951Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-04-25T04:36:19.5902001Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-04-25T04:36:19.5905233Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-04-25T04:36:19.5908592Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5911950Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-04-25T04:36:19.5915547Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.5918604Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-04-25T04:36:19.5921922Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-04-25T04:36:19.5924959Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-04-25T04:36:19.5928322Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-04-25T04:36:19.5931412Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-04-25T04:36:19.5934767Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-04-25T04:36:19.5937937Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-04-25T04:36:19.5941119Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-04-25T04:36:19.5944577Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5947469Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-04-25T04:36:19.5950969Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-04-25T04:36:19.5954287Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-04-25T04:36:19.5957658Z adding 'torch/include/ATen/ops/nonzero.h' 2025-04-25T04:36:19.5960789Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-04-25T04:36:19.5964449Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-04-25T04:36:19.5967650Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-04-25T04:36:19.5970656Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-04-25T04:36:19.5974044Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.5976992Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-04-25T04:36:19.5980120Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-04-25T04:36:19.5983428Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-04-25T04:36:19.5986730Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-04-25T04:36:19.5990164Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-04-25T04:36:19.5993424Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-04-25T04:36:19.5996546Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-04-25T04:36:19.5999869Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-04-25T04:36:19.6003376Z adding 'torch/include/ATen/ops/norm.h' 2025-04-25T04:36:19.6007014Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6010308Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6013556Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6016794Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-04-25T04:36:19.6019947Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-04-25T04:36:19.6023127Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-04-25T04:36:19.6026346Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6029324Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-04-25T04:36:19.6032533Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-04-25T04:36:19.6035650Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-04-25T04:36:19.6038901Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-04-25T04:36:19.6042246Z adding 'torch/include/ATen/ops/norm_native.h' 2025-04-25T04:36:19.6046246Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-04-25T04:36:19.6050779Z adding 'torch/include/ATen/ops/normal.h' 2025-04-25T04:36:19.6054450Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6057802Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-04-25T04:36:19.6060988Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-04-25T04:36:19.6064162Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-04-25T04:36:19.6067484Z adding 'torch/include/ATen/ops/normal_native.h' 2025-04-25T04:36:19.6071471Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-04-25T04:36:19.6075058Z adding 'torch/include/ATen/ops/not_equal.h' 2025-04-25T04:36:19.6078507Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6081457Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-04-25T04:36:19.6084938Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-04-25T04:36:19.6088228Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-04-25T04:36:19.6091652Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6094647Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-04-25T04:36:19.6097943Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-04-25T04:36:19.6101022Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-04-25T04:36:19.6104261Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6107238Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-04-25T04:36:19.6110346Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-04-25T04:36:19.6113970Z adding 'torch/include/ATen/ops/one_hot.h' 2025-04-25T04:36:19.6117750Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6121045Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-04-25T04:36:19.6124643Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-04-25T04:36:19.6128217Z adding 'torch/include/ATen/ops/ones.h' 2025-04-25T04:36:19.6131964Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6135138Z adding 'torch/include/ATen/ops/ones_like.h' 2025-04-25T04:36:19.6138642Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6141717Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-04-25T04:36:19.6144989Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-04-25T04:36:19.6148198Z adding 'torch/include/ATen/ops/ones_native.h' 2025-04-25T04:36:19.6151543Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-04-25T04:36:19.6155052Z adding 'torch/include/ATen/ops/or.h' 2025-04-25T04:36:19.6158188Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6161204Z adding 'torch/include/ATen/ops/or_native.h' 2025-04-25T04:36:19.6164410Z adding 'torch/include/ATen/ops/or_ops.h' 2025-04-25T04:36:19.6167481Z adding 'torch/include/ATen/ops/orgqr.h' 2025-04-25T04:36:19.6170760Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6173565Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-04-25T04:36:19.6176884Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-04-25T04:36:19.6180024Z adding 'torch/include/ATen/ops/ormqr.h' 2025-04-25T04:36:19.6183154Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-04-25T04:36:19.6186511Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-04-25T04:36:19.6189474Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-04-25T04:36:19.6192715Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-04-25T04:36:19.6195800Z adding 'torch/include/ATen/ops/outer.h' 2025-04-25T04:36:19.6198997Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6201808Z adding 'torch/include/ATen/ops/outer_native.h' 2025-04-25T04:36:19.6205018Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-04-25T04:36:19.6208070Z adding 'torch/include/ATen/ops/output_nr.h' 2025-04-25T04:36:19.6211251Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6214058Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-04-25T04:36:19.6217109Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-04-25T04:36:19.6220233Z adding 'torch/include/ATen/ops/pad.h' 2025-04-25T04:36:19.6223454Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6226303Z adding 'torch/include/ATen/ops/pad_native.h' 2025-04-25T04:36:19.6229357Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-04-25T04:36:19.6232806Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-04-25T04:36:19.6235752Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6238585Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-04-25T04:36:19.6241666Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-04-25T04:36:19.6244704Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-04-25T04:36:19.6247928Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6250755Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-04-25T04:36:19.6253844Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-04-25T04:36:19.6256828Z adding 'torch/include/ATen/ops/pdist.h' 2025-04-25T04:36:19.6260036Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6263006Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-04-25T04:36:19.6266124Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-04-25T04:36:19.6269194Z adding 'torch/include/ATen/ops/permute.h' 2025-04-25T04:36:19.6272548Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6275390Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-04-25T04:36:19.6278580Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6281733Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6284528Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-04-25T04:36:19.6287662Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-04-25T04:36:19.6290596Z adding 'torch/include/ATen/ops/permute_native.h' 2025-04-25T04:36:19.6293655Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-04-25T04:36:19.6296557Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-04-25T04:36:19.6299706Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6302503Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-04-25T04:36:19.6305564Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-04-25T04:36:19.6308567Z adding 'torch/include/ATen/ops/pinverse.h' 2025-04-25T04:36:19.6311872Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6314754Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-04-25T04:36:19.6317847Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-04-25T04:36:19.6320877Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-04-25T04:36:19.6324084Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6327201Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6330046Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-04-25T04:36:19.6332987Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-04-25T04:36:19.6336134Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-04-25T04:36:19.6339499Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-04-25T04:36:19.6342454Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6345558Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6348395Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-04-25T04:36:19.6351317Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-04-25T04:36:19.6354570Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-04-25T04:36:19.6357980Z adding 'torch/include/ATen/ops/poisson.h' 2025-04-25T04:36:19.6361267Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6364404Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-04-25T04:36:19.6367440Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-04-25T04:36:19.6370367Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-04-25T04:36:19.6373358Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-04-25T04:36:19.6376573Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6379424Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-04-25T04:36:19.6382502Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-04-25T04:36:19.6385709Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-04-25T04:36:19.6388768Z adding 'torch/include/ATen/ops/polar.h' 2025-04-25T04:36:19.6392412Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6395386Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-04-25T04:36:19.6398395Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-04-25T04:36:19.6401308Z adding 'torch/include/ATen/ops/polar_native.h' 2025-04-25T04:36:19.6404394Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-04-25T04:36:19.6407402Z adding 'torch/include/ATen/ops/polygamma.h' 2025-04-25T04:36:19.6410619Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6413813Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6416652Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-04-25T04:36:19.6419668Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-04-25T04:36:19.6422575Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-04-25T04:36:19.6425637Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-04-25T04:36:19.6428638Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-04-25T04:36:19.6431879Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-04-25T04:36:19.6434943Z adding 'torch/include/ATen/ops/positive.h' 2025-04-25T04:36:19.6438145Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6440972Z adding 'torch/include/ATen/ops/positive_native.h' 2025-04-25T04:36:19.6444013Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-04-25T04:36:19.6447180Z adding 'torch/include/ATen/ops/pow.h' 2025-04-25T04:36:19.6450587Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6453446Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-04-25T04:36:19.6456533Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-04-25T04:36:19.6459545Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-04-25T04:36:19.6462878Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-04-25T04:36:19.6465967Z adding 'torch/include/ATen/ops/pow_native.h' 2025-04-25T04:36:19.6469554Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-04-25T04:36:19.6472856Z adding 'torch/include/ATen/ops/prelu.h' 2025-04-25T04:36:19.6476171Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6479011Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-04-25T04:36:19.6482198Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-04-25T04:36:19.6486285Z adding 'torch/include/ATen/ops/prod.h' 2025-04-25T04:36:19.6489699Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6493008Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.6496156Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6499187Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-04-25T04:36:19.6502351Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-04-25T04:36:19.6505368Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-04-25T04:36:19.6508548Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-04-25T04:36:19.6511622Z adding 'torch/include/ATen/ops/prod_native.h' 2025-04-25T04:36:19.6515257Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-04-25T04:36:19.6518437Z adding 'torch/include/ATen/ops/promote_types.h' 2025-04-25T04:36:19.6521782Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6524610Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-04-25T04:36:19.6527797Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-04-25T04:36:19.6530934Z adding 'torch/include/ATen/ops/put.h' 2025-04-25T04:36:19.6534219Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6537310Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-04-25T04:36:19.6540352Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-04-25T04:36:19.6543437Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-04-25T04:36:19.6546440Z adding 'torch/include/ATen/ops/put_native.h' 2025-04-25T04:36:19.6549742Z adding 'torch/include/ATen/ops/put_ops.h' 2025-04-25T04:36:19.6552926Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-04-25T04:36:19.6556040Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-04-25T04:36:19.6559099Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-04-25T04:36:19.6562302Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-04-25T04:36:19.6565698Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6568556Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-04-25T04:36:19.6571804Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-04-25T04:36:19.6574916Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-04-25T04:36:19.6578252Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6581116Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-04-25T04:36:19.6584333Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-04-25T04:36:19.6587300Z adding 'torch/include/ATen/ops/q_scale.h' 2025-04-25T04:36:19.6590367Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-04-25T04:36:19.6593512Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-04-25T04:36:19.6596647Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-04-25T04:36:19.6599582Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-04-25T04:36:19.6602851Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-04-25T04:36:19.6605947Z adding 'torch/include/ATen/ops/qr.h' 2025-04-25T04:36:19.6609153Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6612098Z adding 'torch/include/ATen/ops/qr_native.h' 2025-04-25T04:36:19.6615785Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-04-25T04:36:19.6619271Z adding 'torch/include/ATen/ops/qscheme.h' 2025-04-25T04:36:19.6622662Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-04-25T04:36:19.6626129Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-04-25T04:36:19.6629817Z adding 'torch/include/ATen/ops/quantile.h' 2025-04-25T04:36:19.6633777Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6637164Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-04-25T04:36:19.6640508Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-04-25T04:36:19.6643917Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-04-25T04:36:19.6647241Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6650366Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-04-25T04:36:19.6653451Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-04-25T04:36:19.6656563Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-04-25T04:36:19.6659806Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-04-25T04:36:19.6663342Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-04-25T04:36:19.6666782Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6669836Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-04-25T04:36:19.6673239Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-04-25T04:36:19.6676356Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-04-25T04:36:19.6679660Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6682653Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-04-25T04:36:19.6685691Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-04-25T04:36:19.6688706Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-04-25T04:36:19.6691914Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-04-25T04:36:19.6695013Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-04-25T04:36:19.6698502Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-04-25T04:36:19.6701788Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-04-25T04:36:19.6705085Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6707968Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-04-25T04:36:19.6711292Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-04-25T04:36:19.6714476Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-04-25T04:36:19.6717731Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6720998Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-04-25T04:36:19.6723905Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-04-25T04:36:19.6727058Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-04-25T04:36:19.6730330Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6733215Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-04-25T04:36:19.6736496Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-04-25T04:36:19.6739676Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-04-25T04:36:19.6742988Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6745959Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-04-25T04:36:19.6749051Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-04-25T04:36:19.6752237Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-04-25T04:36:19.6755805Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6758767Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-04-25T04:36:19.6761980Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-04-25T04:36:19.6765170Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-04-25T04:36:19.6768469Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6771429Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-04-25T04:36:19.6774631Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-04-25T04:36:19.6777804Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-04-25T04:36:19.6781092Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6783984Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-04-25T04:36:19.6787197Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-04-25T04:36:19.6790324Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-04-25T04:36:19.6793715Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6796649Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-04-25T04:36:19.6799899Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-04-25T04:36:19.6803494Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-04-25T04:36:19.6806518Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6809349Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-04-25T04:36:19.6812513Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-04-25T04:36:19.6817177Z adding 'torch/include/ATen/ops/rand.h' 2025-04-25T04:36:19.6821387Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6824652Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6827773Z adding 'torch/include/ATen/ops/rand_like.h' 2025-04-25T04:36:19.6831062Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6834090Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-04-25T04:36:19.6837323Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-04-25T04:36:19.6840443Z adding 'torch/include/ATen/ops/rand_native.h' 2025-04-25T04:36:19.6844103Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-04-25T04:36:19.6849026Z adding 'torch/include/ATen/ops/randint.h' 2025-04-25T04:36:19.6853282Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6857371Z adding 'torch/include/ATen/ops/randint_like.h' 2025-04-25T04:36:19.6861205Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6864212Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-04-25T04:36:19.6867621Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-04-25T04:36:19.6870816Z adding 'torch/include/ATen/ops/randint_native.h' 2025-04-25T04:36:19.6874576Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-04-25T04:36:19.6879416Z adding 'torch/include/ATen/ops/randn.h' 2025-04-25T04:36:19.6883572Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6887115Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6889969Z adding 'torch/include/ATen/ops/randn_like.h' 2025-04-25T04:36:19.6893244Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6896430Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:36:19.6899350Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-04-25T04:36:19.6902520Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-04-25T04:36:19.6905692Z adding 'torch/include/ATen/ops/randn_native.h' 2025-04-25T04:36:19.6909292Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-04-25T04:36:19.6912767Z adding 'torch/include/ATen/ops/random.h' 2025-04-25T04:36:19.6916513Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6919248Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-04-25T04:36:19.6922312Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-04-25T04:36:19.6925346Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-04-25T04:36:19.6928621Z adding 'torch/include/ATen/ops/random_native.h' 2025-04-25T04:36:19.6932342Z adding 'torch/include/ATen/ops/random_ops.h' 2025-04-25T04:36:19.6935996Z adding 'torch/include/ATen/ops/randperm.h' 2025-04-25T04:36:19.6939647Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6942659Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-04-25T04:36:19.6945739Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-04-25T04:36:19.6948725Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-04-25T04:36:19.6952111Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-04-25T04:36:19.6955510Z adding 'torch/include/ATen/ops/range.h' 2025-04-25T04:36:19.6958891Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.6961853Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-04-25T04:36:19.6964913Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-04-25T04:36:19.6967936Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-04-25T04:36:19.6970921Z adding 'torch/include/ATen/ops/range_native.h' 2025-04-25T04:36:19.6974253Z adding 'torch/include/ATen/ops/range_ops.h' 2025-04-25T04:36:19.6977339Z adding 'torch/include/ATen/ops/ravel.h' 2025-04-25T04:36:19.6980544Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6983340Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-04-25T04:36:19.6986407Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-04-25T04:36:19.6989424Z adding 'torch/include/ATen/ops/real.h' 2025-04-25T04:36:19.6992725Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.6995573Z adding 'torch/include/ATen/ops/real_native.h' 2025-04-25T04:36:19.6998622Z adding 'torch/include/ATen/ops/real_ops.h' 2025-04-25T04:36:19.7001668Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-04-25T04:36:19.7004940Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7007808Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-04-25T04:36:19.7010801Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-04-25T04:36:19.7014243Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-04-25T04:36:19.7017286Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-04-25T04:36:19.7020171Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-04-25T04:36:19.7023330Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-04-25T04:36:19.7026295Z adding 'torch/include/ATen/ops/record_stream.h' 2025-04-25T04:36:19.7029540Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-04-25T04:36:19.7032562Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-04-25T04:36:19.7035777Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-04-25T04:36:19.7039118Z adding 'torch/include/ATen/ops/refine_names.h' 2025-04-25T04:36:19.7042123Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7045078Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-04-25T04:36:19.7048167Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-04-25T04:36:19.7051621Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-04-25T04:36:19.7055326Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-04-25T04:36:19.7058755Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7061887Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7065076Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7068198Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-04-25T04:36:19.7071384Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-04-25T04:36:19.7074721Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-04-25T04:36:19.7078005Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-04-25T04:36:19.7081314Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7084366Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-04-25T04:36:19.7087493Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-04-25T04:36:19.7090626Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-04-25T04:36:19.7093858Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-04-25T04:36:19.7097012Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-04-25T04:36:19.7100269Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-04-25T04:36:19.7103606Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-04-25T04:36:19.7107222Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-04-25T04:36:19.7110550Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7114256Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7117707Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-04-25T04:36:19.7121464Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-04-25T04:36:19.7125024Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-04-25T04:36:19.7128705Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-04-25T04:36:19.7132123Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-04-25T04:36:19.7135912Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-04-25T04:36:19.7139697Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-04-25T04:36:19.7143275Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-04-25T04:36:19.7146953Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7150054Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7153498Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7156700Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-04-25T04:36:19.7159862Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-04-25T04:36:19.7163033Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-04-25T04:36:19.7166253Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-04-25T04:36:19.7169582Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7172522Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-04-25T04:36:19.7175835Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-04-25T04:36:19.7178792Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-04-25T04:36:19.7181890Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-04-25T04:36:19.7184891Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-04-25T04:36:19.7188033Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-04-25T04:36:19.7191299Z adding 'torch/include/ATen/ops/relu.h' 2025-04-25T04:36:19.7194510Z adding 'torch/include/ATen/ops/relu6.h' 2025-04-25T04:36:19.7197790Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7200510Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-04-25T04:36:19.7203592Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-04-25T04:36:19.7206773Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7209674Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-04-25T04:36:19.7212702Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-04-25T04:36:19.7215719Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-04-25T04:36:19.7218756Z adding 'torch/include/ATen/ops/relu_native.h' 2025-04-25T04:36:19.7222085Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-04-25T04:36:19.7225334Z adding 'torch/include/ATen/ops/remainder.h' 2025-04-25T04:36:19.7228642Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7232615Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7235595Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-04-25T04:36:19.7238691Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-04-25T04:36:19.7241867Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-04-25T04:36:19.7244759Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-04-25T04:36:19.7247759Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-04-25T04:36:19.7251338Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-04-25T04:36:19.7254418Z adding 'torch/include/ATen/ops/rename.h' 2025-04-25T04:36:19.7257594Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7260425Z adding 'torch/include/ATen/ops/rename_native.h' 2025-04-25T04:36:19.7263529Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-04-25T04:36:19.7266585Z adding 'torch/include/ATen/ops/renorm.h' 2025-04-25T04:36:19.7269911Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7272902Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-04-25T04:36:19.7276089Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-04-25T04:36:19.7279075Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-04-25T04:36:19.7282373Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-04-25T04:36:19.7285264Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-04-25T04:36:19.7288622Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-04-25T04:36:19.7292011Z adding 'torch/include/ATen/ops/repeat.h' 2025-04-25T04:36:19.7295483Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7299127Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-04-25T04:36:19.7302634Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7305992Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7308916Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-04-25T04:36:19.7312169Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-04-25T04:36:19.7315355Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-04-25T04:36:19.7318742Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-04-25T04:36:19.7321911Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-04-25T04:36:19.7325080Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-04-25T04:36:19.7328565Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-04-25T04:36:19.7332172Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-04-25T04:36:19.7335675Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7338846Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7342083Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7345183Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-04-25T04:36:19.7348477Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-04-25T04:36:19.7351485Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-04-25T04:36:19.7355070Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-04-25T04:36:19.7358209Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7361330Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-04-25T04:36:19.7364433Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-04-25T04:36:19.7367587Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-04-25T04:36:19.7370808Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-04-25T04:36:19.7373834Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-04-25T04:36:19.7377105Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-04-25T04:36:19.7380394Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-04-25T04:36:19.7384075Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-04-25T04:36:19.7387542Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7390789Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7394011Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-04-25T04:36:19.7397222Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-04-25T04:36:19.7400682Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7403654Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-04-25T04:36:19.7406945Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-04-25T04:36:19.7410037Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-04-25T04:36:19.7413183Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-04-25T04:36:19.7416300Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-04-25T04:36:19.7419493Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-04-25T04:36:19.7422930Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-04-25T04:36:19.7426435Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-04-25T04:36:19.7429902Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-04-25T04:36:19.7433257Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-04-25T04:36:19.7436332Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-04-25T04:36:19.7439635Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-04-25T04:36:19.7443525Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7446061Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-04-25T04:36:19.7449232Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-04-25T04:36:19.7452262Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-04-25T04:36:19.7455531Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-04-25T04:36:19.7458553Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-04-25T04:36:19.7461806Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-04-25T04:36:19.7464757Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-04-25T04:36:19.7468105Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7470918Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-04-25T04:36:19.7474207Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-04-25T04:36:19.7477445Z adding 'torch/include/ATen/ops/reshape.h' 2025-04-25T04:36:19.7480537Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-04-25T04:36:19.7483787Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7487243Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:36:19.7489832Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-04-25T04:36:19.7492903Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-04-25T04:36:19.7496247Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7499491Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:36:19.7502292Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-04-25T04:36:19.7506079Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-04-25T04:36:19.7509576Z adding 'torch/include/ATen/ops/resize.h' 2025-04-25T04:36:19.7513110Z adding 'torch/include/ATen/ops/resize_as.h' 2025-04-25T04:36:19.7516550Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7519472Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-04-25T04:36:19.7522834Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-04-25T04:36:19.7526006Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-04-25T04:36:19.7529418Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7532391Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-04-25T04:36:19.7535493Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-04-25T04:36:19.7538783Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-04-25T04:36:19.7542162Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7545500Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-04-25T04:36:19.7548315Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-04-25T04:36:19.7551574Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-04-25T04:36:19.7554762Z adding 'torch/include/ATen/ops/resize_native.h' 2025-04-25T04:36:19.7558181Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-04-25T04:36:19.7561320Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-04-25T04:36:19.7564565Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7567509Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-04-25T04:36:19.7570579Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-04-25T04:36:19.7573721Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-04-25T04:36:19.7576895Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7579874Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-04-25T04:36:19.7582942Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-04-25T04:36:19.7586202Z adding 'torch/include/ATen/ops/result_type.h' 2025-04-25T04:36:19.7589825Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7592660Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-04-25T04:36:19.7595829Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-04-25T04:36:19.7598837Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-04-25T04:36:19.7602025Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7604821Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-04-25T04:36:19.7607840Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-04-25T04:36:19.7610879Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-04-25T04:36:19.7614049Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7616854Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-04-25T04:36:19.7619908Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-04-25T04:36:19.7623033Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-04-25T04:36:19.7626363Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7629097Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-04-25T04:36:19.7632287Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-04-25T04:36:19.7635440Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-04-25T04:36:19.7638892Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-04-25T04:36:19.7642495Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7645681Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-04-25T04:36:19.7652768Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-04-25T04:36:19.7654402Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7657393Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-04-25T04:36:19.7660485Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-04-25T04:36:19.7663623Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-04-25T04:36:19.7666803Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-04-25T04:36:19.7669966Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7672971Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-04-25T04:36:19.7676081Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-04-25T04:36:19.7679372Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7682304Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-04-25T04:36:19.7685612Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-04-25T04:36:19.7688930Z adding 'torch/include/ATen/ops/roll.h' 2025-04-25T04:36:19.7692331Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7695298Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-04-25T04:36:19.7698537Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-04-25T04:36:19.7701556Z adding 'torch/include/ATen/ops/roll_native.h' 2025-04-25T04:36:19.7704716Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-04-25T04:36:19.7707860Z adding 'torch/include/ATen/ops/rot90.h' 2025-04-25T04:36:19.7711144Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7714151Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-04-25T04:36:19.7717296Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-04-25T04:36:19.7720503Z adding 'torch/include/ATen/ops/round.h' 2025-04-25T04:36:19.7723821Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7726781Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-04-25T04:36:19.7729895Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-04-25T04:36:19.7732879Z adding 'torch/include/ATen/ops/round_meta.h' 2025-04-25T04:36:19.7735985Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-04-25T04:36:19.7739104Z adding 'torch/include/ATen/ops/round_native.h' 2025-04-25T04:36:19.7742867Z adding 'torch/include/ATen/ops/round_ops.h' 2025-04-25T04:36:19.7745508Z adding 'torch/include/ATen/ops/row_indices.h' 2025-04-25T04:36:19.7748649Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7751536Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-04-25T04:36:19.7754864Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7758054Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7760795Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-04-25T04:36:19.7763944Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-04-25T04:36:19.7766907Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-04-25T04:36:19.7769974Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-04-25T04:36:19.7773014Z adding 'torch/include/ATen/ops/row_stack.h' 2025-04-25T04:36:19.7776872Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7779261Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-04-25T04:36:19.7782385Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-04-25T04:36:19.7785579Z adding 'torch/include/ATen/ops/rrelu.h' 2025-04-25T04:36:19.7788837Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7791754Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-04-25T04:36:19.7795095Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-04-25T04:36:19.7798392Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-04-25T04:36:19.7801628Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-04-25T04:36:19.7805001Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7807912Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-04-25T04:36:19.7811122Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-04-25T04:36:19.7814372Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7817366Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-04-25T04:36:19.7820801Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-04-25T04:36:19.7823926Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-04-25T04:36:19.7827024Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-04-25T04:36:19.7830496Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-04-25T04:36:19.7833809Z adding 'torch/include/ATen/ops/rshift.h' 2025-04-25T04:36:19.7837117Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7840089Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-04-25T04:36:19.7843173Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-04-25T04:36:19.7846190Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-04-25T04:36:19.7849198Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-04-25T04:36:19.7852604Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-04-25T04:36:19.7855749Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-04-25T04:36:19.7859010Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7861879Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-04-25T04:36:19.7864897Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-04-25T04:36:19.7867864Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-04-25T04:36:19.7870916Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-04-25T04:36:19.7874033Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-04-25T04:36:19.7877221Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-04-25T04:36:19.7880432Z adding 'torch/include/ATen/ops/rsub.h' 2025-04-25T04:36:19.7883704Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7886984Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-04-25T04:36:19.7889704Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-04-25T04:36:19.7892630Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-04-25T04:36:19.7895925Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-04-25T04:36:19.7899197Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-04-25T04:36:19.7902819Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.7905763Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-04-25T04:36:19.7908993Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-04-25T04:36:19.7912247Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-04-25T04:36:19.7915569Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7918527Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-04-25T04:36:19.7921672Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-04-25T04:36:19.7925503Z adding 'torch/include/ATen/ops/scatter.h' 2025-04-25T04:36:19.7928317Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-04-25T04:36:19.7931609Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7934748Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7937724Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-04-25T04:36:19.7940988Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-04-25T04:36:19.7943994Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-04-25T04:36:19.7947259Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-04-25T04:36:19.7950348Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-04-25T04:36:19.7953809Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-04-25T04:36:19.7957366Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7960435Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.7964429Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-04-25T04:36:19.7967878Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-04-25T04:36:19.7971027Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-04-25T04:36:19.7974471Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-04-25T04:36:19.7977608Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-04-25T04:36:19.7981722Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-04-25T04:36:19.7985302Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-04-25T04:36:19.7988737Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.7991889Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-04-25T04:36:19.7995205Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-04-25T04:36:19.7998265Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-04-25T04:36:19.8001501Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-04-25T04:36:19.8004530Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-04-25T04:36:19.8007910Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-04-25T04:36:19.8011279Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-04-25T04:36:19.8014709Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-04-25T04:36:19.8018004Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-04-25T04:36:19.8021208Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-04-25T04:36:19.8024761Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-04-25T04:36:19.8028074Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-04-25T04:36:19.8031573Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8035159Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-04-25T04:36:19.8037951Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-04-25T04:36:19.8041092Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-04-25T04:36:19.8044375Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-04-25T04:36:19.8047690Z adding 'torch/include/ATen/ops/select.h' 2025-04-25T04:36:19.8051178Z adding 'torch/include/ATen/ops/select_backward.h' 2025-04-25T04:36:19.8054624Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8057923Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8060749Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-04-25T04:36:19.8064026Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-04-25T04:36:19.8067236Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8070413Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8073807Z adding 'torch/include/ATen/ops/select_copy.h' 2025-04-25T04:36:19.8077159Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8080418Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8083291Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-04-25T04:36:19.8086579Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-04-25T04:36:19.8089618Z adding 'torch/include/ATen/ops/select_native.h' 2025-04-25T04:36:19.8092935Z adding 'torch/include/ATen/ops/select_ops.h' 2025-04-25T04:36:19.8096367Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-04-25T04:36:19.8099760Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8103050Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8105851Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-04-25T04:36:19.8109316Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-04-25T04:36:19.8112492Z adding 'torch/include/ATen/ops/selu.h' 2025-04-25T04:36:19.8115774Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8118682Z adding 'torch/include/ATen/ops/selu_native.h' 2025-04-25T04:36:19.8121822Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-04-25T04:36:19.8125887Z adding 'torch/include/ATen/ops/set.h' 2025-04-25T04:36:19.8130024Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8133836Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8137209Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-04-25T04:36:19.8140322Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-04-25T04:36:19.8143431Z adding 'torch/include/ATen/ops/set_data.h' 2025-04-25T04:36:19.8146700Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8149694Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-04-25T04:36:19.8152883Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-04-25T04:36:19.8156198Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-04-25T04:36:19.8159387Z adding 'torch/include/ATen/ops/set_native.h' 2025-04-25T04:36:19.8163367Z adding 'torch/include/ATen/ops/set_ops.h' 2025-04-25T04:36:19.8166656Z adding 'torch/include/ATen/ops/sgn.h' 2025-04-25T04:36:19.8170238Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8173048Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-04-25T04:36:19.8176053Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-04-25T04:36:19.8179002Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-04-25T04:36:19.8182046Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-04-25T04:36:19.8185095Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-04-25T04:36:19.8188954Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-04-25T04:36:19.8191618Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-04-25T04:36:19.8194810Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-04-25T04:36:19.8198152Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8201048Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-04-25T04:36:19.8204097Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-04-25T04:36:19.8207051Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-04-25T04:36:19.8210534Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-04-25T04:36:19.8213642Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-04-25T04:36:19.8216756Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-04-25T04:36:19.8220155Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8223022Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-04-25T04:36:19.8226120Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-04-25T04:36:19.8228938Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-04-25T04:36:19.8231985Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-04-25T04:36:19.8235021Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-04-25T04:36:19.8238187Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-04-25T04:36:19.8241244Z adding 'torch/include/ATen/ops/sign.h' 2025-04-25T04:36:19.8244526Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8247375Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-04-25T04:36:19.8250408Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-04-25T04:36:19.8253332Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-04-25T04:36:19.8256359Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-04-25T04:36:19.8259344Z adding 'torch/include/ATen/ops/sign_native.h' 2025-04-25T04:36:19.8262555Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-04-25T04:36:19.8265620Z adding 'torch/include/ATen/ops/signbit.h' 2025-04-25T04:36:19.8268905Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8271765Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-04-25T04:36:19.8275097Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-04-25T04:36:19.8278124Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-04-25T04:36:19.8281271Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-04-25T04:36:19.8284256Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-04-25T04:36:19.8287655Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-04-25T04:36:19.8290796Z adding 'torch/include/ATen/ops/silu.h' 2025-04-25T04:36:19.8293881Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-04-25T04:36:19.8297174Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8300148Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8303076Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-04-25T04:36:19.8306132Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-04-25T04:36:19.8309053Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-04-25T04:36:19.8312125Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-04-25T04:36:19.8315152Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-04-25T04:36:19.8318304Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-04-25T04:36:19.8321519Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8324370Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-04-25T04:36:19.8327410Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-04-25T04:36:19.8330319Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-04-25T04:36:19.8333707Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-04-25T04:36:19.8336326Z adding 'torch/include/ATen/ops/silu_native.h' 2025-04-25T04:36:19.8339475Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-04-25T04:36:19.8342555Z adding 'torch/include/ATen/ops/sin.h' 2025-04-25T04:36:19.8345800Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8348634Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-04-25T04:36:19.8351636Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-04-25T04:36:19.8354682Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-04-25T04:36:19.8357686Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-04-25T04:36:19.8360653Z adding 'torch/include/ATen/ops/sin_native.h' 2025-04-25T04:36:19.8363826Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-04-25T04:36:19.8366897Z adding 'torch/include/ATen/ops/sinc.h' 2025-04-25T04:36:19.8370231Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8373176Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-04-25T04:36:19.8376291Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-04-25T04:36:19.8379289Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-04-25T04:36:19.8382440Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-04-25T04:36:19.8385448Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-04-25T04:36:19.8388692Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-04-25T04:36:19.8392244Z adding 'torch/include/ATen/ops/sinh.h' 2025-04-25T04:36:19.8395359Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8398390Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-04-25T04:36:19.8401413Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-04-25T04:36:19.8404892Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-04-25T04:36:19.8408095Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-04-25T04:36:19.8411145Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-04-25T04:36:19.8414408Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-04-25T04:36:19.8417480Z adding 'torch/include/ATen/ops/size.h' 2025-04-25T04:36:19.8420811Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8423631Z adding 'torch/include/ATen/ops/size_native.h' 2025-04-25T04:36:19.8426875Z adding 'torch/include/ATen/ops/size_ops.h' 2025-04-25T04:36:19.8430309Z adding 'torch/include/ATen/ops/slice.h' 2025-04-25T04:36:19.8433838Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-04-25T04:36:19.8437416Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8440434Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-04-25T04:36:19.8443842Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-04-25T04:36:19.8447204Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8450597Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-04-25T04:36:19.8454138Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8457356Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8460331Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-04-25T04:36:19.8463685Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-04-25T04:36:19.8467026Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-04-25T04:36:19.8470420Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8473372Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-04-25T04:36:19.8476642Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-04-25T04:36:19.8479638Z adding 'torch/include/ATen/ops/slice_native.h' 2025-04-25T04:36:19.8482855Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-04-25T04:36:19.8486515Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-04-25T04:36:19.8490451Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8493379Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8496232Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-04-25T04:36:19.8499665Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-04-25T04:36:19.8502775Z adding 'torch/include/ATen/ops/slogdet.h' 2025-04-25T04:36:19.8506103Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8509118Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-04-25T04:36:19.8512370Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-04-25T04:36:19.8515993Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-04-25T04:36:19.8519693Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8523100Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-04-25T04:36:19.8526647Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-04-25T04:36:19.8529619Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-04-25T04:36:19.8532988Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-04-25T04:36:19.8536036Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-04-25T04:36:19.8539412Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-04-25T04:36:19.8543158Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-04-25T04:36:19.8546725Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8549946Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-04-25T04:36:19.8553232Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-04-25T04:36:19.8556402Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-04-25T04:36:19.8559895Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-04-25T04:36:19.8563571Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-04-25T04:36:19.8567179Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8570326Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-04-25T04:36:19.8573505Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-04-25T04:36:19.8576664Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-04-25T04:36:19.8579950Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-04-25T04:36:19.8583794Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-04-25T04:36:19.8587509Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8590640Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-04-25T04:36:19.8594125Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-04-25T04:36:19.8597246Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-04-25T04:36:19.8601182Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-04-25T04:36:19.8604156Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-04-25T04:36:19.8607557Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-04-25T04:36:19.8611402Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-04-25T04:36:19.8624238Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-04-25T04:36:19.8624592Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-04-25T04:36:19.8624789Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-04-25T04:36:19.8624954Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-04-25T04:36:19.8628418Z adding 'torch/include/ATen/ops/smm.h' 2025-04-25T04:36:19.8632069Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8635388Z adding 'torch/include/ATen/ops/smm_native.h' 2025-04-25T04:36:19.8638264Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-04-25T04:36:19.8641438Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-04-25T04:36:19.8644739Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-04-25T04:36:19.8648007Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8651177Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-04-25T04:36:19.8654279Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-04-25T04:36:19.8657370Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-04-25T04:36:19.8660709Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-04-25T04:36:19.8664319Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8667570Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-04-25T04:36:19.8670718Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-04-25T04:36:19.8673868Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-04-25T04:36:19.8676958Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-04-25T04:36:19.8679960Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-04-25T04:36:19.8683323Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-04-25T04:36:19.8686544Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-04-25T04:36:19.8689755Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-04-25T04:36:19.8693024Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8695905Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-04-25T04:36:19.8699132Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-04-25T04:36:19.8702376Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8705937Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-04-25T04:36:19.8709208Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-04-25T04:36:19.8712637Z adding 'torch/include/ATen/ops/softmax.h' 2025-04-25T04:36:19.8715966Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8719065Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8721996Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-04-25T04:36:19.8725269Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-04-25T04:36:19.8728449Z adding 'torch/include/ATen/ops/softplus.h' 2025-04-25T04:36:19.8731620Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-04-25T04:36:19.8735032Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8737928Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-04-25T04:36:19.8740986Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-04-25T04:36:19.8743987Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-04-25T04:36:19.8747067Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-04-25T04:36:19.8750034Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-04-25T04:36:19.8753332Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-04-25T04:36:19.8756682Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8759640Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-04-25T04:36:19.8762725Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-04-25T04:36:19.8765689Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-04-25T04:36:19.8768877Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-04-25T04:36:19.8771882Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-04-25T04:36:19.8775041Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-04-25T04:36:19.8778557Z adding 'torch/include/ATen/ops/softshrink.h' 2025-04-25T04:36:19.8781375Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-04-25T04:36:19.8784840Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8787784Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-04-25T04:36:19.8790851Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-04-25T04:36:19.8793925Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-04-25T04:36:19.8797050Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-04-25T04:36:19.8800030Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-04-25T04:36:19.8803192Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-04-25T04:36:19.8806469Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8809658Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-04-25T04:36:19.8812797Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-04-25T04:36:19.8815693Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-04-25T04:36:19.8818831Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-04-25T04:36:19.8821780Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-04-25T04:36:19.8824899Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-04-25T04:36:19.8828282Z adding 'torch/include/ATen/ops/sort.h' 2025-04-25T04:36:19.8831609Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8834922Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.8838108Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8841160Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-04-25T04:36:19.8844274Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-04-25T04:36:19.8847281Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-04-25T04:36:19.8850385Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-04-25T04:36:19.8853463Z adding 'torch/include/ATen/ops/sort_native.h' 2025-04-25T04:36:19.8857097Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-04-25T04:36:19.8860570Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-04-25T04:36:19.8863940Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8866883Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-04-25T04:36:19.8870282Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-04-25T04:36:19.8873693Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-04-25T04:36:19.8877083Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8880015Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-04-25T04:36:19.8883279Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-04-25T04:36:19.8887049Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-04-25T04:36:19.8890607Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8893346Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-04-25T04:36:19.8896668Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-04-25T04:36:19.8900100Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-04-25T04:36:19.8903506Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8906666Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8909654Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-04-25T04:36:19.8913182Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-04-25T04:36:19.8916697Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-04-25T04:36:19.8920442Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8923054Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-04-25T04:36:19.8926288Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-04-25T04:36:19.8929579Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-04-25T04:36:19.8933045Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.8935914Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-04-25T04:36:19.8939121Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-04-25T04:36:19.8942109Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-04-25T04:36:19.8945283Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8948118Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-04-25T04:36:19.8951163Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-04-25T04:36:19.8954330Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-04-25T04:36:19.8957969Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8960446Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-04-25T04:36:19.8963532Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-04-25T04:36:19.8966623Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-04-25T04:36:19.8969899Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-04-25T04:36:19.8973387Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8976348Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-04-25T04:36:19.8979348Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-04-25T04:36:19.8982706Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-04-25T04:36:19.8985988Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.8989158Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-04-25T04:36:19.8992281Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-04-25T04:36:19.8995573Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-04-25T04:36:19.8998907Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-04-25T04:36:19.9002022Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-04-25T04:36:19.9005313Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-04-25T04:36:19.9008376Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-04-25T04:36:19.9011807Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9014778Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-04-25T04:36:19.9017988Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-04-25T04:36:19.9021108Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-04-25T04:36:19.9024222Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-04-25T04:36:19.9027287Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-04-25T04:36:19.9030414Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-04-25T04:36:19.9033728Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-04-25T04:36:19.9037085Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9041404Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-04-25T04:36:19.9044751Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-04-25T04:36:19.9047783Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-04-25T04:36:19.9050994Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-04-25T04:36:19.9054063Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-04-25T04:36:19.9057266Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-04-25T04:36:19.9060848Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-04-25T04:36:19.9063806Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9066840Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-04-25T04:36:19.9069969Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-04-25T04:36:19.9073165Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-04-25T04:36:19.9076690Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-04-25T04:36:19.9079628Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-04-25T04:36:19.9082836Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-04-25T04:36:19.9085906Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-04-25T04:36:19.9089324Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9092235Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-04-25T04:36:19.9095538Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-04-25T04:36:19.9098433Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-04-25T04:36:19.9101610Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-04-25T04:36:19.9104664Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-04-25T04:36:19.9107815Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-04-25T04:36:19.9111000Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-04-25T04:36:19.9114464Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9117467Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-04-25T04:36:19.9120539Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-04-25T04:36:19.9123671Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-04-25T04:36:19.9126807Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-04-25T04:36:19.9129894Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-04-25T04:36:19.9133132Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-04-25T04:36:19.9136987Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-04-25T04:36:19.9140964Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9144654Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9148176Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-04-25T04:36:19.9151566Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-04-25T04:36:19.9154673Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-04-25T04:36:19.9157983Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-04-25T04:36:19.9161089Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-04-25T04:36:19.9164606Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-04-25T04:36:19.9168076Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-04-25T04:36:19.9171457Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9174811Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9177723Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-04-25T04:36:19.9180777Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-04-25T04:36:19.9183818Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-04-25T04:36:19.9187009Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-04-25T04:36:19.9190095Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-04-25T04:36:19.9193555Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-04-25T04:36:19.9196859Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-04-25T04:36:19.9200320Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9203507Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9206404Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-04-25T04:36:19.9209432Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-04-25T04:36:19.9212378Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-04-25T04:36:19.9215443Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-04-25T04:36:19.9218463Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-04-25T04:36:19.9221852Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-04-25T04:36:19.9225053Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-04-25T04:36:19.9228373Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9231651Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9234661Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-04-25T04:36:19.9237742Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-04-25T04:36:19.9240930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-04-25T04:36:19.9244075Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-04-25T04:36:19.9247096Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-04-25T04:36:19.9250552Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-04-25T04:36:19.9253553Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-04-25T04:36:19.9256772Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9259622Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-04-25T04:36:19.9262756Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-04-25T04:36:19.9265830Z adding 'torch/include/ATen/ops/special_entr.h' 2025-04-25T04:36:19.9269107Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9272061Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-04-25T04:36:19.9275073Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-04-25T04:36:19.9277997Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-04-25T04:36:19.9281052Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-04-25T04:36:19.9283965Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-04-25T04:36:19.9287186Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-04-25T04:36:19.9290275Z adding 'torch/include/ATen/ops/special_erf.h' 2025-04-25T04:36:19.9293698Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9296501Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-04-25T04:36:19.9299753Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-04-25T04:36:19.9302888Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-04-25T04:36:19.9306291Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9309251Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-04-25T04:36:19.9312508Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-04-25T04:36:19.9315690Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-04-25T04:36:19.9319088Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9322149Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-04-25T04:36:19.9325316Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-04-25T04:36:19.9328306Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-04-25T04:36:19.9331496Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-04-25T04:36:19.9334485Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-04-25T04:36:19.9337692Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-04-25T04:36:19.9340770Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-04-25T04:36:19.9344275Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9347174Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-04-25T04:36:19.9350443Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-04-25T04:36:19.9353773Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-04-25T04:36:19.9357046Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9359979Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-04-25T04:36:19.9363128Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-04-25T04:36:19.9366347Z adding 'torch/include/ATen/ops/special_expit.h' 2025-04-25T04:36:19.9369644Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9372674Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-04-25T04:36:19.9375933Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-04-25T04:36:19.9379032Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-04-25T04:36:19.9382405Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9385255Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-04-25T04:36:19.9388493Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-04-25T04:36:19.9391598Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-04-25T04:36:19.9395067Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9398053Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-04-25T04:36:19.9401273Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-04-25T04:36:19.9404481Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-04-25T04:36:19.9407784Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9410745Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-04-25T04:36:19.9413948Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-04-25T04:36:19.9417158Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-04-25T04:36:19.9420485Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9423424Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-04-25T04:36:19.9426686Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-04-25T04:36:19.9430012Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-04-25T04:36:19.9433604Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9437569Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9440658Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-04-25T04:36:19.9443826Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-04-25T04:36:19.9446814Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-04-25T04:36:19.9450366Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-04-25T04:36:19.9453464Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-04-25T04:36:19.9457015Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-04-25T04:36:19.9460528Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-04-25T04:36:19.9463833Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9467124Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9470069Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-04-25T04:36:19.9473480Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-04-25T04:36:19.9476561Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-04-25T04:36:19.9479759Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-04-25T04:36:19.9482887Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-04-25T04:36:19.9486286Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-04-25T04:36:19.9489495Z adding 'torch/include/ATen/ops/special_i0.h' 2025-04-25T04:36:19.9492806Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9495742Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-04-25T04:36:19.9498920Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-04-25T04:36:19.9502157Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-04-25T04:36:19.9505549Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9508448Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-04-25T04:36:19.9511679Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-04-25T04:36:19.9514753Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-04-25T04:36:19.9517999Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-04-25T04:36:19.9521265Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-04-25T04:36:19.9524293Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-04-25T04:36:19.9527470Z adding 'torch/include/ATen/ops/special_i1.h' 2025-04-25T04:36:19.9530761Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9533761Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-04-25T04:36:19.9536781Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-04-25T04:36:19.9539853Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-04-25T04:36:19.9543192Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-04-25T04:36:19.9546252Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-04-25T04:36:19.9549196Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-04-25T04:36:19.9552505Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-04-25T04:36:19.9555877Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9558780Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-04-25T04:36:19.9562080Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-04-25T04:36:19.9565059Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-04-25T04:36:19.9568315Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-04-25T04:36:19.9571260Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-04-25T04:36:19.9574513Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-04-25T04:36:19.9577913Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-04-25T04:36:19.9581337Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9584611Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9587559Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-04-25T04:36:19.9590799Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-04-25T04:36:19.9593912Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-04-25T04:36:19.9597089Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-04-25T04:36:19.9600465Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-04-25T04:36:19.9603771Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-04-25T04:36:19.9607149Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-04-25T04:36:19.9610559Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9613722Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9616736Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-04-25T04:36:19.9619852Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-04-25T04:36:19.9622805Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-04-25T04:36:19.9625988Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-04-25T04:36:19.9628960Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-04-25T04:36:19.9632575Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-04-25T04:36:19.9635718Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-04-25T04:36:19.9638963Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9641766Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-04-25T04:36:19.9644911Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-04-25T04:36:19.9647955Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-04-25T04:36:19.9651255Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9654132Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-04-25T04:36:19.9657165Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-04-25T04:36:19.9660136Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-04-25T04:36:19.9663365Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-04-25T04:36:19.9666368Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-04-25T04:36:19.9669502Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-04-25T04:36:19.9672645Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-04-25T04:36:19.9675937Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9678806Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-04-25T04:36:19.9681893Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-04-25T04:36:19.9684959Z adding 'torch/include/ATen/ops/special_logit.h' 2025-04-25T04:36:19.9688196Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9691048Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-04-25T04:36:19.9694173Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-04-25T04:36:19.9697291Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-04-25T04:36:19.9700611Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9703505Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-04-25T04:36:19.9706691Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-04-25T04:36:19.9709813Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-04-25T04:36:19.9713209Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9716126Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-04-25T04:36:19.9719313Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-04-25T04:36:19.9722339Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-04-25T04:36:19.9725538Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-04-25T04:36:19.9728461Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-04-25T04:36:19.9731607Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-04-25T04:36:19.9734684Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-04-25T04:36:19.9737979Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9740858Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-04-25T04:36:19.9743922Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-04-25T04:36:19.9746906Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-04-25T04:36:19.9750073Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-04-25T04:36:19.9753107Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-04-25T04:36:19.9756313Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-04-25T04:36:19.9759408Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-04-25T04:36:19.9762714Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9765658Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-04-25T04:36:19.9768717Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-04-25T04:36:19.9771704Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-04-25T04:36:19.9774810Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-04-25T04:36:19.9777770Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-04-25T04:36:19.9780875Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-04-25T04:36:19.9783912Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-04-25T04:36:19.9787278Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9790276Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-04-25T04:36:19.9793471Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-04-25T04:36:19.9796418Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-04-25T04:36:19.9799518Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-04-25T04:36:19.9802454Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-04-25T04:36:19.9805567Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-04-25T04:36:19.9808617Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-04-25T04:36:19.9811951Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9814744Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-04-25T04:36:19.9817883Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-04-25T04:36:19.9821084Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-04-25T04:36:19.9824363Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9827205Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-04-25T04:36:19.9830330Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-04-25T04:36:19.9833461Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-04-25T04:36:19.9836750Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9839607Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-04-25T04:36:19.9842626Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-04-25T04:36:19.9845563Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-04-25T04:36:19.9848967Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-04-25T04:36:19.9852044Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-04-25T04:36:19.9855116Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-04-25T04:36:19.9858200Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-04-25T04:36:19.9861441Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9864292Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-04-25T04:36:19.9867435Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-04-25T04:36:19.9870472Z adding 'torch/include/ATen/ops/special_psi.h' 2025-04-25T04:36:19.9873824Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9876694Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-04-25T04:36:19.9879803Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-04-25T04:36:19.9882878Z adding 'torch/include/ATen/ops/special_round.h' 2025-04-25T04:36:19.9886126Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:19.9888996Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-04-25T04:36:19.9892048Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-04-25T04:36:19.9895194Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-04-25T04:36:19.9898548Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9901484Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-04-25T04:36:19.9904609Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-04-25T04:36:19.9907534Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-04-25T04:36:19.9910601Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-04-25T04:36:19.9913682Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-04-25T04:36:19.9916837Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-04-25T04:36:19.9919963Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-04-25T04:36:19.9923450Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9926493Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-04-25T04:36:19.9929584Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-04-25T04:36:19.9932663Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-04-25T04:36:19.9935781Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-04-25T04:36:19.9938903Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-04-25T04:36:19.9942083Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-04-25T04:36:19.9945521Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-04-25T04:36:19.9949025Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9952285Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9955406Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-04-25T04:36:19.9958516Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-04-25T04:36:19.9961656Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-04-25T04:36:19.9964744Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-04-25T04:36:19.9967897Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-04-25T04:36:19.9971430Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-04-25T04:36:19.9974873Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-04-25T04:36:19.9978321Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:19.9981449Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:19.9984570Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-04-25T04:36:19.9987704Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-04-25T04:36:19.9990691Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-04-25T04:36:19.9994022Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-04-25T04:36:19.9997089Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-04-25T04:36:20.0000642Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-04-25T04:36:20.0004198Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-04-25T04:36:20.0007596Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0010879Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0013829Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-04-25T04:36:20.0017055Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-04-25T04:36:20.0026730Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-04-25T04:36:20.0027027Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-04-25T04:36:20.0028470Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-04-25T04:36:20.0032301Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-04-25T04:36:20.0035551Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-04-25T04:36:20.0039045Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0042313Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0045418Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-04-25T04:36:20.0048595Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-04-25T04:36:20.0051690Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-04-25T04:36:20.0054876Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-04-25T04:36:20.0058310Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-04-25T04:36:20.0061876Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-04-25T04:36:20.0064965Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-04-25T04:36:20.0068374Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0071350Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-04-25T04:36:20.0074626Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-04-25T04:36:20.0077778Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-04-25T04:36:20.0081019Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0084020Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-04-25T04:36:20.0087145Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-04-25T04:36:20.0090412Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-04-25T04:36:20.0093850Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0096753Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-04-25T04:36:20.0099898Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-04-25T04:36:20.0102891Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-04-25T04:36:20.0106115Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-04-25T04:36:20.0109100Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-04-25T04:36:20.0112415Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-04-25T04:36:20.0115767Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-04-25T04:36:20.0119184Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0122452Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0125361Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-04-25T04:36:20.0128607Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-04-25T04:36:20.0131493Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-04-25T04:36:20.0134696Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-04-25T04:36:20.0137717Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-04-25T04:36:20.0141355Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-04-25T04:36:20.0144767Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-04-25T04:36:20.0148773Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0152196Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-04-25T04:36:20.0156045Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-04-25T04:36:20.0159406Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-04-25T04:36:20.0162907Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0166857Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0170022Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-04-25T04:36:20.0173241Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-04-25T04:36:20.0176236Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-04-25T04:36:20.0179467Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-04-25T04:36:20.0182480Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-04-25T04:36:20.0185836Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-04-25T04:36:20.0189146Z adding 'torch/include/ATen/ops/split.h' 2025-04-25T04:36:20.0192735Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0195872Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0199032Z adding 'torch/include/ATen/ops/split_copy.h' 2025-04-25T04:36:20.0202384Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0205667Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0208490Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-04-25T04:36:20.0211661Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-04-25T04:36:20.0214700Z adding 'torch/include/ATen/ops/split_native.h' 2025-04-25T04:36:20.0217870Z adding 'torch/include/ATen/ops/split_ops.h' 2025-04-25T04:36:20.0221059Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-04-25T04:36:20.0224603Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0227800Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-04-25T04:36:20.0231157Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0234494Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0237830Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-04-25T04:36:20.0240897Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-04-25T04:36:20.0244127Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-04-25T04:36:20.0247101Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-04-25T04:36:20.0250206Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-04-25T04:36:20.0253230Z adding 'torch/include/ATen/ops/sqrt.h' 2025-04-25T04:36:20.0256465Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0259352Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-04-25T04:36:20.0262530Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-04-25T04:36:20.0265458Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-04-25T04:36:20.0268482Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-04-25T04:36:20.0271523Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-04-25T04:36:20.0274838Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-04-25T04:36:20.0277876Z adding 'torch/include/ATen/ops/square.h' 2025-04-25T04:36:20.0281071Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0283892Z adding 'torch/include/ATen/ops/square_native.h' 2025-04-25T04:36:20.0287070Z adding 'torch/include/ATen/ops/square_ops.h' 2025-04-25T04:36:20.0290166Z adding 'torch/include/ATen/ops/squeeze.h' 2025-04-25T04:36:20.0293550Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0296589Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0299648Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-04-25T04:36:20.0302918Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0306087Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0308895Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-04-25T04:36:20.0312341Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-04-25T04:36:20.0315512Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-04-25T04:36:20.0318948Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-04-25T04:36:20.0322157Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-04-25T04:36:20.0325393Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0328380Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-04-25T04:36:20.0331431Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-04-25T04:36:20.0334455Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-04-25T04:36:20.0337706Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-04-25T04:36:20.0340800Z adding 'torch/include/ATen/ops/stack.h' 2025-04-25T04:36:20.0343991Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0346838Z adding 'torch/include/ATen/ops/stack_native.h' 2025-04-25T04:36:20.0349932Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-04-25T04:36:20.0353389Z adding 'torch/include/ATen/ops/std.h' 2025-04-25T04:36:20.0356826Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0359854Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-04-25T04:36:20.0362924Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-04-25T04:36:20.0366193Z adding 'torch/include/ATen/ops/std_mean.h' 2025-04-25T04:36:20.0369486Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0372595Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0375578Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-04-25T04:36:20.0378616Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-04-25T04:36:20.0381702Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-04-25T04:36:20.0385130Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-04-25T04:36:20.0388311Z adding 'torch/include/ATen/ops/std_native.h' 2025-04-25T04:36:20.0392006Z adding 'torch/include/ATen/ops/std_ops.h' 2025-04-25T04:36:20.0395512Z adding 'torch/include/ATen/ops/stft.h' 2025-04-25T04:36:20.0398861Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0401832Z adding 'torch/include/ATen/ops/stft_native.h' 2025-04-25T04:36:20.0405138Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-04-25T04:36:20.0408192Z adding 'torch/include/ATen/ops/stride.h' 2025-04-25T04:36:20.0411365Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0414192Z adding 'torch/include/ATen/ops/stride_native.h' 2025-04-25T04:36:20.0417302Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-04-25T04:36:20.0420446Z adding 'torch/include/ATen/ops/sub.h' 2025-04-25T04:36:20.0423745Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0426944Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0429773Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-04-25T04:36:20.0432908Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-04-25T04:36:20.0435857Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-04-25T04:36:20.0438909Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-04-25T04:36:20.0441957Z adding 'torch/include/ATen/ops/sub_native.h' 2025-04-25T04:36:20.0445386Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-04-25T04:36:20.0448559Z adding 'torch/include/ATen/ops/subtract.h' 2025-04-25T04:36:20.0451834Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0454676Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-04-25T04:36:20.0457992Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-04-25T04:36:20.0461361Z adding 'torch/include/ATen/ops/sum.h' 2025-04-25T04:36:20.0464775Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0467919Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0470986Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0474088Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-04-25T04:36:20.0477142Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-04-25T04:36:20.0480106Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-04-25T04:36:20.0483192Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-04-25T04:36:20.0486311Z adding 'torch/include/ATen/ops/sum_native.h' 2025-04-25T04:36:20.0489733Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-04-25T04:36:20.0492987Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-04-25T04:36:20.0496574Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0499253Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-04-25T04:36:20.0502313Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-04-25T04:36:20.0505422Z adding 'torch/include/ATen/ops/svd.h' 2025-04-25T04:36:20.0508725Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0511610Z adding 'torch/include/ATen/ops/svd_native.h' 2025-04-25T04:36:20.0514896Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-04-25T04:36:20.0517972Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-04-25T04:36:20.0521245Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0524057Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-04-25T04:36:20.0527165Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-04-25T04:36:20.0530174Z adding 'torch/include/ATen/ops/swapdims.h' 2025-04-25T04:36:20.0533342Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0536196Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-04-25T04:36:20.0539260Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-04-25T04:36:20.0542315Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-04-25T04:36:20.0545561Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0548446Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-04-25T04:36:20.0551637Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0554622Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-04-25T04:36:20.0557721Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-04-25T04:36:20.0560719Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-04-25T04:36:20.0563840Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-04-25T04:36:20.0566784Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-04-25T04:36:20.0570024Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0572928Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-04-25T04:36:20.0575942Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-04-25T04:36:20.0578882Z adding 'torch/include/ATen/ops/sym_size.h' 2025-04-25T04:36:20.0582071Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0584886Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-04-25T04:36:20.0588322Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-04-25T04:36:20.0591377Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-04-25T04:36:20.0594894Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0598094Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-04-25T04:36:20.0621460Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-04-25T04:36:20.0621596Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-04-25T04:36:20.0621887Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0622016Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-04-25T04:36:20.0622137Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-04-25T04:36:20.0622235Z adding 'torch/include/ATen/ops/t.h' 2025-04-25T04:36:20.0622458Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0625641Z adding 'torch/include/ATen/ops/t_copy.h' 2025-04-25T04:36:20.0636807Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0637123Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0637242Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-04-25T04:36:20.0639611Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-04-25T04:36:20.0642718Z adding 'torch/include/ATen/ops/t_native.h' 2025-04-25T04:36:20.0645821Z adding 'torch/include/ATen/ops/t_ops.h' 2025-04-25T04:36:20.0649259Z adding 'torch/include/ATen/ops/take.h' 2025-04-25T04:36:20.0652628Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-04-25T04:36:20.0656263Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0659121Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-04-25T04:36:20.0662594Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-04-25T04:36:20.0666178Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-04-25T04:36:20.0669725Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-04-25T04:36:20.0673333Z adding 'torch/include/ATen/ops/take_native.h' 2025-04-25T04:36:20.0677052Z adding 'torch/include/ATen/ops/take_ops.h' 2025-04-25T04:36:20.0680617Z adding 'torch/include/ATen/ops/tan.h' 2025-04-25T04:36:20.0684431Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0687924Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-04-25T04:36:20.0691408Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-04-25T04:36:20.0694324Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-04-25T04:36:20.0697544Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-04-25T04:36:20.0700618Z adding 'torch/include/ATen/ops/tan_native.h' 2025-04-25T04:36:20.0703925Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-04-25T04:36:20.0706998Z adding 'torch/include/ATen/ops/tanh.h' 2025-04-25T04:36:20.0710278Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-04-25T04:36:20.0713696Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0716783Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-04-25T04:36:20.0719869Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-04-25T04:36:20.0722806Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-04-25T04:36:20.0726042Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-04-25T04:36:20.0729030Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-04-25T04:36:20.0732198Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-04-25T04:36:20.0735414Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0738386Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-04-25T04:36:20.0741577Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-04-25T04:36:20.0744562Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-04-25T04:36:20.0747615Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-04-25T04:36:20.0750661Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-04-25T04:36:20.0753906Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-04-25T04:36:20.0757089Z adding 'torch/include/ATen/ops/tensor.h' 2025-04-25T04:36:20.0760364Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-04-25T04:36:20.0763973Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0766626Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-04-25T04:36:20.0769796Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-04-25T04:36:20.0773040Z adding 'torch/include/ATen/ops/tensordot.h' 2025-04-25T04:36:20.0776305Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0779128Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-04-25T04:36:20.0782318Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-04-25T04:36:20.0785837Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-04-25T04:36:20.0789285Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0792260Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-04-25T04:36:20.0795503Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-04-25T04:36:20.0798950Z adding 'torch/include/ATen/ops/threshold.h' 2025-04-25T04:36:20.0801962Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-04-25T04:36:20.0805278Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0808192Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-04-25T04:36:20.0811251Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-04-25T04:36:20.0814192Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-04-25T04:36:20.0817261Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-04-25T04:36:20.0820288Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-04-25T04:36:20.0823456Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-04-25T04:36:20.0826725Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.0829609Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-04-25T04:36:20.0832765Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-04-25T04:36:20.0835745Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-04-25T04:36:20.0838876Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-04-25T04:36:20.0841767Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-04-25T04:36:20.0844965Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-04-25T04:36:20.0848072Z adding 'torch/include/ATen/ops/tile.h' 2025-04-25T04:36:20.0851523Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0854101Z adding 'torch/include/ATen/ops/tile_native.h' 2025-04-25T04:36:20.0857167Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-04-25T04:36:20.0860079Z adding 'torch/include/ATen/ops/to.h' 2025-04-25T04:36:20.0863339Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0866155Z adding 'torch/include/ATen/ops/to_dense.h' 2025-04-25T04:36:20.0869120Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-04-25T04:36:20.0872383Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0875240Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-04-25T04:36:20.0878343Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-04-25T04:36:20.0881434Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0884584Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-04-25T04:36:20.0887661Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-04-25T04:36:20.0890682Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-04-25T04:36:20.0894361Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-04-25T04:36:20.0897608Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0900409Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-04-25T04:36:20.0903441Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-04-25T04:36:20.0906593Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0909541Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-04-25T04:36:20.0912561Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-04-25T04:36:20.0915723Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-04-25T04:36:20.0918758Z adding 'torch/include/ATen/ops/to_native.h' 2025-04-25T04:36:20.0922147Z adding 'torch/include/ATen/ops/to_ops.h' 2025-04-25T04:36:20.0925565Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-04-25T04:36:20.0928926Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.0931867Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-04-25T04:36:20.0935032Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-04-25T04:36:20.0937955Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-04-25T04:36:20.0940865Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-04-25T04:36:20.0944029Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0946838Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-04-25T04:36:20.0949863Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-04-25T04:36:20.0952819Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-04-25T04:36:20.0956190Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0959125Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-04-25T04:36:20.0962331Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-04-25T04:36:20.0965689Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0968611Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-04-25T04:36:20.0971897Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0974738Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-04-25T04:36:20.0977933Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-04-25T04:36:20.0980868Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-04-25T04:36:20.0984277Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.0987108Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-04-25T04:36:20.0990324Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-04-25T04:36:20.0993502Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-04-25T04:36:20.0996739Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-04-25T04:36:20.1000223Z adding 'torch/include/ATen/ops/topk.h' 2025-04-25T04:36:20.1003647Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1006768Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-04-25T04:36:20.1010017Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-04-25T04:36:20.1013092Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-04-25T04:36:20.1016328Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-04-25T04:36:20.1019373Z adding 'torch/include/ATen/ops/topk_native.h' 2025-04-25T04:36:20.1022993Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-04-25T04:36:20.1025964Z adding 'torch/include/ATen/ops/trace.h' 2025-04-25T04:36:20.1029107Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-04-25T04:36:20.1032860Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1035758Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-04-25T04:36:20.1038930Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-04-25T04:36:20.1042508Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1045621Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-04-25T04:36:20.1048613Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-04-25T04:36:20.1051680Z adding 'torch/include/ATen/ops/trace_native.h' 2025-04-25T04:36:20.1054887Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-04-25T04:36:20.1057926Z adding 'torch/include/ATen/ops/transpose.h' 2025-04-25T04:36:20.1061328Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1064393Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1067444Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-04-25T04:36:20.1070710Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1074089Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1076899Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-04-25T04:36:20.1080366Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-04-25T04:36:20.1083241Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-04-25T04:36:20.1086518Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-04-25T04:36:20.1089713Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-04-25T04:36:20.1092956Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1095905Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-04-25T04:36:20.1099046Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-04-25T04:36:20.1102241Z adding 'torch/include/ATen/ops/trapz.h' 2025-04-25T04:36:20.1105639Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1108568Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-04-25T04:36:20.1111891Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-04-25T04:36:20.1115091Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-04-25T04:36:20.1118614Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1121555Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-04-25T04:36:20.1124833Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-04-25T04:36:20.1127915Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-04-25T04:36:20.1131152Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-04-25T04:36:20.1134270Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-04-25T04:36:20.1137534Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-04-25T04:36:20.1140767Z adding 'torch/include/ATen/ops/tril.h' 2025-04-25T04:36:20.1144092Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1147487Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-04-25T04:36:20.1151063Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-04-25T04:36:20.1154926Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-04-25T04:36:20.1158537Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1161549Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-04-25T04:36:20.1164824Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-04-25T04:36:20.1167934Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-04-25T04:36:20.1171216Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-04-25T04:36:20.1174479Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-04-25T04:36:20.1177484Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-04-25T04:36:20.1180612Z adding 'torch/include/ATen/ops/tril_native.h' 2025-04-25T04:36:20.1183878Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-04-25T04:36:20.1187266Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-04-25T04:36:20.1190663Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1193676Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-04-25T04:36:20.1196819Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-04-25T04:36:20.1199952Z adding 'torch/include/ATen/ops/triu.h' 2025-04-25T04:36:20.1203262Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1206255Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-04-25T04:36:20.1209409Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-04-25T04:36:20.1212604Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-04-25T04:36:20.1215859Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1218817Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-04-25T04:36:20.1221913Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-04-25T04:36:20.1224883Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-04-25T04:36:20.1228076Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-04-25T04:36:20.1231111Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-04-25T04:36:20.1234317Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-04-25T04:36:20.1237467Z adding 'torch/include/ATen/ops/triu_native.h' 2025-04-25T04:36:20.1240598Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-04-25T04:36:20.1243752Z adding 'torch/include/ATen/ops/true_divide.h' 2025-04-25T04:36:20.1247079Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1249907Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-04-25T04:36:20.1253201Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-04-25T04:36:20.1256307Z adding 'torch/include/ATen/ops/trunc.h' 2025-04-25T04:36:20.1259609Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1262508Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-04-25T04:36:20.1265542Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-04-25T04:36:20.1268537Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-04-25T04:36:20.1271553Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-04-25T04:36:20.1274697Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-04-25T04:36:20.1277875Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-04-25T04:36:20.1280808Z adding 'torch/include/ATen/ops/type_as.h' 2025-04-25T04:36:20.1284090Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1286888Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-04-25T04:36:20.1289961Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-04-25T04:36:20.1293097Z adding 'torch/include/ATen/ops/unbind.h' 2025-04-25T04:36:20.1296315Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1299483Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1302401Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-04-25T04:36:20.1305608Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1308739Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1311516Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-04-25T04:36:20.1314788Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-04-25T04:36:20.1317782Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-04-25T04:36:20.1320967Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-04-25T04:36:20.1324130Z adding 'torch/include/ATen/ops/unflatten.h' 2025-04-25T04:36:20.1327423Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1330320Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-04-25T04:36:20.1333569Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1336426Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-04-25T04:36:20.1339513Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-04-25T04:36:20.1342436Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-04-25T04:36:20.1345601Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-04-25T04:36:20.1348518Z adding 'torch/include/ATen/ops/unfold.h' 2025-04-25T04:36:20.1351922Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-04-25T04:36:20.1355326Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1358350Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1361428Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1364360Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-04-25T04:36:20.1367541Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-04-25T04:36:20.1370641Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-04-25T04:36:20.1373863Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1376975Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1379740Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-04-25T04:36:20.1382908Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-04-25T04:36:20.1385987Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-04-25T04:36:20.1388984Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-04-25T04:36:20.1392066Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-04-25T04:36:20.1395086Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-04-25T04:36:20.1398205Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-04-25T04:36:20.1401278Z adding 'torch/include/ATen/ops/uniform.h' 2025-04-25T04:36:20.1404515Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1407477Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-04-25T04:36:20.1410476Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-04-25T04:36:20.1413451Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-04-25T04:36:20.1416419Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-04-25T04:36:20.1419600Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-04-25T04:36:20.1422828Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-04-25T04:36:20.1426144Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1429368Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-04-25T04:36:20.1432580Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-04-25T04:36:20.1435571Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-04-25T04:36:20.1438803Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-04-25T04:36:20.1441985Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-04-25T04:36:20.1445248Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1448314Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-04-25T04:36:20.1451612Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1454605Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-04-25T04:36:20.1457783Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-04-25T04:36:20.1460834Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-04-25T04:36:20.1464014Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-04-25T04:36:20.1467102Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-04-25T04:36:20.1470104Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-04-25T04:36:20.1473186Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-04-25T04:36:20.1476455Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-04-25T04:36:20.1479569Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-04-25T04:36:20.1482769Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1485580Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-04-25T04:36:20.1488636Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-04-25T04:36:20.1491876Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-04-25T04:36:20.1495506Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1498506Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-04-25T04:36:20.1501673Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-04-25T04:36:20.1505083Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-04-25T04:36:20.1508485Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1511387Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-04-25T04:36:20.1514729Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-04-25T04:36:20.1517756Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-04-25T04:36:20.1520984Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1523923Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-04-25T04:36:20.1527144Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1530305Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1533032Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-04-25T04:36:20.1536162Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-04-25T04:36:20.1539139Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-04-25T04:36:20.1542256Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-04-25T04:36:20.1545907Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-04-25T04:36:20.1549703Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-04-25T04:36:20.1553369Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1556472Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1559727Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1562831Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-04-25T04:36:20.1566035Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1569092Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-04-25T04:36:20.1572335Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-04-25T04:36:20.1575634Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1578652Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1581706Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-04-25T04:36:20.1584870Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-04-25T04:36:20.1587882Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-04-25T04:36:20.1591028Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-04-25T04:36:20.1594190Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-04-25T04:36:20.1597733Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-04-25T04:36:20.1601552Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-04-25T04:36:20.1605430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-04-25T04:36:20.1609061Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1612183Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1615463Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1619129Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-04-25T04:36:20.1622460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1625518Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-04-25T04:36:20.1628763Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-04-25T04:36:20.1632104Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1635348Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1638389Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1641452Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-04-25T04:36:20.1644602Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-04-25T04:36:20.1647623Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-04-25T04:36:20.1650805Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-04-25T04:36:20.1653961Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-04-25T04:36:20.1657365Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-04-25T04:36:20.1660986Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-04-25T04:36:20.1664665Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-04-25T04:36:20.1668211Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1671292Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1674617Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1677618Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-04-25T04:36:20.1680803Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1683866Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-04-25T04:36:20.1687087Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-04-25T04:36:20.1690393Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1693473Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1696901Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-04-25T04:36:20.1700214Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-04-25T04:36:20.1703666Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-04-25T04:36:20.1707346Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-04-25T04:36:20.1711052Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-04-25T04:36:20.1714984Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-04-25T04:36:20.1719165Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-04-25T04:36:20.1722568Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-04-25T04:36:20.1726673Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1730179Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1734017Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1737420Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-04-25T04:36:20.1741139Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1744674Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-04-25T04:36:20.1748424Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-04-25T04:36:20.1752368Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1755452Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1758693Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-04-25T04:36:20.1761932Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-04-25T04:36:20.1765089Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-04-25T04:36:20.1768239Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-04-25T04:36:20.1771421Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-04-25T04:36:20.1774723Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-04-25T04:36:20.1778986Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-04-25T04:36:20.1783030Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-04-25T04:36:20.1786578Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1789612Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1793027Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1796083Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-04-25T04:36:20.1799322Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1802381Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-04-25T04:36:20.1805748Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-04-25T04:36:20.1808990Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1812154Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1815186Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1818225Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-04-25T04:36:20.1821404Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-04-25T04:36:20.1824443Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-04-25T04:36:20.1827577Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-04-25T04:36:20.1830689Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-04-25T04:36:20.1834208Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-04-25T04:36:20.1838049Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-04-25T04:36:20.1841852Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-04-25T04:36:20.1845425Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1848485Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1851719Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1854736Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-04-25T04:36:20.1857955Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1860990Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-04-25T04:36:20.1864250Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-04-25T04:36:20.1867670Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1870620Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1873820Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-04-25T04:36:20.1877024Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-04-25T04:36:20.1880313Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-04-25T04:36:20.1883246Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-04-25T04:36:20.1886336Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-04-25T04:36:20.1889629Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-04-25T04:36:20.1893262Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-04-25T04:36:20.1897048Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-04-25T04:36:20.1900633Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1903723Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-04-25T04:36:20.1906971Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-04-25T04:36:20.1910012Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-04-25T04:36:20.1913370Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-04-25T04:36:20.1916453Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-04-25T04:36:20.1919748Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-04-25T04:36:20.1923088Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1926221Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1929316Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-04-25T04:36:20.1932530Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-04-25T04:36:20.1935543Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-04-25T04:36:20.1938760Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-04-25T04:36:20.1941846Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-04-25T04:36:20.1945181Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-04-25T04:36:20.1948539Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-04-25T04:36:20.1951896Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1954838Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-04-25T04:36:20.1957959Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-04-25T04:36:20.1960983Z adding 'torch/include/ATen/ops/values.h' 2025-04-25T04:36:20.1964634Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1967286Z adding 'torch/include/ATen/ops/values_copy.h' 2025-04-25T04:36:20.1970560Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.1974196Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.1977446Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-04-25T04:36:20.1981092Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-04-25T04:36:20.1984674Z adding 'torch/include/ATen/ops/values_native.h' 2025-04-25T04:36:20.1988199Z adding 'torch/include/ATen/ops/values_ops.h' 2025-04-25T04:36:20.1991718Z adding 'torch/include/ATen/ops/vander.h' 2025-04-25T04:36:20.1995613Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.1998568Z adding 'torch/include/ATen/ops/vander_native.h' 2025-04-25T04:36:20.2001803Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-04-25T04:36:20.2005773Z adding 'torch/include/ATen/ops/var.h' 2025-04-25T04:36:20.2009402Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2012449Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-04-25T04:36:20.2015688Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-04-25T04:36:20.2019137Z adding 'torch/include/ATen/ops/var_mean.h' 2025-04-25T04:36:20.2022470Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2025777Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2028788Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-04-25T04:36:20.2032082Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-04-25T04:36:20.2035113Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-04-25T04:36:20.2038638Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-04-25T04:36:20.2041961Z adding 'torch/include/ATen/ops/var_native.h' 2025-04-25T04:36:20.2045631Z adding 'torch/include/ATen/ops/var_ops.h' 2025-04-25T04:36:20.2048860Z adding 'torch/include/ATen/ops/vdot.h' 2025-04-25T04:36:20.2052087Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2054965Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-04-25T04:36:20.2058117Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-04-25T04:36:20.2061074Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-04-25T04:36:20.2064192Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-04-25T04:36:20.2067240Z adding 'torch/include/ATen/ops/view.h' 2025-04-25T04:36:20.2070149Z adding 'torch/include/ATen/ops/view_as.h' 2025-04-25T04:36:20.2073269Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-04-25T04:36:20.2076324Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-04-25T04:36:20.2079545Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2082670Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.2085416Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-04-25T04:36:20.2088679Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-04-25T04:36:20.2091777Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-04-25T04:36:20.2094824Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-04-25T04:36:20.2097844Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-04-25T04:36:20.2100766Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-04-25T04:36:20.2103826Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-04-25T04:36:20.2106974Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2109778Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-04-25T04:36:20.2112938Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-04-25T04:36:20.2116008Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-04-25T04:36:20.2118966Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-04-25T04:36:20.2122159Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2125315Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.2128097Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-04-25T04:36:20.2131180Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-04-25T04:36:20.2134228Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-04-25T04:36:20.2137234Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-04-25T04:36:20.2140178Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-04-25T04:36:20.2143174Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-04-25T04:36:20.2146203Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-04-25T04:36:20.2149970Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2153323Z adding 'torch/include/ATen/ops/view_copy.h' 2025-04-25T04:36:20.2156678Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2159843Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.2162613Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-04-25T04:36:20.2165836Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-04-25T04:36:20.2168953Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-04-25T04:36:20.2171985Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-04-25T04:36:20.2175031Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-04-25T04:36:20.2178027Z adding 'torch/include/ATen/ops/view_native.h' 2025-04-25T04:36:20.2181142Z adding 'torch/include/ATen/ops/view_ops.h' 2025-04-25T04:36:20.2184189Z adding 'torch/include/ATen/ops/vsplit.h' 2025-04-25T04:36:20.2187394Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2190226Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-04-25T04:36:20.2193434Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-04-25T04:36:20.2196520Z adding 'torch/include/ATen/ops/vstack.h' 2025-04-25T04:36:20.2199731Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2202548Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-04-25T04:36:20.2205674Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-04-25T04:36:20.2208865Z adding 'torch/include/ATen/ops/where.h' 2025-04-25T04:36:20.2212130Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2215077Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-04-25T04:36:20.2218115Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-04-25T04:36:20.2221161Z adding 'torch/include/ATen/ops/where_native.h' 2025-04-25T04:36:20.2224538Z adding 'torch/include/ATen/ops/where_ops.h' 2025-04-25T04:36:20.2227833Z adding 'torch/include/ATen/ops/xlogy.h' 2025-04-25T04:36:20.2231155Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2234402Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:36:20.2237286Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-04-25T04:36:20.2240310Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-04-25T04:36:20.2243724Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-04-25T04:36:20.2246928Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-04-25T04:36:20.2250077Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-04-25T04:36:20.2254073Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-04-25T04:36:20.2257755Z adding 'torch/include/ATen/ops/xor.h' 2025-04-25T04:36:20.2261495Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:36:20.2264885Z adding 'torch/include/ATen/ops/xor_native.h' 2025-04-25T04:36:20.2268579Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-04-25T04:36:20.2272260Z adding 'torch/include/ATen/ops/zero.h' 2025-04-25T04:36:20.2276129Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2279427Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-04-25T04:36:20.2282604Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-04-25T04:36:20.2285632Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-04-25T04:36:20.2288768Z adding 'torch/include/ATen/ops/zero_native.h' 2025-04-25T04:36:20.2292023Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-04-25T04:36:20.2295665Z adding 'torch/include/ATen/ops/zeros.h' 2025-04-25T04:36:20.2299373Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2308664Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-04-25T04:36:20.2309178Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:36:20.2312202Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:36:20.2314445Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-04-25T04:36:20.2317517Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-04-25T04:36:20.2320716Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-04-25T04:36:20.2324165Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-04-25T04:36:20.2330569Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-04-25T04:36:20.2335592Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-04-25T04:36:20.2339828Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-04-25T04:36:20.2342732Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-04-25T04:36:20.2345570Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-04-25T04:36:20.2348401Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-04-25T04:36:20.2352526Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-04-25T04:36:20.2355853Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-04-25T04:36:20.2359723Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-04-25T04:36:20.2364152Z adding 'torch/include/asmjit/arm.h' 2025-04-25T04:36:20.2367351Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-04-25T04:36:20.2370201Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-04-25T04:36:20.2373285Z adding 'torch/include/asmjit/asmjit.h' 2025-04-25T04:36:20.2412137Z adding 'torch/include/asmjit/core.h' 2025-04-25T04:36:20.2418642Z adding 'torch/include/asmjit/x86.h' 2025-04-25T04:36:20.2423404Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-04-25T04:36:20.2426348Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-04-25T04:36:20.2430903Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-04-25T04:36:20.2444147Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-04-25T04:36:20.2472236Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-04-25T04:36:20.2478501Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-04-25T04:36:20.2483107Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-04-25T04:36:20.2487801Z adding 'torch/include/asmjit/arm/a64utils.h' 2025-04-25T04:36:20.2491041Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-04-25T04:36:20.2499701Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-04-25T04:36:20.2509002Z adding 'torch/include/asmjit/core/api-config.h' 2025-04-25T04:36:20.2514608Z adding 'torch/include/asmjit/core/archcommons.h' 2025-04-25T04:36:20.2520050Z adding 'torch/include/asmjit/core/archtraits.h' 2025-04-25T04:36:20.2524253Z adding 'torch/include/asmjit/core/assembler.h' 2025-04-25T04:36:20.2539977Z adding 'torch/include/asmjit/core/builder.h' 2025-04-25T04:36:20.2544670Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-04-25T04:36:20.2560570Z adding 'torch/include/asmjit/core/codeholder.h' 2025-04-25T04:36:20.2570887Z adding 'torch/include/asmjit/core/compiler.h' 2025-04-25T04:36:20.2576077Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-04-25T04:36:20.2580786Z adding 'torch/include/asmjit/core/constpool.h' 2025-04-25T04:36:20.2590613Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-04-25T04:36:20.2603641Z adding 'torch/include/asmjit/core/emitter.h' 2025-04-25T04:36:20.2610542Z adding 'torch/include/asmjit/core/environment.h' 2025-04-25T04:36:20.2615727Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-04-25T04:36:20.2620478Z adding 'torch/include/asmjit/core/formatter.h' 2025-04-25T04:36:20.2639617Z adding 'torch/include/asmjit/core/func.h' 2025-04-25T04:36:20.2647468Z adding 'torch/include/asmjit/core/globals.h' 2025-04-25T04:36:20.2659086Z adding 'torch/include/asmjit/core/inst.h' 2025-04-25T04:36:20.2666344Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-04-25T04:36:20.2670146Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-04-25T04:36:20.2675163Z adding 'torch/include/asmjit/core/logger.h' 2025-04-25T04:36:20.2699502Z adding 'torch/include/asmjit/core/operand.h' 2025-04-25T04:36:20.2704353Z adding 'torch/include/asmjit/core/osutils.h' 2025-04-25T04:36:20.2711093Z adding 'torch/include/asmjit/core/string.h' 2025-04-25T04:36:20.2730589Z adding 'torch/include/asmjit/core/support.h' 2025-04-25T04:36:20.2735498Z adding 'torch/include/asmjit/core/target.h' 2025-04-25T04:36:20.2741585Z adding 'torch/include/asmjit/core/type.h' 2025-04-25T04:36:20.2747362Z adding 'torch/include/asmjit/core/virtmem.h' 2025-04-25T04:36:20.2755889Z adding 'torch/include/asmjit/core/zone.h' 2025-04-25T04:36:20.2760466Z adding 'torch/include/asmjit/core/zonehash.h' 2025-04-25T04:36:20.2764706Z adding 'torch/include/asmjit/core/zonelist.h' 2025-04-25T04:36:20.2768948Z adding 'torch/include/asmjit/core/zonestack.h' 2025-04-25T04:36:20.2772782Z adding 'torch/include/asmjit/core/zonestring.h' 2025-04-25T04:36:20.2778252Z adding 'torch/include/asmjit/core/zonetree.h' 2025-04-25T04:36:20.2786444Z adding 'torch/include/asmjit/core/zonevector.h' 2025-04-25T04:36:20.2799194Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-04-25T04:36:20.2806486Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-04-25T04:36:20.2816308Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-04-25T04:36:20.2879708Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-04-25T04:36:20.2917170Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-04-25T04:36:20.2929209Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-04-25T04:36:20.2942756Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-04-25T04:36:20.2953137Z adding 'torch/include/c10/core/Allocator.h' 2025-04-25T04:36:20.2957102Z adding 'torch/include/c10/core/AutogradState.h' 2025-04-25T04:36:20.2971183Z adding 'torch/include/c10/core/Backend.h' 2025-04-25T04:36:20.2971709Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-04-25T04:36:20.2972098Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-04-25T04:36:20.2972578Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-04-25T04:36:20.2976198Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-04-25T04:36:20.2979838Z adding 'torch/include/c10/core/Contiguity.h' 2025-04-25T04:36:20.2983133Z adding 'torch/include/c10/core/CopyBytes.h' 2025-04-25T04:36:20.2986220Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-04-25T04:36:20.2989410Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-04-25T04:36:20.2993994Z adding 'torch/include/c10/core/Device.h' 2025-04-25T04:36:20.2997422Z adding 'torch/include/c10/core/DeviceArray.h' 2025-04-25T04:36:20.3002248Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-04-25T04:36:20.3006499Z adding 'torch/include/c10/core/DeviceType.h' 2025-04-25T04:36:20.3019867Z adding 'torch/include/c10/core/DispatchKey.h' 2025-04-25T04:36:20.3036802Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-04-25T04:36:20.3041947Z adding 'torch/include/c10/core/DynamicCast.h' 2025-04-25T04:36:20.3046129Z adding 'torch/include/c10/core/Event.h' 2025-04-25T04:36:20.3050329Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-04-25T04:36:20.3053843Z adding 'torch/include/c10/core/GradMode.h' 2025-04-25T04:36:20.3057586Z adding 'torch/include/c10/core/InferenceMode.h' 2025-04-25T04:36:20.3061096Z adding 'torch/include/c10/core/Layout.h' 2025-04-25T04:36:20.3066396Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-04-25T04:36:20.3069788Z adding 'torch/include/c10/core/OptionalRef.h' 2025-04-25T04:36:20.3073623Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-04-25T04:36:20.3076939Z adding 'torch/include/c10/core/QEngine.h' 2025-04-25T04:36:20.3080175Z adding 'torch/include/c10/core/QScheme.h' 2025-04-25T04:36:20.3083814Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-04-25T04:36:20.3087632Z adding 'torch/include/c10/core/SafePyObject.h' 2025-04-25T04:36:20.3093900Z adding 'torch/include/c10/core/Scalar.h' 2025-04-25T04:36:20.3102556Z adding 'torch/include/c10/core/ScalarType.h' 2025-04-25T04:36:20.3106563Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-04-25T04:36:20.3110986Z adding 'torch/include/c10/core/Storage.h' 2025-04-25T04:36:20.3117434Z adding 'torch/include/c10/core/StorageImpl.h' 2025-04-25T04:36:20.3122058Z adding 'torch/include/c10/core/Stream.h' 2025-04-25T04:36:20.3126499Z adding 'torch/include/c10/core/StreamGuard.h' 2025-04-25T04:36:20.3130531Z adding 'torch/include/c10/core/SymBool.h' 2025-04-25T04:36:20.3134480Z adding 'torch/include/c10/core/SymFloat.h' 2025-04-25T04:36:20.3141402Z adding 'torch/include/c10/core/SymInt.h' 2025-04-25T04:36:20.3145424Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-04-25T04:36:20.3149483Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-04-25T04:36:20.3153982Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-04-25T04:36:20.3198214Z adding 'torch/include/c10/core/TensorImpl.h' 2025-04-25T04:36:20.3210868Z adding 'torch/include/c10/core/TensorOptions.h' 2025-04-25T04:36:20.3214777Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-04-25T04:36:20.3217941Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-04-25T04:36:20.3220985Z adding 'torch/include/c10/core/alignment.h' 2025-04-25T04:36:20.3224786Z adding 'torch/include/c10/core/thread_pool.h' 2025-04-25T04:36:20.3229074Z adding 'torch/include/c10/core/impl/COW.h' 2025-04-25T04:36:20.3232681Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-04-25T04:36:20.3239215Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-04-25T04:36:20.3243115Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-04-25T04:36:20.3246326Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-04-25T04:36:20.3249922Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-04-25T04:36:20.3256791Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-04-25T04:36:20.3260870Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-04-25T04:36:20.3266159Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-04-25T04:36:20.3270734Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-04-25T04:36:20.3276733Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-04-25T04:36:20.3282174Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-04-25T04:36:20.3285522Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-04-25T04:36:20.3290002Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-04-25T04:36:20.3293924Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-04-25T04:36:20.3297370Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-04-25T04:36:20.3300429Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-04-25T04:36:20.3304512Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-04-25T04:36:20.3308539Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-04-25T04:36:20.3316171Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-04-25T04:36:20.3320653Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-04-25T04:36:20.3325433Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-04-25T04:36:20.3329616Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-04-25T04:36:20.3333579Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-04-25T04:36:20.3337310Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-04-25T04:36:20.3342442Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-04-25T04:36:20.3346128Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-04-25T04:36:20.3349737Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-04-25T04:36:20.3352874Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-04-25T04:36:20.3359777Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-04-25T04:36:20.3363621Z adding 'torch/include/c10/cuda/driver_api.h' 2025-04-25T04:36:20.3369459Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-04-25T04:36:20.3372716Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-04-25T04:36:20.3377866Z adding 'torch/include/c10/macros/Export.h' 2025-04-25T04:36:20.3385358Z adding 'torch/include/c10/macros/Macros.h' 2025-04-25T04:36:20.3388932Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-04-25T04:36:20.3393063Z adding 'torch/include/c10/metal/common.h' 2025-04-25T04:36:20.3398264Z adding 'torch/include/c10/metal/indexing.h' 2025-04-25T04:36:20.3401646Z adding 'torch/include/c10/metal/random.h' 2025-04-25T04:36:20.3405626Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-04-25T04:36:20.3420247Z adding 'torch/include/c10/metal/special_math.h' 2025-04-25T04:36:20.3425060Z adding 'torch/include/c10/metal/utils.h' 2025-04-25T04:36:20.3430231Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-04-25T04:36:20.3434634Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-04-25T04:36:20.3439096Z adding 'torch/include/c10/test/util/Macros.h' 2025-04-25T04:36:20.3444580Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-04-25T04:36:20.3451559Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-04-25T04:36:20.3458221Z adding 'torch/include/c10/util/AbortHandler.h' 2025-04-25T04:36:20.3462464Z adding 'torch/include/c10/util/AlignOf.h' 2025-04-25T04:36:20.3466570Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-04-25T04:36:20.3469612Z adding 'torch/include/c10/util/Array.h' 2025-04-25T04:36:20.3475073Z adding 'torch/include/c10/util/ArrayRef.h' 2025-04-25T04:36:20.3479864Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-04-25T04:36:20.3484672Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-04-25T04:36:20.3488618Z adding 'torch/include/c10/util/BFloat16.h' 2025-04-25T04:36:20.3491783Z adding 'torch/include/c10/util/Backtrace.h' 2025-04-25T04:36:20.3495611Z adding 'torch/include/c10/util/Bitset.h' 2025-04-25T04:36:20.3499222Z adding 'torch/include/c10/util/C++17.h' 2025-04-25T04:36:20.3502765Z adding 'torch/include/c10/util/CallOnce.h' 2025-04-25T04:36:20.3507893Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-04-25T04:36:20.3511674Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-04-25T04:36:20.3515431Z adding 'torch/include/c10/util/Deprecated.h' 2025-04-25T04:36:20.3518647Z adding 'torch/include/c10/util/DimVector.h' 2025-04-25T04:36:20.3522015Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-04-25T04:36:20.3533095Z adding 'torch/include/c10/util/Exception.h' 2025-04-25T04:36:20.3537850Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-04-25T04:36:20.3541587Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-04-25T04:36:20.3544685Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-04-25T04:36:20.3549998Z adding 'torch/include/c10/util/Flags.h' 2025-04-25T04:36:20.3553629Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-04-25T04:36:20.3557828Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-04-25T04:36:20.3563128Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-04-25T04:36:20.3567603Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-04-25T04:36:20.3571735Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-04-25T04:36:20.3575979Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-04-25T04:36:20.3580394Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-04-25T04:36:20.3584692Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-04-25T04:36:20.3588907Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-04-25T04:36:20.3592766Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-04-25T04:36:20.3596680Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-04-25T04:36:20.3600139Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-04-25T04:36:20.3603722Z adding 'torch/include/c10/util/FunctionRef.h' 2025-04-25T04:36:20.3607030Z adding 'torch/include/c10/util/Gauge.h' 2025-04-25T04:36:20.3611570Z adding 'torch/include/c10/util/Half-inl.h' 2025-04-25T04:36:20.3618842Z adding 'torch/include/c10/util/Half.h' 2025-04-25T04:36:20.3622736Z adding 'torch/include/c10/util/IdWrapper.h' 2025-04-25T04:36:20.3626298Z adding 'torch/include/c10/util/Lazy.h' 2025-04-25T04:36:20.3631115Z adding 'torch/include/c10/util/LeftRight.h' 2025-04-25T04:36:20.3634544Z adding 'torch/include/c10/util/Load.h' 2025-04-25T04:36:20.3640429Z adding 'torch/include/c10/util/Logging.h' 2025-04-25T04:36:20.3644883Z adding 'torch/include/c10/util/MathConstants.h' 2025-04-25T04:36:20.3648838Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-04-25T04:36:20.3653441Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-04-25T04:36:20.3656860Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-04-25T04:36:20.3660088Z adding 'torch/include/c10/util/Optional.h' 2025-04-25T04:36:20.3664195Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-04-25T04:36:20.3667348Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-04-25T04:36:20.3672859Z adding 'torch/include/c10/util/Registry.h' 2025-04-25T04:36:20.3676696Z adding 'torch/include/c10/util/ScopeExit.h' 2025-04-25T04:36:20.3680038Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-04-25T04:36:20.3697273Z adding 'torch/include/c10/util/SmallVector.h' 2025-04-25T04:36:20.3702651Z adding 'torch/include/c10/util/StringUtil.h' 2025-04-25T04:36:20.3706168Z adding 'torch/include/c10/util/Synchronized.h' 2025-04-25T04:36:20.3709924Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-04-25T04:36:20.3713650Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-04-25T04:36:20.3716747Z adding 'torch/include/c10/util/Type.h' 2025-04-25T04:36:20.3720719Z adding 'torch/include/c10/util/TypeCast.h' 2025-04-25T04:36:20.3724765Z adding 'torch/include/c10/util/TypeIndex.h' 2025-04-25T04:36:20.3731574Z adding 'torch/include/c10/util/TypeList.h' 2025-04-25T04:36:20.3735691Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-04-25T04:36:20.3739725Z adding 'torch/include/c10/util/TypeTraits.h' 2025-04-25T04:36:20.3742789Z adding 'torch/include/c10/util/Unicode.h' 2025-04-25T04:36:20.3746660Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-04-25T04:36:20.3749818Z adding 'torch/include/c10/util/Unroll.h' 2025-04-25T04:36:20.3753431Z adding 'torch/include/c10/util/WaitCounter.h' 2025-04-25T04:36:20.3756597Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-04-25T04:36:20.3760068Z adding 'torch/include/c10/util/accumulate.h' 2025-04-25T04:36:20.3763342Z adding 'torch/include/c10/util/bit_cast.h' 2025-04-25T04:36:20.3766410Z adding 'torch/include/c10/util/bits.h' 2025-04-25T04:36:20.3773631Z adding 'torch/include/c10/util/complex.h' 2025-04-25T04:36:20.3778762Z adding 'torch/include/c10/util/complex_math.h' 2025-04-25T04:36:20.3782193Z adding 'torch/include/c10/util/complex_utils.h' 2025-04-25T04:36:20.3785285Z adding 'torch/include/c10/util/copysign.h' 2025-04-25T04:36:20.3788320Z adding 'torch/include/c10/util/env.h' 2025-04-25T04:36:20.3791160Z adding 'torch/include/c10/util/error.h' 2025-04-25T04:36:20.3807103Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-04-25T04:36:20.3818777Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-04-25T04:36:20.3822400Z adding 'torch/include/c10/util/generic_math.h' 2025-04-25T04:36:20.3828055Z adding 'torch/include/c10/util/hash.h' 2025-04-25T04:36:20.3834385Z adding 'torch/include/c10/util/int128.h' 2025-04-25T04:36:20.3847410Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-04-25T04:36:20.3852027Z adding 'torch/include/c10/util/irange.h' 2025-04-25T04:36:20.3862699Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-04-25T04:36:20.3867157Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-04-25T04:36:20.3871986Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-04-25T04:36:20.3875284Z adding 'torch/include/c10/util/numa.h' 2025-04-25T04:36:20.3893203Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-04-25T04:36:20.3898376Z adding 'torch/include/c10/util/overflows.h' 2025-04-25T04:36:20.3901497Z adding 'torch/include/c10/util/overloaded.h' 2025-04-25T04:36:20.3904274Z adding 'torch/include/c10/util/python_stub.h' 2025-04-25T04:36:20.3907129Z adding 'torch/include/c10/util/qint32.h' 2025-04-25T04:36:20.3910086Z adding 'torch/include/c10/util/qint8.h' 2025-04-25T04:36:20.3913109Z adding 'torch/include/c10/util/quint2x4.h' 2025-04-25T04:36:20.3915996Z adding 'torch/include/c10/util/quint4x2.h' 2025-04-25T04:36:20.3919334Z adding 'torch/include/c10/util/quint8.h' 2025-04-25T04:36:20.3922217Z adding 'torch/include/c10/util/safe_numerics.h' 2025-04-25T04:36:20.3926008Z adding 'torch/include/c10/util/signal_handler.h' 2025-04-25T04:36:20.3935089Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-04-25T04:36:20.3938993Z adding 'torch/include/c10/util/ssize.h' 2025-04-25T04:36:20.3942147Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-04-25T04:36:20.3946511Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-04-25T04:36:20.3949722Z adding 'torch/include/c10/util/strides.h' 2025-04-25T04:36:20.3952751Z adding 'torch/include/c10/util/string_utils.h' 2025-04-25T04:36:20.3959388Z adding 'torch/include/c10/util/string_view.h' 2025-04-25T04:36:20.3968945Z adding 'torch/include/c10/util/strong_type.h' 2025-04-25T04:36:20.3973491Z adding 'torch/include/c10/util/tempfile.h' 2025-04-25T04:36:20.3976485Z adding 'torch/include/c10/util/thread_name.h' 2025-04-25T04:36:20.3985826Z adding 'torch/include/c10/util/typeid.h' 2025-04-25T04:36:20.3989666Z adding 'torch/include/c10/util/win32-headers.h' 2025-04-25T04:36:20.3993793Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-04-25T04:36:20.3998790Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-04-25T04:36:20.4002235Z adding 'torch/include/c10/xpu/XPUException.h' 2025-04-25T04:36:20.4005392Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-04-25T04:36:20.4008594Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-04-25T04:36:20.4013337Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-04-25T04:36:20.4018795Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-04-25T04:36:20.4023399Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-04-25T04:36:20.4028128Z adding 'torch/include/caffe2/core/common.h' 2025-04-25T04:36:20.4031874Z adding 'torch/include/caffe2/core/macros.h' 2025-04-25T04:36:20.4035289Z adding 'torch/include/caffe2/core/timer.h' 2025-04-25T04:36:20.4040924Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-04-25T04:36:20.4045180Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-04-25T04:36:20.4048777Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-04-25T04:36:20.4088778Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-04-25T04:36:20.4093822Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-04-25T04:36:20.4097086Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-04-25T04:36:20.4102697Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-04-25T04:36:20.4106075Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-04-25T04:36:20.4109247Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-04-25T04:36:20.4114022Z adding 'torch/include/caffe2/serialize/versions.h' 2025-04-25T04:36:20.4118904Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-04-25T04:36:20.4122246Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-04-25T04:36:20.4125488Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-04-25T04:36:20.4129920Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-04-25T04:36:20.4133081Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-04-25T04:36:20.4139233Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-04-25T04:36:20.4143076Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-04-25T04:36:20.4147287Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-04-25T04:36:20.4150530Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-04-25T04:36:20.4156076Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-04-25T04:36:20.4169279Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-04-25T04:36:20.4174267Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-04-25T04:36:20.4178835Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-04-25T04:36:20.4184116Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-04-25T04:36:20.4187840Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-04-25T04:36:20.4192916Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-04-25T04:36:20.4196220Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-04-25T04:36:20.4200045Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-04-25T04:36:20.4203567Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-04-25T04:36:20.4207272Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-04-25T04:36:20.4212106Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-04-25T04:36:20.4217109Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-04-25T04:36:20.4222753Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-04-25T04:36:20.4228797Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-04-25T04:36:20.4234785Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-04-25T04:36:20.4238904Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-04-25T04:36:20.4242078Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-04-25T04:36:20.4245182Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-04-25T04:36:20.4249458Z adding 'torch/include/fbgemm/Types.h' 2025-04-25T04:36:20.4254732Z adding 'torch/include/fbgemm/Utils.h' 2025-04-25T04:36:20.4258525Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-04-25T04:36:20.4261939Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-04-25T04:36:20.4265110Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-04-25T04:36:20.4270639Z adding 'torch/include/fmt/args.h' 2025-04-25T04:36:20.4307985Z adding 'torch/include/fmt/base.h' 2025-04-25T04:36:20.4335337Z adding 'torch/include/fmt/chrono.h' 2025-04-25T04:36:20.4346153Z adding 'torch/include/fmt/color.h' 2025-04-25T04:36:20.4354030Z adding 'torch/include/fmt/compile.h' 2025-04-25T04:36:20.4357572Z adding 'torch/include/fmt/core.h' 2025-04-25T04:36:20.4387849Z adding 'torch/include/fmt/format-inl.h' 2025-04-25T04:36:20.4447863Z adding 'torch/include/fmt/format.h' 2025-04-25T04:36:20.4457880Z adding 'torch/include/fmt/os.h' 2025-04-25T04:36:20.4462508Z adding 'torch/include/fmt/ostream.h' 2025-04-25T04:36:20.4471014Z adding 'torch/include/fmt/printf.h' 2025-04-25T04:36:20.4481114Z adding 'torch/include/fmt/ranges.h' 2025-04-25T04:36:20.4489847Z adding 'torch/include/fmt/std.h' 2025-04-25T04:36:20.4495937Z adding 'torch/include/fmt/xchar.h' 2025-04-25T04:36:20.4500442Z adding 'torch/include/fp16/bitcasts.h' 2025-04-25T04:36:20.4507277Z adding 'torch/include/fp16/fp16.h' 2025-04-25T04:36:20.4511862Z adding 'torch/include/fp16/psimd.h' 2025-04-25T04:36:20.4518857Z adding 'torch/include/google/protobuf/any.h' 2025-04-25T04:36:20.4524846Z adding 'torch/include/google/protobuf/any.pb.h' 2025-04-25T04:36:20.4537223Z adding 'torch/include/google/protobuf/api.pb.h' 2025-04-25T04:36:20.4550597Z adding 'torch/include/google/protobuf/arena.h' 2025-04-25T04:36:20.4558708Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-04-25T04:36:20.4565559Z adding 'torch/include/google/protobuf/arenastring.h' 2025-04-25T04:36:20.4598901Z adding 'torch/include/google/protobuf/descriptor.h' 2025-04-25T04:36:20.4682411Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-04-25T04:36:20.4702247Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-04-25T04:36:20.4707731Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-04-25T04:36:20.4713472Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-04-25T04:36:20.4718306Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-04-25T04:36:20.4743529Z adding 'torch/include/google/protobuf/extension_set.h' 2025-04-25T04:36:20.4750693Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-04-25T04:36:20.4755895Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-04-25T04:36:20.4760242Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-04-25T04:36:20.4764050Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-04-25T04:36:20.4770364Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-04-25T04:36:20.4776858Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-04-25T04:36:20.4782317Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-04-25T04:36:20.4786244Z adding 'torch/include/google/protobuf/has_bits.h' 2025-04-25T04:36:20.4790919Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-04-25T04:36:20.4795877Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-04-25T04:36:20.4813435Z adding 'torch/include/google/protobuf/map.h' 2025-04-25T04:36:20.4819777Z adding 'torch/include/google/protobuf/map_entry.h' 2025-04-25T04:36:20.4829918Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-04-25T04:36:20.4841185Z adding 'torch/include/google/protobuf/map_field.h' 2025-04-25T04:36:20.4848495Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-04-25T04:36:20.4853659Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-04-25T04:36:20.4863530Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-04-25T04:36:20.4887407Z adding 'torch/include/google/protobuf/message.h' 2025-04-25T04:36:20.4899907Z adding 'torch/include/google/protobuf/message_lite.h' 2025-04-25T04:36:20.4904642Z adding 'torch/include/google/protobuf/metadata.h' 2025-04-25T04:36:20.4909840Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-04-25T04:36:20.4921846Z adding 'torch/include/google/protobuf/parse_context.h' 2025-04-25T04:36:20.4926392Z adding 'torch/include/google/protobuf/port.h' 2025-04-25T04:36:20.4935187Z adding 'torch/include/google/protobuf/reflection.h' 2025-04-25T04:36:20.4939741Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-04-25T04:36:20.4974186Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-04-25T04:36:20.4983406Z adding 'torch/include/google/protobuf/service.h' 2025-04-25T04:36:20.4989558Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-04-25T04:36:20.5000603Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-04-25T04:36:20.5012980Z adding 'torch/include/google/protobuf/text_format.h' 2025-04-25T04:36:20.5018620Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-04-25T04:36:20.5038027Z adding 'torch/include/google/protobuf/type.pb.h' 2025-04-25T04:36:20.5046849Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-04-25T04:36:20.5054200Z adding 'torch/include/google/protobuf/wire_format.h' 2025-04-25T04:36:20.5076161Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-04-25T04:36:20.5088424Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-04-25T04:36:20.5096255Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-04-25T04:36:20.5105638Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-04-25T04:36:20.5113157Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-04-25T04:36:20.5124520Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-04-25T04:36:20.5129811Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-04-25T04:36:20.5144844Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-04-25T04:36:20.5152324Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-04-25T04:36:20.5156282Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-04-25T04:36:20.5160399Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-04-25T04:36:20.5165168Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-04-25T04:36:20.5173970Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-04-25T04:36:20.5176429Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-04-25T04:36:20.5180560Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-04-25T04:36:20.5185727Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-04-25T04:36:20.5191572Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-04-25T04:36:20.5197518Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-04-25T04:36:20.5202179Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-04-25T04:36:20.5206790Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-04-25T04:36:20.5235174Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-04-25T04:36:20.5241385Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-04-25T04:36:20.5245857Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-04-25T04:36:20.5253194Z adding 'torch/include/google/protobuf/io/printer.h' 2025-04-25T04:36:20.5257392Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-04-25T04:36:20.5265637Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-04-25T04:36:20.5271692Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-04-25T04:36:20.5277565Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-04-25T04:36:20.5284954Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-04-25T04:36:20.5292115Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-04-25T04:36:20.5297875Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-04-25T04:36:20.5302698Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-04-25T04:36:20.5307681Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-04-25T04:36:20.5312524Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-04-25T04:36:20.5316605Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-04-25T04:36:20.5321902Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-04-25T04:36:20.5326428Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-04-25T04:36:20.5336565Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-04-25T04:36:20.5341640Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-04-25T04:36:20.5345329Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-04-25T04:36:20.5349425Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-04-25T04:36:20.5355328Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-04-25T04:36:20.5359618Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-04-25T04:36:20.5363540Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-04-25T04:36:20.5371409Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-04-25T04:36:20.5385243Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-04-25T04:36:20.5390418Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-04-25T04:36:20.5395731Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-04-25T04:36:20.5401235Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-04-25T04:36:20.5407134Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-04-25T04:36:20.5412220Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-04-25T04:36:20.5430806Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-04-25T04:36:20.5437500Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-04-25T04:36:20.5441690Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-04-25T04:36:20.5445720Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-04-25T04:36:20.5451102Z adding 'torch/include/kineto/AbstractConfig.h' 2025-04-25T04:36:20.5454399Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-04-25T04:36:20.5457613Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-04-25T04:36:20.5461051Z adding 'torch/include/kineto/ActivityType.h' 2025-04-25T04:36:20.5464308Z adding 'torch/include/kineto/ClientInterface.h' 2025-04-25T04:36:20.5470938Z adding 'torch/include/kineto/Config.h' 2025-04-25T04:36:20.5475468Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-04-25T04:36:20.5479847Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-04-25T04:36:20.5483325Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-04-25T04:36:20.5486939Z adding 'torch/include/kineto/ITraceActivity.h' 2025-04-25T04:36:20.5490569Z adding 'torch/include/kineto/LoggingAPI.h' 2025-04-25T04:36:20.5493091Z adding 'torch/include/kineto/ThreadUtil.h' 2025-04-25T04:36:20.5496255Z adding 'torch/include/kineto/TraceSpan.h' 2025-04-25T04:36:20.5500056Z adding 'torch/include/kineto/libkineto.h' 2025-04-25T04:36:20.5503670Z adding 'torch/include/kineto/output_base.h' 2025-04-25T04:36:20.5507372Z adding 'torch/include/kineto/time_since_epoch.h' 2025-04-25T04:36:20.5511124Z adding 'torch/include/mimalloc-1.8/mimalloc-new-delete.h' 2025-04-25T04:36:20.5515000Z adding 'torch/include/mimalloc-1.8/mimalloc-override.h' 2025-04-25T04:36:20.5526436Z adding 'torch/include/mimalloc-1.8/mimalloc.h' 2025-04-25T04:36:20.5565605Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-04-25T04:36:20.5678896Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-04-25T04:36:20.5697613Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-04-25T04:36:20.5704469Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-04-25T04:36:20.5864533Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-04-25T04:36:20.5869011Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-04-25T04:36:20.5872748Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-04-25T04:36:20.5882820Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-04-25T04:36:20.5904603Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-04-25T04:36:20.5910273Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-04-25T04:36:20.5914579Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-04-25T04:36:20.5918363Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-04-25T04:36:20.5922295Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-04-25T04:36:20.5928671Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-04-25T04:36:20.5934238Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-04-25T04:36:20.5940925Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-04-25T04:36:20.5944666Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-04-25T04:36:20.5949088Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-04-25T04:36:20.5955317Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-04-25T04:36:20.5958938Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-04-25T04:36:20.5962648Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-04-25T04:36:20.5966534Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-04-25T04:36:20.5970135Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-04-25T04:36:20.5998278Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-04-25T04:36:20.6005756Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-04-25T04:36:20.6013146Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-04-25T04:36:20.6016465Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-04-25T04:36:20.6019786Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-04-25T04:36:20.6023175Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-04-25T04:36:20.6033090Z adding 'torch/include/pybind11/attr.h' 2025-04-25T04:36:20.6038378Z adding 'torch/include/pybind11/buffer_info.h' 2025-04-25T04:36:20.6062895Z adding 'torch/include/pybind11/cast.h' 2025-04-25T04:36:20.6069073Z adding 'torch/include/pybind11/chrono.h' 2025-04-25T04:36:20.6072318Z adding 'torch/include/pybind11/common.h' 2025-04-25T04:36:20.6075802Z adding 'torch/include/pybind11/complex.h' 2025-04-25T04:36:20.6078889Z adding 'torch/include/pybind11/eigen.h' 2025-04-25T04:36:20.6084841Z adding 'torch/include/pybind11/embed.h' 2025-04-25T04:36:20.6089167Z adding 'torch/include/pybind11/eval.h' 2025-04-25T04:36:20.6093674Z adding 'torch/include/pybind11/functional.h' 2025-04-25T04:36:20.6098472Z adding 'torch/include/pybind11/gil.h' 2025-04-25T04:36:20.6102764Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-04-25T04:36:20.6107905Z adding 'torch/include/pybind11/iostream.h' 2025-04-25T04:36:20.6135624Z adding 'torch/include/pybind11/numpy.h' 2025-04-25T04:36:20.6142442Z adding 'torch/include/pybind11/operators.h' 2025-04-25T04:36:20.6145929Z adding 'torch/include/pybind11/options.h' 2025-04-25T04:36:20.6189273Z adding 'torch/include/pybind11/pybind11.h' 2025-04-25T04:36:20.6223331Z adding 'torch/include/pybind11/pytypes.h' 2025-04-25T04:36:20.6231851Z adding 'torch/include/pybind11/stl.h' 2025-04-25T04:36:20.6241787Z adding 'torch/include/pybind11/stl_bind.h' 2025-04-25T04:36:20.6245955Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-04-25T04:36:20.6249956Z adding 'torch/include/pybind11/typing.h' 2025-04-25T04:36:20.6261912Z adding 'torch/include/pybind11/detail/class.h' 2025-04-25T04:36:20.6281618Z adding 'torch/include/pybind11/detail/common.h' 2025-04-25T04:36:20.6286449Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-04-25T04:36:20.6290575Z adding 'torch/include/pybind11/detail/descr.h' 2025-04-25T04:36:20.6294325Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-04-25T04:36:20.6301354Z adding 'torch/include/pybind11/detail/init.h' 2025-04-25T04:36:20.6313447Z adding 'torch/include/pybind11/detail/internals.h' 2025-04-25T04:36:20.6332167Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-04-25T04:36:20.6336629Z adding 'torch/include/pybind11/detail/typeid.h' 2025-04-25T04:36:20.6340113Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-04-25T04:36:20.6343870Z adding 'torch/include/pybind11/eigen/common.h' 2025-04-25T04:36:20.6355275Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-04-25T04:36:20.6362290Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-04-25T04:36:20.6367372Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-04-25T04:36:20.6376121Z adding 'torch/include/torch/custom_class.h' 2025-04-25T04:36:20.6381492Z adding 'torch/include/torch/custom_class_detail.h' 2025-04-25T04:36:20.6384578Z adding 'torch/include/torch/extension.h' 2025-04-25T04:36:20.6400097Z adding 'torch/include/torch/library.h' 2025-04-25T04:36:20.6404051Z adding 'torch/include/torch/script.h' 2025-04-25T04:36:20.6409483Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-04-25T04:36:20.6412565Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-04-25T04:36:20.6415492Z adding 'torch/include/torch/csrc/Device.h' 2025-04-25T04:36:20.6418374Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-04-25T04:36:20.6421311Z adding 'torch/include/torch/csrc/Dtype.h' 2025-04-25T04:36:20.6424395Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-04-25T04:36:20.6427385Z adding 'torch/include/torch/csrc/Event.h' 2025-04-25T04:36:20.6434081Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-04-25T04:36:20.6437319Z adding 'torch/include/torch/csrc/Export.h' 2025-04-25T04:36:20.6440451Z adding 'torch/include/torch/csrc/Generator.h' 2025-04-25T04:36:20.6443442Z adding 'torch/include/torch/csrc/Layout.h' 2025-04-25T04:36:20.6446506Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-04-25T04:36:20.6449373Z adding 'torch/include/torch/csrc/Module.h' 2025-04-25T04:36:20.6452190Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-04-25T04:36:20.6455140Z adding 'torch/include/torch/csrc/QScheme.h' 2025-04-25T04:36:20.6458059Z adding 'torch/include/torch/csrc/Size.h' 2025-04-25T04:36:20.6461538Z adding 'torch/include/torch/csrc/Storage.h' 2025-04-25T04:36:20.6464201Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-04-25T04:36:20.6466884Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-04-25T04:36:20.6469759Z adding 'torch/include/torch/csrc/Stream.h' 2025-04-25T04:36:20.6472749Z adding 'torch/include/torch/csrc/THConcat.h' 2025-04-25T04:36:20.6475751Z adding 'torch/include/torch/csrc/THP.h' 2025-04-25T04:36:20.6478723Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-04-25T04:36:20.6481511Z adding 'torch/include/torch/csrc/Types.h' 2025-04-25T04:36:20.6484660Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-04-25T04:36:20.6487533Z adding 'torch/include/torch/csrc/itt.h' 2025-04-25T04:36:20.6490391Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-04-25T04:36:20.6493318Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-04-25T04:36:20.6496172Z adding 'torch/include/torch/csrc/python_headers.h' 2025-04-25T04:36:20.6499082Z adding 'torch/include/torch/csrc/serialization.h' 2025-04-25T04:36:20.6503567Z adding 'torch/include/torch/csrc/utils.h' 2025-04-25T04:36:20.6509101Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-04-25T04:36:20.6512372Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-04-25T04:36:20.6515316Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-04-25T04:36:20.6518300Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-04-25T04:36:20.6521210Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-04-25T04:36:20.6525409Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-04-25T04:36:20.6530009Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-04-25T04:36:20.6534640Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-04-25T04:36:20.6538470Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-04-25T04:36:20.6541768Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-04-25T04:36:20.6544981Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-04-25T04:36:20.6548665Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-04-25T04:36:20.6551705Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-04-25T04:36:20.6554772Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-04-25T04:36:20.6561207Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-04-25T04:36:20.6566689Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-04-25T04:36:20.6571038Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-04-25T04:36:20.6574191Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-04-25T04:36:20.6581252Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-04-25T04:36:20.6585202Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-04-25T04:36:20.6588660Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-04-25T04:36:20.6592542Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-04-25T04:36:20.6595763Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-04-25T04:36:20.6598945Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-04-25T04:36:20.6603391Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-04-25T04:36:20.6607024Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-04-25T04:36:20.6610098Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-04-25T04:36:20.6613421Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-04-25T04:36:20.6617518Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-04-25T04:36:20.6620837Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-04-25T04:36:20.6623625Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-04-25T04:36:20.6627001Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-04-25T04:36:20.6633232Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-04-25T04:36:20.6637315Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-04-25T04:36:20.6641215Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-04-25T04:36:20.6645836Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-04-25T04:36:20.6654934Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-04-25T04:36:20.6659429Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-04-25T04:36:20.6662859Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-04-25T04:36:20.6666637Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-04-25T04:36:20.6670261Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-04-25T04:36:20.6673671Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-04-25T04:36:20.6678729Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-04-25T04:36:20.6691863Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-04-25T04:36:20.6692467Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-04-25T04:36:20.6693176Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-04-25T04:36:20.6696061Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-04-25T04:36:20.6699877Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-04-25T04:36:20.6703421Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-04-25T04:36:20.6706697Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-04-25T04:36:20.6709992Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-04-25T04:36:20.6713509Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-04-25T04:36:20.6717837Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-04-25T04:36:20.6721093Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-04-25T04:36:20.6724324Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-04-25T04:36:20.6727824Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-04-25T04:36:20.6731558Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-04-25T04:36:20.6738219Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-04-25T04:36:20.6742213Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-04-25T04:36:20.6746983Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-04-25T04:36:20.6750051Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-04-25T04:36:20.6753911Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-04-25T04:36:20.6763213Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-04-25T04:36:20.6767009Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-04-25T04:36:20.6770002Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-04-25T04:36:20.6773775Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-04-25T04:36:20.6778384Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-04-25T04:36:20.6781466Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-04-25T04:36:20.6790041Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-04-25T04:36:20.6794423Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-04-25T04:36:20.6798523Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-04-25T04:36:20.6802192Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-04-25T04:36:20.6806036Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-04-25T04:36:20.6810359Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-04-25T04:36:20.6813946Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-04-25T04:36:20.6817347Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-04-25T04:36:20.6820421Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-04-25T04:36:20.6827522Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-04-25T04:36:20.6832398Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-04-25T04:36:20.6836129Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-04-25T04:36:20.6839371Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-04-25T04:36:20.6846397Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-04-25T04:36:20.6852027Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-04-25T04:36:20.6856063Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-04-25T04:36:20.6860333Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-04-25T04:36:20.6866860Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-04-25T04:36:20.6871445Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-04-25T04:36:20.6876010Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-04-25T04:36:20.6880152Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-04-25T04:36:20.6885787Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-04-25T04:36:20.6889761Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-04-25T04:36:20.6893713Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-04-25T04:36:20.6898530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-04-25T04:36:20.6902168Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-04-25T04:36:20.6906138Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-04-25T04:36:20.6910270Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-04-25T04:36:20.6917982Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-04-25T04:36:20.6922850Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-04-25T04:36:20.6927662Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-04-25T04:36:20.6931564Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-04-25T04:36:20.6938238Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-04-25T04:36:20.6944118Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-04-25T04:36:20.6948884Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-04-25T04:36:20.6953290Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-04-25T04:36:20.6957676Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-04-25T04:36:20.6961379Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-04-25T04:36:20.6964711Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-04-25T04:36:20.6972468Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-04-25T04:36:20.6976787Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-04-25T04:36:20.6980994Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-04-25T04:36:20.6985365Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-04-25T04:36:20.6990351Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-04-25T04:36:20.6995734Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-04-25T04:36:20.6999637Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-04-25T04:36:20.7003761Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-04-25T04:36:20.7010939Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-04-25T04:36:20.7017810Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-04-25T04:36:20.7025163Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-04-25T04:36:20.7029013Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-04-25T04:36:20.7032570Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-04-25T04:36:20.7037272Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-04-25T04:36:20.7041178Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-04-25T04:36:20.7044625Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-04-25T04:36:20.7049290Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-04-25T04:36:20.7053289Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-04-25T04:36:20.7056982Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-04-25T04:36:20.7060595Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-04-25T04:36:20.7067455Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-04-25T04:36:20.7072457Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-04-25T04:36:20.7076548Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-04-25T04:36:20.7080885Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-04-25T04:36:20.7086297Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-04-25T04:36:20.7090966Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-04-25T04:36:20.7094654Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-04-25T04:36:20.7098325Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-04-25T04:36:20.7102097Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-04-25T04:36:20.7105750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-04-25T04:36:20.7109259Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-04-25T04:36:20.7119529Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-04-25T04:36:20.7124627Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-04-25T04:36:20.7128365Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-04-25T04:36:20.7134555Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-04-25T04:36:20.7139553Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-04-25T04:36:20.7143368Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-04-25T04:36:20.7147145Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-04-25T04:36:20.7150926Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-04-25T04:36:20.7156025Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-04-25T04:36:20.7159851Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-04-25T04:36:20.7165387Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-04-25T04:36:20.7169362Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-04-25T04:36:20.7173642Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-04-25T04:36:20.7177245Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-04-25T04:36:20.7180381Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-04-25T04:36:20.7184702Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-04-25T04:36:20.7188948Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-04-25T04:36:20.7193100Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-04-25T04:36:20.7196942Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-04-25T04:36:20.7199915Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-04-25T04:36:20.7211151Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-04-25T04:36:20.7215163Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-04-25T04:36:20.7221415Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-04-25T04:36:20.7225326Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-04-25T04:36:20.7229575Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-04-25T04:36:20.7233213Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-04-25T04:36:20.7236206Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-04-25T04:36:20.7244984Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-04-25T04:36:20.7248789Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-04-25T04:36:20.7254506Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-04-25T04:36:20.7260230Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-04-25T04:36:20.7273977Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-04-25T04:36:20.7278063Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-04-25T04:36:20.7281011Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-04-25T04:36:20.7286438Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-04-25T04:36:20.7289984Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-04-25T04:36:20.7293569Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-04-25T04:36:20.7297039Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-04-25T04:36:20.7299924Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-04-25T04:36:20.7304770Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-04-25T04:36:20.7310585Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-04-25T04:36:20.7313894Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-04-25T04:36:20.7317072Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-04-25T04:36:20.7320010Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-04-25T04:36:20.7323725Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-04-25T04:36:20.7327198Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-04-25T04:36:20.7330098Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-04-25T04:36:20.7332904Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-04-25T04:36:20.7337134Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-04-25T04:36:20.7340550Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-04-25T04:36:20.7343573Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-04-25T04:36:20.7346446Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-04-25T04:36:20.7349175Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-04-25T04:36:20.7351955Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-04-25T04:36:20.7355178Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-04-25T04:36:20.7357963Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-04-25T04:36:20.7360766Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-04-25T04:36:20.7363729Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-04-25T04:36:20.7367382Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-04-25T04:36:20.7371092Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-04-25T04:36:20.7374278Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-04-25T04:36:20.7378456Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-04-25T04:36:20.7381702Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-04-25T04:36:20.7384479Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-04-25T04:36:20.7400328Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-04-25T04:36:20.7404428Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-04-25T04:36:20.7411900Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-04-25T04:36:20.7415826Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-04-25T04:36:20.7419073Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-04-25T04:36:20.7422026Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-04-25T04:36:20.7426927Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-04-25T04:36:20.7430957Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-04-25T04:36:20.7483027Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-04-25T04:36:20.7497853Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-04-25T04:36:20.7504072Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-04-25T04:36:20.7508154Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-04-25T04:36:20.7511508Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-04-25T04:36:20.7519551Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-04-25T04:36:20.7524714Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-04-25T04:36:20.7528785Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-04-25T04:36:20.7531751Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-04-25T04:36:20.7535012Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-04-25T04:36:20.7537991Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-04-25T04:36:20.7541654Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-04-25T04:36:20.7545440Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-04-25T04:36:20.7550535Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-04-25T04:36:20.7553764Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-04-25T04:36:20.7556611Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-04-25T04:36:20.7559475Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-04-25T04:36:20.7562422Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-04-25T04:36:20.7565200Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-04-25T04:36:20.7568548Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-04-25T04:36:20.7571250Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-04-25T04:36:20.7574252Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-04-25T04:36:20.7578258Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-04-25T04:36:20.7581330Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-04-25T04:36:20.7584265Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-04-25T04:36:20.7588984Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-04-25T04:36:20.7592093Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-04-25T04:36:20.7595576Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-04-25T04:36:20.7600974Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-04-25T04:36:20.7605723Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-04-25T04:36:20.7611515Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-04-25T04:36:20.7615894Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-04-25T04:36:20.7619216Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-04-25T04:36:20.7623249Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-04-25T04:36:20.7626511Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-04-25T04:36:20.7629678Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-04-25T04:36:20.7632972Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-04-25T04:36:20.7636217Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-04-25T04:36:20.7639954Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-04-25T04:36:20.7643586Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-04-25T04:36:20.7647166Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-04-25T04:36:20.7650375Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-04-25T04:36:20.7653588Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-04-25T04:36:20.7660980Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-04-25T04:36:20.7664694Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-04-25T04:36:20.7669977Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h' 2025-04-25T04:36:20.7674140Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2025-04-25T04:36:20.7677434Z adding 'torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp' 2025-04-25T04:36:20.7681516Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-04-25T04:36:20.7685091Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-04-25T04:36:20.7690474Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-04-25T04:36:20.7694105Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-04-25T04:36:20.7698201Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-04-25T04:36:20.7701688Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-04-25T04:36:20.7705578Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-04-25T04:36:20.7713271Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-04-25T04:36:20.7717254Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-04-25T04:36:20.7721986Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-04-25T04:36:20.7725601Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-04-25T04:36:20.7735342Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-04-25T04:36:20.7742643Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-04-25T04:36:20.7747933Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-04-25T04:36:20.7769550Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-04-25T04:36:20.7776307Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-04-25T04:36:20.7780471Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-04-25T04:36:20.7785274Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-04-25T04:36:20.7788969Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-04-25T04:36:20.7792869Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-04-25T04:36:20.7797565Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2025-04-25T04:36:20.7801842Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-04-25T04:36:20.7805534Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-04-25T04:36:20.7810873Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-04-25T04:36:20.7815195Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-04-25T04:36:20.7818848Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-04-25T04:36:20.7823283Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-04-25T04:36:20.7826465Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-04-25T04:36:20.7834822Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-04-25T04:36:20.7838811Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-04-25T04:36:20.7842992Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-04-25T04:36:20.7846094Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-04-25T04:36:20.7850025Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-04-25T04:36:20.7853219Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-04-25T04:36:20.7856807Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-04-25T04:36:20.7860141Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-04-25T04:36:20.7863443Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-04-25T04:36:20.7866985Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2025-04-25T04:36:20.7871316Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-04-25T04:36:20.7874858Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-04-25T04:36:20.7878141Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-04-25T04:36:20.7889253Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-04-25T04:36:20.7893400Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-04-25T04:36:20.7896779Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-04-25T04:36:20.7900210Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-04-25T04:36:20.7903416Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-04-25T04:36:20.7907506Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-04-25T04:36:20.7910761Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-04-25T04:36:20.7914996Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-04-25T04:36:20.7918160Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-04-25T04:36:20.7921712Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-04-25T04:36:20.7925563Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-04-25T04:36:20.7928621Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-04-25T04:36:20.7931933Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-04-25T04:36:20.7936352Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-04-25T04:36:20.7940998Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-04-25T04:36:20.7944954Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-04-25T04:36:20.7948473Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-04-25T04:36:20.7951874Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-04-25T04:36:20.7955166Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-04-25T04:36:20.7958175Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-04-25T04:36:20.7962504Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-04-25T04:36:20.7966010Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-04-25T04:36:20.7969324Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-04-25T04:36:20.7973041Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-04-25T04:36:20.7975967Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-04-25T04:36:20.7982771Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-04-25T04:36:20.7986403Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-04-25T04:36:20.7994453Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-04-25T04:36:20.8002917Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-04-25T04:36:20.8007265Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-04-25T04:36:20.8011048Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-04-25T04:36:20.8014502Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-04-25T04:36:20.8017705Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-04-25T04:36:20.8025628Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-04-25T04:36:20.8030237Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-04-25T04:36:20.8033877Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-04-25T04:36:20.8037206Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-04-25T04:36:20.8040770Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-04-25T04:36:20.8044155Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-04-25T04:36:20.8047884Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-04-25T04:36:20.8052376Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-04-25T04:36:20.8056801Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-04-25T04:36:20.8061310Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-04-25T04:36:20.8066058Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-04-25T04:36:20.8069160Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-04-25T04:36:20.8073900Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-04-25T04:36:20.8091257Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-04-25T04:36:20.8095477Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-04-25T04:36:20.8099340Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-04-25T04:36:20.8102734Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-04-25T04:36:20.8106438Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-04-25T04:36:20.8109797Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-04-25T04:36:20.8113060Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-04-25T04:36:20.8117501Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-04-25T04:36:20.8121415Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-04-25T04:36:20.8125120Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-04-25T04:36:20.8128148Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-04-25T04:36:20.8131220Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-04-25T04:36:20.8134191Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-04-25T04:36:20.8137822Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-04-25T04:36:20.8141410Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-04-25T04:36:20.8144860Z adding 'torch/include/torch/csrc/fx/node.h' 2025-04-25T04:36:20.8149227Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-04-25T04:36:20.8152583Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-04-25T04:36:20.8155546Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-04-25T04:36:20.8160194Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-04-25T04:36:20.8165137Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-04-25T04:36:20.8168975Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-04-25T04:36:20.8172108Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-04-25T04:36:20.8174971Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-04-25T04:36:20.8177931Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-04-25T04:36:20.8180659Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-04-25T04:36:20.8184776Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-04-25T04:36:20.8187767Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-04-25T04:36:20.8192672Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-04-25T04:36:20.8196371Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-04-25T04:36:20.8200010Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-04-25T04:36:20.8203651Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-04-25T04:36:20.8206509Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-04-25T04:36:20.8211831Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-04-25T04:36:20.8215231Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-04-25T04:36:20.8218719Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-04-25T04:36:20.8223466Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-04-25T04:36:20.8227865Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-04-25T04:36:20.8236572Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-04-25T04:36:20.8246482Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-04-25T04:36:20.8250427Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-04-25T04:36:20.8255137Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-04-25T04:36:20.8258970Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-04-25T04:36:20.8263929Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-04-25T04:36:20.8267531Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-04-25T04:36:20.8270802Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-04-25T04:36:20.8274882Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-04-25T04:36:20.8278863Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-04-25T04:36:20.8281994Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-04-25T04:36:20.8285233Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-04-25T04:36:20.8289768Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-04-25T04:36:20.8299503Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-04-25T04:36:20.8304030Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-04-25T04:36:20.8307425Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-04-25T04:36:20.8314981Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-04-25T04:36:20.8322668Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-04-25T04:36:20.8327713Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-04-25T04:36:20.8331667Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-04-25T04:36:20.8335011Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-04-25T04:36:20.8337883Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-04-25T04:36:20.8340657Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-04-25T04:36:20.8343510Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-04-25T04:36:20.8347146Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-04-25T04:36:20.8349934Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-04-25T04:36:20.8352803Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-04-25T04:36:20.8356344Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-04-25T04:36:20.8361004Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-04-25T04:36:20.8364398Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-04-25T04:36:20.8367401Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-04-25T04:36:20.8373988Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-04-25T04:36:20.8378638Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-04-25T04:36:20.8382317Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-04-25T04:36:20.8392040Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-04-25T04:36:20.8397055Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-04-25T04:36:20.8401837Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-04-25T04:36:20.8406684Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-04-25T04:36:20.8410357Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-04-25T04:36:20.8413524Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-04-25T04:36:20.8416998Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-04-25T04:36:20.8419962Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-04-25T04:36:20.8423273Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-04-25T04:36:20.8426346Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-04-25T04:36:20.8429219Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-04-25T04:36:20.8433595Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-04-25T04:36:20.8437482Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-04-25T04:36:20.8440488Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-04-25T04:36:20.8443472Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-04-25T04:36:20.8446540Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-04-25T04:36:20.8449556Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-04-25T04:36:20.8454010Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-04-25T04:36:20.8458000Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-04-25T04:36:20.8462038Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-04-25T04:36:20.8466402Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-04-25T04:36:20.8470983Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-04-25T04:36:20.8475284Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-04-25T04:36:20.8478427Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-04-25T04:36:20.8481805Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-04-25T04:36:20.8484840Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-04-25T04:36:20.8487688Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-04-25T04:36:20.8491228Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-04-25T04:36:20.8494627Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-04-25T04:36:20.8497828Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-04-25T04:36:20.8502312Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-04-25T04:36:20.8505970Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-04-25T04:36:20.8509557Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-04-25T04:36:20.8512738Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-04-25T04:36:20.8516700Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-04-25T04:36:20.8520337Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-04-25T04:36:20.8523973Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-04-25T04:36:20.8528281Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-04-25T04:36:20.8535088Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-04-25T04:36:20.8541105Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-04-25T04:36:20.8544280Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-04-25T04:36:20.8547167Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-04-25T04:36:20.8550339Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-04-25T04:36:20.8553895Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-04-25T04:36:20.8556839Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-04-25T04:36:20.8560059Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-04-25T04:36:20.8563609Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-04-25T04:36:20.8566627Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-04-25T04:36:20.8570285Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-04-25T04:36:20.8573489Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-04-25T04:36:20.8578144Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-04-25T04:36:20.8582423Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-04-25T04:36:20.8585433Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-04-25T04:36:20.8590644Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-04-25T04:36:20.8593960Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-04-25T04:36:20.8596846Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-04-25T04:36:20.8600089Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-04-25T04:36:20.8603024Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-04-25T04:36:20.8606244Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-04-25T04:36:20.8609270Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-04-25T04:36:20.8612225Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-04-25T04:36:20.8620358Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-04-25T04:36:20.8624182Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-04-25T04:36:20.8627266Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-04-25T04:36:20.8630755Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-04-25T04:36:20.8633916Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-04-25T04:36:20.8636908Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-04-25T04:36:20.8640224Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-04-25T04:36:20.8643645Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-04-25T04:36:20.8646910Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-04-25T04:36:20.8650155Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-04-25T04:36:20.8656328Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-04-25T04:36:20.8659969Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-04-25T04:36:20.8662889Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-04-25T04:36:20.8672716Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-04-25T04:36:20.8678892Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-04-25T04:36:20.8683871Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-04-25T04:36:20.8695536Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-04-25T04:36:20.8699669Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-04-25T04:36:20.8707188Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-04-25T04:36:20.8711463Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-04-25T04:36:20.8715416Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-04-25T04:36:20.8719767Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-04-25T04:36:20.8723416Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-04-25T04:36:20.8746844Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-04-25T04:36:20.8752802Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-04-25T04:36:20.8756209Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-04-25T04:36:20.8759734Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-04-25T04:36:20.8762906Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-04-25T04:36:20.8767491Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-04-25T04:36:20.8771726Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-04-25T04:36:20.8774953Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-04-25T04:36:20.8779187Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-04-25T04:36:20.8782602Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-04-25T04:36:20.8787287Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-04-25T04:36:20.8791528Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-04-25T04:36:20.8794950Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-04-25T04:36:20.8798517Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-04-25T04:36:20.8802553Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-04-25T04:36:20.8805856Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-04-25T04:36:20.8808980Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-04-25T04:36:20.8811975Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-04-25T04:36:20.8815035Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-04-25T04:36:20.8819228Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-04-25T04:36:20.8823147Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-04-25T04:36:20.8826325Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-04-25T04:36:20.8829391Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-04-25T04:36:20.8832647Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-04-25T04:36:20.8836520Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-04-25T04:36:20.8839727Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-04-25T04:36:20.8842997Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-04-25T04:36:20.8846355Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-04-25T04:36:20.8849593Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-04-25T04:36:20.8852960Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-04-25T04:36:20.8856802Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-04-25T04:36:20.8860028Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-04-25T04:36:20.8863612Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-04-25T04:36:20.8866879Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-04-25T04:36:20.8870903Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-04-25T04:36:20.8874200Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-04-25T04:36:20.8877428Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-04-25T04:36:20.8881395Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-04-25T04:36:20.8884792Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-04-25T04:36:20.8887840Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-04-25T04:36:20.8890914Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-04-25T04:36:20.8894714Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-04-25T04:36:20.8898882Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-04-25T04:36:20.8902313Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-04-25T04:36:20.8906374Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-04-25T04:36:20.8909661Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-04-25T04:36:20.8912983Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-04-25T04:36:20.8917526Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-04-25T04:36:20.8921618Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-04-25T04:36:20.8924695Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-04-25T04:36:20.8927943Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-04-25T04:36:20.8931069Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-04-25T04:36:20.8936395Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-04-25T04:36:20.8939295Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-04-25T04:36:20.8942141Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-04-25T04:36:20.8945272Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-04-25T04:36:20.8948069Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-04-25T04:36:20.8951050Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-04-25T04:36:20.8954150Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-04-25T04:36:20.8956937Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-04-25T04:36:20.8959830Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-04-25T04:36:20.8962914Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-04-25T04:36:20.8965835Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-04-25T04:36:20.8968662Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-04-25T04:36:20.8971503Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-04-25T04:36:20.8974671Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-04-25T04:36:20.8977705Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-04-25T04:36:20.8980592Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-04-25T04:36:20.8983751Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-04-25T04:36:20.8986589Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-04-25T04:36:20.8989574Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-04-25T04:36:20.8992492Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-04-25T04:36:20.8995482Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-04-25T04:36:20.8998560Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-04-25T04:36:20.9001853Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-04-25T04:36:20.9005672Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-04-25T04:36:20.9009162Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-04-25T04:36:20.9012119Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-04-25T04:36:20.9015094Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-04-25T04:36:20.9018107Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-04-25T04:36:20.9020991Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-04-25T04:36:20.9024029Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-04-25T04:36:20.9026873Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-04-25T04:36:20.9029737Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-04-25T04:36:20.9032687Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-04-25T04:36:20.9035648Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-04-25T04:36:20.9038514Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-04-25T04:36:20.9041791Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-04-25T04:36:20.9045014Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-04-25T04:36:20.9047973Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-04-25T04:36:20.9050866Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-04-25T04:36:20.9053759Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-04-25T04:36:20.9056673Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-04-25T04:36:20.9059546Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-04-25T04:36:20.9062360Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-04-25T04:36:20.9065186Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-04-25T04:36:20.9068056Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-04-25T04:36:20.9070974Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-04-25T04:36:20.9073871Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-04-25T04:36:20.9076812Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-04-25T04:36:20.9079914Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-04-25T04:36:20.9082837Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-04-25T04:36:20.9085866Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-04-25T04:36:20.9088886Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-04-25T04:36:20.9091844Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-04-25T04:36:20.9094851Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-04-25T04:36:20.9097757Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-04-25T04:36:20.9100658Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-04-25T04:36:20.9103931Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-04-25T04:36:20.9106885Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-04-25T04:36:20.9111277Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-04-25T04:36:20.9114632Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-04-25T04:36:20.9117719Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-04-25T04:36:20.9120909Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-04-25T04:36:20.9124308Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-04-25T04:36:20.9127353Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-04-25T04:36:20.9130233Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-04-25T04:36:20.9133535Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-04-25T04:36:20.9136829Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-04-25T04:36:20.9139359Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-04-25T04:36:20.9142496Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-04-25T04:36:20.9145304Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-04-25T04:36:20.9148855Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-04-25T04:36:20.9151930Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-04-25T04:36:20.9155239Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-04-25T04:36:20.9158073Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-04-25T04:36:20.9161369Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-04-25T04:36:20.9164650Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-04-25T04:36:20.9167867Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-04-25T04:36:20.9171824Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-04-25T04:36:20.9175324Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-04-25T04:36:20.9188057Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-04-25T04:36:20.9188433Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-04-25T04:36:20.9188623Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-04-25T04:36:20.9189570Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-04-25T04:36:20.9192969Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-04-25T04:36:20.9196201Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-04-25T04:36:20.9199388Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-04-25T04:36:20.9202914Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-04-25T04:36:20.9207487Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-04-25T04:36:20.9212132Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-04-25T04:36:20.9215747Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-04-25T04:36:20.9220066Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-04-25T04:36:20.9223768Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-04-25T04:36:20.9227003Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-04-25T04:36:20.9229902Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-04-25T04:36:20.9233100Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-04-25T04:36:20.9236672Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-04-25T04:36:20.9239810Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-04-25T04:36:20.9243213Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-04-25T04:36:20.9246341Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-04-25T04:36:20.9249460Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-04-25T04:36:20.9252538Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-04-25T04:36:20.9255425Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-04-25T04:36:20.9258498Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-04-25T04:36:20.9261590Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-04-25T04:36:20.9264459Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-04-25T04:36:20.9267359Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-04-25T04:36:20.9271265Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-04-25T04:36:20.9274494Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-04-25T04:36:20.9278550Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-04-25T04:36:20.9281415Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-04-25T04:36:20.9284876Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-04-25T04:36:20.9288228Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-04-25T04:36:20.9292275Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-04-25T04:36:20.9295784Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-04-25T04:36:20.9298752Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-04-25T04:36:20.9303135Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-04-25T04:36:20.9306799Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-04-25T04:36:20.9310243Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-04-25T04:36:20.9320976Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-04-25T04:36:20.9325257Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-04-25T04:36:20.9328313Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-04-25T04:36:20.9332250Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-04-25T04:36:20.9336720Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-04-25T04:36:20.9340060Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-04-25T04:36:20.9343029Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-04-25T04:36:20.9346492Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-04-25T04:36:20.9350432Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-04-25T04:36:20.9353881Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-04-25T04:36:20.9358379Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-04-25T04:36:20.9374760Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-04-25T04:36:20.9379699Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-04-25T04:36:20.9382831Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-04-25T04:36:20.9386451Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-04-25T04:36:20.9389858Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-04-25T04:36:20.9393848Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-04-25T04:36:20.9398270Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-04-25T04:36:20.9403428Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-04-25T04:36:20.9406866Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-04-25T04:36:20.9409844Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-04-25T04:36:20.9412648Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-04-25T04:36:20.9415538Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-04-25T04:36:20.9418354Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-04-25T04:36:20.9426801Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-04-25T04:36:20.9431161Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-04-25T04:36:20.9435052Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-04-25T04:36:20.9438203Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-04-25T04:36:20.9441366Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-04-25T04:36:20.9444334Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-04-25T04:36:20.9447269Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-04-25T04:36:20.9451312Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-04-25T04:36:20.9455287Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-04-25T04:36:20.9459520Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-04-25T04:36:20.9463892Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-04-25T04:36:20.9468147Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-04-25T04:36:20.9471459Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-04-25T04:36:20.9474579Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-04-25T04:36:20.9478017Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-04-25T04:36:20.9483503Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-04-25T04:36:20.9486767Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-04-25T04:36:20.9489669Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-04-25T04:36:20.9493261Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-04-25T04:36:20.9498310Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-04-25T04:36:20.9508048Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-04-25T04:36:20.9512843Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-04-25T04:36:20.9516154Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-04-25T04:36:20.9519040Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-04-25T04:36:20.9522251Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-04-25T04:36:20.9525341Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-04-25T04:36:20.9528426Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-04-25T04:36:20.9532078Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-04-25T04:36:20.9535270Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-04-25T04:36:20.9538352Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-04-25T04:36:20.9541496Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-04-25T04:36:20.9553914Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-04-25T04:36:20.9564961Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-04-25T04:36:20.9569115Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-04-25T04:36:20.9572456Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-04-25T04:36:20.9577820Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-04-25T04:36:20.9581031Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-04-25T04:36:20.9594917Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-04-25T04:36:20.9598843Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-04-25T04:36:20.9604674Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-04-25T04:36:20.9609152Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-04-25T04:36:20.9613257Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-04-25T04:36:20.9617669Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-04-25T04:36:20.9621310Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-04-25T04:36:20.9624591Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-04-25T04:36:20.9629487Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-04-25T04:36:20.9635270Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-04-25T04:36:20.9639065Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-04-25T04:36:20.9642932Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-04-25T04:36:20.9646026Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-04-25T04:36:20.9649684Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-04-25T04:36:20.9652983Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-04-25T04:36:20.9656118Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-04-25T04:36:20.9659220Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-04-25T04:36:20.9662464Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-04-25T04:36:20.9666217Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-04-25T04:36:20.9686681Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-04-25T04:36:20.9692120Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-04-25T04:36:20.9696092Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-04-25T04:36:20.9703261Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-04-25T04:36:20.9707598Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-04-25T04:36:20.9711840Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-04-25T04:36:20.9715592Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-04-25T04:36:20.9719281Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-04-25T04:36:20.9722502Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-04-25T04:36:20.9727572Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-04-25T04:36:20.9733975Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-04-25T04:36:20.9738342Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-04-25T04:36:20.9742078Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-04-25T04:36:20.9746192Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-04-25T04:36:20.9751369Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-04-25T04:36:20.9755502Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-04-25T04:36:20.9758654Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-04-25T04:36:20.9763294Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-04-25T04:36:20.9767219Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-04-25T04:36:20.9772498Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-04-25T04:36:20.9776307Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-04-25T04:36:20.9782240Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-04-25T04:36:20.9786320Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-04-25T04:36:20.9789462Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-04-25T04:36:20.9793118Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-04-25T04:36:20.9796767Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-04-25T04:36:20.9800975Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-04-25T04:36:20.9805279Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-04-25T04:36:20.9809954Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-04-25T04:36:20.9813218Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-04-25T04:36:20.9821746Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-04-25T04:36:20.9825264Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-04-25T04:36:20.9828543Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-04-25T04:36:20.9832339Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-04-25T04:36:20.9838719Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-04-25T04:36:20.9842311Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-04-25T04:36:20.9845627Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-04-25T04:36:20.9851925Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-04-25T04:36:20.9856101Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-04-25T04:36:20.9859809Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-04-25T04:36:20.9868922Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-04-25T04:36:20.9872756Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-04-25T04:36:20.9876017Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-04-25T04:36:20.9882259Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-04-25T04:36:20.9887291Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-04-25T04:36:20.9894035Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-04-25T04:36:20.9902738Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-04-25T04:36:20.9907987Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-04-25T04:36:20.9911260Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-04-25T04:36:20.9915222Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-04-25T04:36:20.9918880Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-04-25T04:36:20.9922252Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-04-25T04:36:20.9926460Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-04-25T04:36:20.9929553Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-04-25T04:36:20.9933621Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-04-25T04:36:20.9936812Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-04-25T04:36:20.9939819Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-04-25T04:36:20.9943053Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-04-25T04:36:20.9946458Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-04-25T04:36:20.9949630Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-04-25T04:36:20.9952722Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-04-25T04:36:20.9956455Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-04-25T04:36:20.9960092Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-04-25T04:36:20.9963329Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-04-25T04:36:20.9968026Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-04-25T04:36:20.9971822Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-04-25T04:36:20.9976130Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-04-25T04:36:20.9979995Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-04-25T04:36:20.9985067Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-04-25T04:36:20.9988495Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-04-25T04:36:20.9991907Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-04-25T04:36:20.9995261Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-04-25T04:36:20.9999897Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-04-25T04:36:21.0003792Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-04-25T04:36:21.0009071Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-04-25T04:36:21.0013187Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-04-25T04:36:21.0016591Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-04-25T04:36:21.0019884Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-04-25T04:36:21.0023594Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-04-25T04:36:21.0030198Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-04-25T04:36:21.0035693Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-04-25T04:36:21.0039492Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-04-25T04:36:21.0042791Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-04-25T04:36:21.0046363Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-04-25T04:36:21.0051462Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-04-25T04:36:21.0057495Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-04-25T04:36:21.0061354Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-04-25T04:36:21.0064930Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-04-25T04:36:21.0068258Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-04-25T04:36:21.0071761Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-04-25T04:36:21.0075286Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-04-25T04:36:21.0079083Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-04-25T04:36:21.0083307Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-04-25T04:36:21.0087244Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-04-25T04:36:21.0090435Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-04-25T04:36:21.0125869Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-04-25T04:36:21.0138943Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-04-25T04:36:21.0143263Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-04-25T04:36:21.0147042Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-04-25T04:36:21.0150175Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-04-25T04:36:21.0154209Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-04-25T04:36:21.0157904Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-04-25T04:36:21.0161546Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-04-25T04:36:21.0164674Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-04-25T04:36:21.0167853Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-04-25T04:36:21.0171127Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-04-25T04:36:21.0174216Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-04-25T04:36:21.0178363Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-04-25T04:36:21.0182321Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-04-25T04:36:21.0185534Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-04-25T04:36:21.0189648Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-04-25T04:36:21.0193039Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-04-25T04:36:21.0197058Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-04-25T04:36:21.0202852Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-04-25T04:36:21.0207073Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-04-25T04:36:21.0210589Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-04-25T04:36:21.0214812Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-04-25T04:36:21.0218440Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-04-25T04:36:21.0222233Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-04-25T04:36:21.0226034Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-04-25T04:36:21.0229127Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-04-25T04:36:21.0232147Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-04-25T04:36:21.0236239Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-04-25T04:36:21.0244431Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-04-25T04:36:21.0248548Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-04-25T04:36:21.0253161Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-04-25T04:36:21.0257221Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-04-25T04:36:21.0260512Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-04-25T04:36:21.0263518Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-04-25T04:36:21.0267306Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-04-25T04:36:21.0270618Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-04-25T04:36:21.0274335Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-04-25T04:36:21.0279434Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-04-25T04:36:21.0284382Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-04-25T04:36:21.0288146Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-04-25T04:36:21.0291269Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-04-25T04:36:21.0295182Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-04-25T04:36:21.0298430Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-04-25T04:36:21.0301678Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-04-25T04:36:21.0305691Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-04-25T04:36:21.0308583Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-04-25T04:36:21.0311423Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-04-25T04:36:21.0314752Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-04-25T04:36:21.0318659Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-04-25T04:36:21.0322838Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-04-25T04:36:21.0326298Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-04-25T04:36:21.0331089Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-04-25T04:36:21.0334560Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-04-25T04:36:21.0338517Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-04-25T04:36:21.0342146Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-04-25T04:36:21.0345879Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-04-25T04:36:21.0351434Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-04-25T04:36:21.0355907Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-04-25T04:36:21.0361349Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-04-25T04:36:21.0365673Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-04-25T04:36:21.0369241Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-04-25T04:36:21.0373016Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-04-25T04:36:21.0376327Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-04-25T04:36:21.0379546Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-04-25T04:36:21.0382992Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-04-25T04:36:21.0388887Z adding 'torch/include/torch/csrc/stable/library.h' 2025-04-25T04:36:21.0393246Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-04-25T04:36:21.0398284Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-04-25T04:36:21.0401342Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-04-25T04:36:21.0404177Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-04-25T04:36:21.0408258Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-04-25T04:36:21.0411632Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-04-25T04:36:21.0433796Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-04-25T04:36:21.0439268Z adding 'torch/include/torch/csrc/utils/init.h' 2025-04-25T04:36:21.0442242Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-04-25T04:36:21.0445228Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-04-25T04:36:21.0448159Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-04-25T04:36:21.0451517Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-04-25T04:36:21.0454470Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-04-25T04:36:21.0459928Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-04-25T04:36:21.0463337Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-04-25T04:36:21.0466208Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-04-25T04:36:21.0479644Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-04-25T04:36:21.0483799Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-04-25T04:36:21.0486813Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-04-25T04:36:21.0490656Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-04-25T04:36:21.0494585Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-04-25T04:36:21.0498605Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-04-25T04:36:21.0502668Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-04-25T04:36:21.0505599Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-04-25T04:36:21.0509786Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-04-25T04:36:21.0513262Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-04-25T04:36:21.0516524Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-04-25T04:36:21.0529422Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-04-25T04:36:21.0534137Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-04-25T04:36:21.0537492Z adding 'torch/include/torch/csrc/utils/six.h' 2025-04-25T04:36:21.0540376Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-04-25T04:36:21.0543252Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-04-25T04:36:21.0546120Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-04-25T04:36:21.0549628Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-04-25T04:36:21.0552600Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-04-25T04:36:21.0555443Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-04-25T04:36:21.0558352Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-04-25T04:36:21.0561720Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-04-25T04:36:21.0564818Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-04-25T04:36:21.0567739Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-04-25T04:36:21.0570705Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-04-25T04:36:21.0575179Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-04-25T04:36:21.0580002Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-04-25T04:36:21.0583573Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-04-25T04:36:21.0587272Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-04-25T04:36:21.0590219Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-04-25T04:36:21.0594042Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-04-25T04:36:21.0596932Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-04-25T04:36:21.0599857Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-04-25T04:36:21.0606239Z adding 'torch/jit/__init__.py' 2025-04-25T04:36:21.0610347Z adding 'torch/jit/_async.py' 2025-04-25T04:36:21.0613487Z adding 'torch/jit/_await.py' 2025-04-25T04:36:21.0618395Z adding 'torch/jit/_builtins.py' 2025-04-25T04:36:21.0623611Z adding 'torch/jit/_check.py' 2025-04-25T04:36:21.0628517Z adding 'torch/jit/_dataclass_impls.py' 2025-04-25T04:36:21.0631686Z adding 'torch/jit/_decomposition_utils.py' 2025-04-25T04:36:21.0635707Z adding 'torch/jit/_decompositions.py' 2025-04-25T04:36:21.0640933Z adding 'torch/jit/_freeze.py' 2025-04-25T04:36:21.0645557Z adding 'torch/jit/_fuser.py' 2025-04-25T04:36:21.0648829Z adding 'torch/jit/_ir_utils.py' 2025-04-25T04:36:21.0651708Z adding 'torch/jit/_logging.py' 2025-04-25T04:36:21.0656376Z adding 'torch/jit/_monkeytype_config.py' 2025-04-25T04:36:21.0659665Z adding 'torch/jit/_pickle.py' 2025-04-25T04:36:21.0675759Z adding 'torch/jit/_recursive.py' 2025-04-25T04:36:21.0701691Z adding 'torch/jit/_script.py' 2025-04-25T04:36:21.0707935Z adding 'torch/jit/_script.pyi' 2025-04-25T04:36:21.0713390Z adding 'torch/jit/_serialization.py' 2025-04-25T04:36:21.0730090Z adding 'torch/jit/_shape_functions.py' 2025-04-25T04:36:21.0735730Z adding 'torch/jit/_state.py' 2025-04-25T04:36:21.0758986Z adding 'torch/jit/_trace.py' 2025-04-25T04:36:21.0768548Z adding 'torch/jit/annotations.py' 2025-04-25T04:36:21.0785331Z adding 'torch/jit/frontend.py' 2025-04-25T04:36:21.0789623Z adding 'torch/jit/generate_bytecode.py' 2025-04-25T04:36:21.0793176Z adding 'torch/jit/quantized.py' 2025-04-25T04:36:21.0798469Z adding 'torch/jit/supported_ops.py' 2025-04-25T04:36:21.0802150Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-04-25T04:36:21.0805943Z adding 'torch/jit/_passes/__init__.py' 2025-04-25T04:36:21.0809392Z adding 'torch/jit/_passes/_property_propagation.py' 2025-04-25T04:36:21.0814495Z adding 'torch/jit/mobile/__init__.py' 2025-04-25T04:36:21.1734544Z adding 'torch/lib/XNNPACK.lib' 2025-04-25T04:36:21.1803078Z adding 'torch/lib/_C.lib' 2025-04-25T04:36:21.1905428Z adding 'torch/lib/aoti_custom_ops.dll' 2025-04-25T04:36:21.1918259Z adding 'torch/lib/aoti_custom_ops.lib' 2025-04-25T04:36:21.2123025Z adding 'torch/lib/asmjit.dll' 2025-04-25T04:36:21.2155752Z adding 'torch/lib/asmjit.lib' 2025-04-25T04:36:21.2263931Z adding 'torch/lib/backend_with_compiler.dll' 2025-04-25T04:36:21.2277548Z adding 'torch/lib/backend_with_compiler.lib' 2025-04-25T04:36:21.2728876Z adding 'torch/lib/c10.dll' 2025-04-25T04:36:21.2904214Z adding 'torch/lib/c10.lib' 2025-04-25T04:36:21.2968838Z adding 'torch/lib/cpuinfo.lib' 2025-04-25T04:36:37.4037391Z adding 'torch/lib/dnnl.lib' 2025-04-25T04:36:39.1392028Z adding 'torch/lib/fbgemm.dll' 2025-04-25T04:36:39.1680909Z adding 'torch/lib/fbgemm.lib' 2025-04-25T04:36:39.2112685Z adding 'torch/lib/fmt.lib' 2025-04-25T04:36:39.2229038Z adding 'torch/lib/jitbackend_test.dll' 2025-04-25T04:36:39.2241514Z adding 'torch/lib/jitbackend_test.lib' 2025-04-25T04:36:39.7386039Z adding 'torch/lib/kineto.lib' 2025-04-25T04:36:39.9278686Z adding 'torch/lib/libprotobuf-lite.lib' 2025-04-25T04:36:40.7939324Z adding 'torch/lib/libprotobuf.lib' 2025-04-25T04:36:41.7945863Z adding 'torch/lib/libprotoc.lib' 2025-04-25T04:36:41.9793373Z adding 'torch/lib/microkernels-prod.lib' 2025-04-25T04:36:41.9935846Z adding 'torch/lib/pthreadpool.lib' 2025-04-25T04:36:41.9948454Z adding 'torch/lib/shm.dll' 2025-04-25T04:36:41.9953051Z adding 'torch/lib/shm.lib' 2025-04-25T04:36:42.3572483Z adding 'torch/lib/sleef.lib' 2025-04-25T04:36:42.3777335Z adding 'torch/lib/torch.dll' 2025-04-25T04:36:42.3781188Z adding 'torch/lib/torch.lib' 2025-04-25T04:36:48.0874747Z adding 'torch/lib/torch_cpu.dll' 2025-04-25T04:36:48.9017325Z adding 'torch/lib/torch_cpu.lib' 2025-04-25T04:36:48.9671833Z adding 'torch/lib/torch_global_deps.dll' 2025-04-25T04:36:49.6726317Z adding 'torch/lib/torch_python.dll' 2025-04-25T04:36:49.7141569Z adding 'torch/lib/torch_python.lib' 2025-04-25T04:36:49.7358321Z adding 'torch/lib/torchbind_test.dll' 2025-04-25T04:36:49.7378808Z adding 'torch/lib/torchbind_test.lib' 2025-04-25T04:36:49.7383965Z adding 'torch/lib/libshm/alloc_info.h' 2025-04-25T04:36:49.7387390Z adding 'torch/lib/libshm/err.h' 2025-04-25T04:36:49.7390879Z adding 'torch/lib/libshm/libshm.h' 2025-04-25T04:36:49.7394718Z adding 'torch/lib/libshm/socket.h' 2025-04-25T04:36:49.7398885Z adding 'torch/lib/libshm_windows/libshm.h' 2025-04-25T04:36:49.7434329Z adding 'torch/linalg/__init__.py' 2025-04-25T04:36:49.7441039Z adding 'torch/masked/__init__.py' 2025-04-25T04:36:49.7448317Z adding 'torch/masked/_docs.py' 2025-04-25T04:36:49.7470026Z adding 'torch/masked/_ops.py' 2025-04-25T04:36:49.7475745Z adding 'torch/masked/maskedtensor/__init__.py' 2025-04-25T04:36:49.7481755Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-04-25T04:36:49.7487364Z adding 'torch/masked/maskedtensor/binary.py' 2025-04-25T04:36:49.7493538Z adding 'torch/masked/maskedtensor/core.py' 2025-04-25T04:36:49.7496963Z adding 'torch/masked/maskedtensor/creation.py' 2025-04-25T04:36:49.7500201Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-04-25T04:36:49.7504234Z adding 'torch/masked/maskedtensor/reductions.py' 2025-04-25T04:36:49.7508278Z adding 'torch/masked/maskedtensor/unary.py' 2025-04-25T04:36:49.7512546Z adding 'torch/monitor/__init__.py' 2025-04-25T04:36:49.7517601Z adding 'torch/mps/__init__.py' 2025-04-25T04:36:49.7521057Z adding 'torch/mps/event.py' 2025-04-25T04:36:49.7524621Z adding 'torch/mps/profiler.py' 2025-04-25T04:36:49.7531495Z adding 'torch/mtia/__init__.py' 2025-04-25T04:36:49.7535144Z adding 'torch/mtia/_utils.py' 2025-04-25T04:36:49.7538355Z adding 'torch/mtia/memory.py' 2025-04-25T04:36:49.7542826Z adding 'torch/multiprocessing/__init__.py' 2025-04-25T04:36:49.7545957Z adding 'torch/multiprocessing/_atfork.py' 2025-04-25T04:36:49.7549244Z adding 'torch/multiprocessing/pool.py' 2025-04-25T04:36:49.7552630Z adding 'torch/multiprocessing/queue.py' 2025-04-25T04:36:49.7561414Z adding 'torch/multiprocessing/reductions.py' 2025-04-25T04:36:49.7568319Z adding 'torch/multiprocessing/spawn.py' 2025-04-25T04:36:49.7577778Z adding 'torch/nested/__init__.py' 2025-04-25T04:36:49.7582126Z adding 'torch/nested/_internal/__init__.py' 2025-04-25T04:36:49.7585576Z adding 'torch/nested/_internal/nested_int.py' 2025-04-25T04:36:49.7594956Z adding 'torch/nested/_internal/nested_tensor.py' 2025-04-25T04:36:49.7624129Z adding 'torch/nested/_internal/ops.py' 2025-04-25T04:36:49.7638007Z adding 'torch/nested/_internal/sdpa.py' 2025-04-25T04:36:49.7643335Z adding 'torch/nn/__init__.py' 2025-04-25T04:36:49.7646624Z adding 'torch/nn/_reduction.py' 2025-04-25T04:36:49.7649870Z adding 'torch/nn/common_types.py' 2025-04-25T04:36:49.7653411Z adding 'torch/nn/cpp.py' 2025-04-25T04:36:49.7723841Z adding 'torch/nn/functional.py' 2025-04-25T04:36:49.7735147Z adding 'torch/nn/functional.pyi' 2025-04-25T04:36:49.7739603Z adding 'torch/nn/grad.py' 2025-04-25T04:36:49.7747816Z adding 'torch/nn/init.py' 2025-04-25T04:36:49.7753857Z adding 'torch/nn/parameter.py' 2025-04-25T04:36:49.7757286Z adding 'torch/nn/parameter.pyi' 2025-04-25T04:36:49.7762430Z adding 'torch/nn/attention/__init__.py' 2025-04-25T04:36:49.7765974Z adding 'torch/nn/attention/_utils.py' 2025-04-25T04:36:49.7771748Z adding 'torch/nn/attention/bias.py' 2025-04-25T04:36:49.7790702Z adding 'torch/nn/attention/flex_attention.py' 2025-04-25T04:36:49.7795708Z adding 'torch/nn/attention/experimental/__init__.py' 2025-04-25T04:36:49.7801129Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-04-25T04:36:49.7805368Z adding 'torch/nn/backends/__init__.py' 2025-04-25T04:36:49.7808217Z adding 'torch/nn/backends/thnn.py' 2025-04-25T04:36:49.7811968Z adding 'torch/nn/intrinsic/__init__.py' 2025-04-25T04:36:49.7815633Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-04-25T04:36:49.7818569Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-04-25T04:36:49.7822075Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-04-25T04:36:49.7825787Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-04-25T04:36:49.7828856Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-04-25T04:36:49.7831948Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-04-25T04:36:49.7835079Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-04-25T04:36:49.7838647Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-04-25T04:36:49.7842671Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-04-25T04:36:49.7846021Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-04-25T04:36:49.7849091Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-04-25T04:36:49.7852838Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-04-25T04:36:49.7855664Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-04-25T04:36:49.7858546Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-04-25T04:36:49.7861372Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-04-25T04:36:49.7866751Z adding 'torch/nn/modules/__init__.py' 2025-04-25T04:36:49.7872742Z adding 'torch/nn/modules/_functions.py' 2025-04-25T04:36:49.7889905Z adding 'torch/nn/modules/activation.py' 2025-04-25T04:36:49.7897399Z adding 'torch/nn/modules/adaptive.py' 2025-04-25T04:36:49.7907891Z adding 'torch/nn/modules/batchnorm.py' 2025-04-25T04:36:49.7912180Z adding 'torch/nn/modules/channelshuffle.py' 2025-04-25T04:36:49.7924481Z adding 'torch/nn/modules/container.py' 2025-04-25T04:36:49.7943536Z adding 'torch/nn/modules/conv.py' 2025-04-25T04:36:49.7949590Z adding 'torch/nn/modules/distance.py' 2025-04-25T04:36:49.7954621Z adding 'torch/nn/modules/dropout.py' 2025-04-25T04:36:49.7958932Z adding 'torch/nn/modules/flatten.py' 2025-04-25T04:36:49.7964690Z adding 'torch/nn/modules/fold.py' 2025-04-25T04:36:49.7971033Z adding 'torch/nn/modules/instancenorm.py' 2025-04-25T04:36:49.7977482Z adding 'torch/nn/modules/lazy.py' 2025-04-25T04:36:49.7983060Z adding 'torch/nn/modules/linear.py' 2025-04-25T04:36:49.8008552Z adding 'torch/nn/modules/loss.py' 2025-04-25T04:36:49.8050011Z adding 'torch/nn/modules/module.py' 2025-04-25T04:36:49.8058668Z adding 'torch/nn/modules/normalization.py' 2025-04-25T04:36:49.8065127Z adding 'torch/nn/modules/padding.py' 2025-04-25T04:36:49.8069457Z adding 'torch/nn/modules/pixelshuffle.py' 2025-04-25T04:36:49.8081885Z adding 'torch/nn/modules/pooling.py' 2025-04-25T04:36:49.8101095Z adding 'torch/nn/modules/rnn.py' 2025-04-25T04:36:49.8110347Z adding 'torch/nn/modules/sparse.py' 2025-04-25T04:36:49.8124551Z adding 'torch/nn/modules/transformer.py' 2025-04-25T04:36:49.8130973Z adding 'torch/nn/modules/upsampling.py' 2025-04-25T04:36:49.8134820Z adding 'torch/nn/modules/utils.py' 2025-04-25T04:36:49.8138849Z adding 'torch/nn/parallel/__init__.py' 2025-04-25T04:36:49.8143059Z adding 'torch/nn/parallel/_functions.py' 2025-04-25T04:36:49.8148238Z adding 'torch/nn/parallel/comm.py' 2025-04-25T04:36:49.8154434Z adding 'torch/nn/parallel/data_parallel.py' 2025-04-25T04:36:49.8195636Z adding 'torch/nn/parallel/distributed.py' 2025-04-25T04:36:49.8202127Z adding 'torch/nn/parallel/parallel_apply.py' 2025-04-25T04:36:49.8206687Z adding 'torch/nn/parallel/replicate.py' 2025-04-25T04:36:49.8211044Z adding 'torch/nn/parallel/scatter_gather.py' 2025-04-25T04:36:49.8214918Z adding 'torch/nn/qat/__init__.py' 2025-04-25T04:36:49.8218552Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-04-25T04:36:49.8222137Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-04-25T04:36:49.8225111Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-04-25T04:36:49.8228821Z adding 'torch/nn/qat/modules/__init__.py' 2025-04-25T04:36:49.8231878Z adding 'torch/nn/qat/modules/conv.py' 2025-04-25T04:36:49.8234801Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-04-25T04:36:49.8237839Z adding 'torch/nn/qat/modules/linear.py' 2025-04-25T04:36:49.8241447Z adding 'torch/nn/quantizable/__init__.py' 2025-04-25T04:36:49.8245079Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-04-25T04:36:49.8248159Z adding 'torch/nn/quantizable/modules/activation.py' 2025-04-25T04:36:49.8251077Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-04-25T04:36:49.8255002Z adding 'torch/nn/quantized/__init__.py' 2025-04-25T04:36:49.8258078Z adding 'torch/nn/quantized/functional.py' 2025-04-25T04:36:49.8261548Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-04-25T04:36:49.8265485Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-04-25T04:36:49.8268523Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-04-25T04:36:49.8271681Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-04-25T04:36:49.8274761Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-04-25T04:36:49.8277877Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-04-25T04:36:49.8281023Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-04-25T04:36:49.8284540Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-04-25T04:36:49.8288551Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-04-25T04:36:49.8291674Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-04-25T04:36:49.8294765Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-04-25T04:36:49.8297900Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-04-25T04:36:49.8302189Z adding 'torch/nn/quantized/modules/__init__.py' 2025-04-25T04:36:49.8305329Z adding 'torch/nn/quantized/modules/activation.py' 2025-04-25T04:36:49.8308377Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-04-25T04:36:49.8311471Z adding 'torch/nn/quantized/modules/conv.py' 2025-04-25T04:36:49.8314521Z adding 'torch/nn/quantized/modules/dropout.py' 2025-04-25T04:36:49.8317571Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-04-25T04:36:49.8320698Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-04-25T04:36:49.8323660Z adding 'torch/nn/quantized/modules/linear.py' 2025-04-25T04:36:49.8326756Z adding 'torch/nn/quantized/modules/normalization.py' 2025-04-25T04:36:49.8329704Z adding 'torch/nn/quantized/modules/rnn.py' 2025-04-25T04:36:49.8332817Z adding 'torch/nn/quantized/modules/utils.py' 2025-04-25T04:36:49.8336926Z adding 'torch/nn/utils/__init__.py' 2025-04-25T04:36:49.8340304Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-04-25T04:36:49.8345885Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-04-25T04:36:49.8350585Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-04-25T04:36:49.8355993Z adding 'torch/nn/utils/clip_grad.py' 2025-04-25T04:36:49.8360097Z adding 'torch/nn/utils/convert_parameters.py' 2025-04-25T04:36:49.8364367Z adding 'torch/nn/utils/fusion.py' 2025-04-25T04:36:49.8368163Z adding 'torch/nn/utils/init.py' 2025-04-25T04:36:49.8372467Z adding 'torch/nn/utils/memory_format.py' 2025-04-25T04:36:49.8382984Z adding 'torch/nn/utils/parametrizations.py' 2025-04-25T04:36:49.8396907Z adding 'torch/nn/utils/parametrize.py' 2025-04-25T04:36:49.8415341Z adding 'torch/nn/utils/prune.py' 2025-04-25T04:36:49.8425525Z adding 'torch/nn/utils/rnn.py' 2025-04-25T04:36:49.8433660Z adding 'torch/nn/utils/spectral_norm.py' 2025-04-25T04:36:49.8440512Z adding 'torch/nn/utils/stateless.py' 2025-04-25T04:36:49.8445946Z adding 'torch/nn/utils/weight_norm.py' 2025-04-25T04:36:49.8450641Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-04-25T04:36:49.8454205Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-04-25T04:36:49.8460170Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-04-25T04:36:49.8464307Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-04-25T04:36:49.8468685Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-04-25T04:36:49.8473758Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-04-25T04:36:49.8477861Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-04-25T04:36:49.8481840Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-04-25T04:36:49.8485550Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-04-25T04:36:49.8489011Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-04-25T04:36:49.8498778Z adding 'torch/onnx/__init__.py' 2025-04-25T04:36:49.8502493Z adding 'torch/onnx/_constants.py' 2025-04-25T04:36:49.8505506Z adding 'torch/onnx/_experimental.py' 2025-04-25T04:36:49.8508794Z adding 'torch/onnx/_flags.py' 2025-04-25T04:36:49.8512415Z adding 'torch/onnx/_globals.py' 2025-04-25T04:36:49.8516106Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-04-25T04:36:49.8521793Z adding 'torch/onnx/_type_utils.py' 2025-04-25T04:36:49.8525746Z adding 'torch/onnx/errors.py' 2025-04-25T04:36:49.8529010Z adding 'torch/onnx/operators.py' 2025-04-25T04:36:49.8533596Z adding 'torch/onnx/symbolic_caffe2.py' 2025-04-25T04:36:49.8561081Z adding 'torch/onnx/symbolic_helper.py' 2025-04-25T04:36:49.8573095Z adding 'torch/onnx/symbolic_opset10.py' 2025-04-25T04:36:49.8590694Z adding 'torch/onnx/symbolic_opset11.py' 2025-04-25T04:36:49.8598131Z adding 'torch/onnx/symbolic_opset12.py' 2025-04-25T04:36:49.8610726Z adding 'torch/onnx/symbolic_opset13.py' 2025-04-25T04:36:49.8616804Z adding 'torch/onnx/symbolic_opset14.py' 2025-04-25T04:36:49.8620613Z adding 'torch/onnx/symbolic_opset15.py' 2025-04-25T04:36:49.8625105Z adding 'torch/onnx/symbolic_opset16.py' 2025-04-25T04:36:49.8630049Z adding 'torch/onnx/symbolic_opset17.py' 2025-04-25T04:36:49.8634888Z adding 'torch/onnx/symbolic_opset18.py' 2025-04-25T04:36:49.8638121Z adding 'torch/onnx/symbolic_opset19.py' 2025-04-25T04:36:49.8641491Z adding 'torch/onnx/symbolic_opset20.py' 2025-04-25T04:36:49.8644818Z adding 'torch/onnx/symbolic_opset7.py' 2025-04-25T04:36:49.8650803Z adding 'torch/onnx/symbolic_opset8.py' 2025-04-25T04:36:49.8718766Z adding 'torch/onnx/symbolic_opset9.py' 2025-04-25T04:36:49.8752640Z adding 'torch/onnx/utils.py' 2025-04-25T04:36:49.8779125Z adding 'torch/onnx/verification.py' 2025-04-25T04:36:49.8784622Z adding 'torch/onnx/_internal/__init__.py' 2025-04-25T04:36:49.8792847Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-04-25T04:36:49.8796727Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-04-25T04:36:49.8804653Z adding 'torch/onnx/_internal/io_adapter.py' 2025-04-25T04:36:49.8811612Z adding 'torch/onnx/_internal/jit_utils.py' 2025-04-25T04:36:49.8817090Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-04-25T04:36:49.8837234Z adding 'torch/onnx/_internal/onnxruntime.py' 2025-04-25T04:36:49.8844245Z adding 'torch/onnx/_internal/registration.py' 2025-04-25T04:36:49.8848565Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-04-25T04:36:49.8853548Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-04-25T04:36:49.8864887Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-04-25T04:36:49.8871538Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-04-25T04:36:49.8876626Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-04-25T04:36:49.8879851Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-04-25T04:36:49.8902954Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-04-25T04:36:49.8908204Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-04-25T04:36:49.8914700Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-04-25T04:36:49.8921346Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-04-25T04:36:49.8924725Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-04-25T04:36:49.8927995Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-04-25T04:36:49.8931845Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-04-25T04:36:49.8936850Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-04-25T04:36:49.8941100Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-04-25T04:36:49.8949652Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-04-25T04:36:49.8956198Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-04-25T04:36:49.8961163Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-04-25T04:36:49.8969716Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-04-25T04:36:49.8973691Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-04-25T04:36:49.8977430Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-04-25T04:36:49.8983677Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-04-25T04:36:49.8987621Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-04-25T04:36:49.8991054Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-04-25T04:36:49.8994781Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-04-25T04:36:49.8998713Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-04-25T04:36:49.9001961Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-04-25T04:36:49.9005569Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-04-25T04:36:49.9008733Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-04-25T04:36:49.9012686Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-04-25T04:36:49.9016559Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-04-25T04:36:49.9021656Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-04-25T04:36:49.9025990Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2025-04-25T04:36:49.9031396Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2025-04-25T04:36:49.9043534Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2025-04-25T04:36:49.9056994Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2025-04-25T04:36:49.9062843Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-04-25T04:36:49.9067204Z adding 'torch/onnx/_internal/fx/registration.py' 2025-04-25T04:36:49.9075146Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-04-25T04:36:49.9079809Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-04-25T04:36:49.9084345Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-04-25T04:36:49.9088118Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-04-25T04:36:49.9091984Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2025-04-25T04:36:49.9096732Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2025-04-25T04:36:49.9110052Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2025-04-25T04:36:49.9115187Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2025-04-25T04:36:49.9131053Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-04-25T04:36:49.9136356Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2025-04-25T04:36:49.9141844Z adding 'torch/onnx/ops/__init__.py' 2025-04-25T04:36:49.9147118Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-04-25T04:36:49.9151759Z adding 'torch/optim/__init__.py' 2025-04-25T04:36:49.9161255Z adding 'torch/optim/_adafactor.py' 2025-04-25T04:36:49.9165507Z adding 'torch/optim/_functional.py' 2025-04-25T04:36:49.9172037Z adding 'torch/optim/adadelta.py' 2025-04-25T04:36:49.9180068Z adding 'torch/optim/adagrad.py' 2025-04-25T04:36:49.9192852Z adding 'torch/optim/adam.py' 2025-04-25T04:36:49.9200480Z adding 'torch/optim/adamax.py' 2025-04-25T04:36:49.9205400Z adding 'torch/optim/adamw.py' 2025-04-25T04:36:49.9212128Z adding 'torch/optim/asgd.py' 2025-04-25T04:36:49.9219854Z adding 'torch/optim/lbfgs.py' 2025-04-25T04:36:49.9243308Z adding 'torch/optim/lr_scheduler.py' 2025-04-25T04:36:49.9253696Z adding 'torch/optim/nadam.py' 2025-04-25T04:36:49.9271191Z adding 'torch/optim/optimizer.py' 2025-04-25T04:36:49.9280502Z adding 'torch/optim/radam.py' 2025-04-25T04:36:49.9288406Z adding 'torch/optim/rmsprop.py' 2025-04-25T04:36:49.9295647Z adding 'torch/optim/rprop.py' 2025-04-25T04:36:49.9303240Z adding 'torch/optim/sgd.py' 2025-04-25T04:36:49.9308631Z adding 'torch/optim/sparse_adam.py' 2025-04-25T04:36:49.9316645Z adding 'torch/optim/swa_utils.py' 2025-04-25T04:36:49.9321119Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-04-25T04:36:49.9324113Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-04-25T04:36:49.9328067Z adding 'torch/package/__init__.py' 2025-04-25T04:36:49.9332227Z adding 'torch/package/_digraph.py' 2025-04-25T04:36:49.9335798Z adding 'torch/package/_directory_reader.py' 2025-04-25T04:36:49.9339582Z adding 'torch/package/_importlib.py' 2025-04-25T04:36:49.9342973Z adding 'torch/package/_mangling.py' 2025-04-25T04:36:49.9346695Z adding 'torch/package/_mock.py' 2025-04-25T04:36:49.9350855Z adding 'torch/package/_package_pickler.py' 2025-04-25T04:36:49.9354225Z adding 'torch/package/_package_unpickler.py' 2025-04-25T04:36:49.9358205Z adding 'torch/package/_stdlib.py' 2025-04-25T04:36:49.9362554Z adding 'torch/package/file_structure_representation.py' 2025-04-25T04:36:49.9366336Z adding 'torch/package/find_file_dependencies.py' 2025-04-25T04:36:49.9371937Z adding 'torch/package/glob_group.py' 2025-04-25T04:36:49.9382500Z adding 'torch/package/importer.py' 2025-04-25T04:36:49.9400897Z adding 'torch/package/package_exporter.py' 2025-04-25T04:36:49.9414988Z adding 'torch/package/package_importer.py' 2025-04-25T04:36:49.9419512Z adding 'torch/package/analyze/__init__.py' 2025-04-25T04:36:49.9422727Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-04-25T04:36:49.9426082Z adding 'torch/package/analyze/is_from_package.py' 2025-04-25T04:36:49.9429537Z adding 'torch/package/analyze/trace_dependencies.py' 2025-04-25T04:36:49.9434422Z adding 'torch/profiler/__init__.py' 2025-04-25T04:36:49.9453741Z adding 'torch/profiler/_memory_profiler.py' 2025-04-25T04:36:49.9463683Z adding 'torch/profiler/_pattern_matcher.py' 2025-04-25T04:36:49.9470664Z adding 'torch/profiler/_utils.py' 2025-04-25T04:36:49.9474585Z adding 'torch/profiler/itt.py' 2025-04-25T04:36:49.9489854Z adding 'torch/profiler/profiler.py' 2025-04-25T04:36:49.9493922Z adding 'torch/profiler/python_tracer.py' 2025-04-25T04:36:49.9498350Z adding 'torch/quantization/__init__.py' 2025-04-25T04:36:49.9501628Z adding 'torch/quantization/_numeric_suite.py' 2025-04-25T04:36:49.9504692Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-04-25T04:36:49.9508535Z adding 'torch/quantization/_quantized_conversions.py' 2025-04-25T04:36:49.9511711Z adding 'torch/quantization/fake_quantize.py' 2025-04-25T04:36:49.9514727Z adding 'torch/quantization/fuse_modules.py' 2025-04-25T04:36:49.9517663Z adding 'torch/quantization/fuser_method_mappings.py' 2025-04-25T04:36:49.9520623Z adding 'torch/quantization/observer.py' 2025-04-25T04:36:49.9523594Z adding 'torch/quantization/qconfig.py' 2025-04-25T04:36:49.9526472Z adding 'torch/quantization/quant_type.py' 2025-04-25T04:36:49.9529525Z adding 'torch/quantization/quantization_mappings.py' 2025-04-25T04:36:49.9532551Z adding 'torch/quantization/quantize.py' 2025-04-25T04:36:49.9535555Z adding 'torch/quantization/quantize_fx.py' 2025-04-25T04:36:49.9538470Z adding 'torch/quantization/quantize_jit.py' 2025-04-25T04:36:49.9541302Z adding 'torch/quantization/stubs.py' 2025-04-25T04:36:49.9544225Z adding 'torch/quantization/utils.py' 2025-04-25T04:36:49.9548052Z adding 'torch/quantization/fx/__init__.py' 2025-04-25T04:36:49.9551247Z adding 'torch/quantization/fx/_equalize.py' 2025-04-25T04:36:49.9554170Z adding 'torch/quantization/fx/convert.py' 2025-04-25T04:36:49.9556990Z adding 'torch/quantization/fx/fuse.py' 2025-04-25T04:36:49.9559894Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-04-25T04:36:49.9562764Z adding 'torch/quantization/fx/graph_module.py' 2025-04-25T04:36:49.9565666Z adding 'torch/quantization/fx/match_utils.py' 2025-04-25T04:36:49.9568634Z adding 'torch/quantization/fx/pattern_utils.py' 2025-04-25T04:36:49.9571482Z adding 'torch/quantization/fx/prepare.py' 2025-04-25T04:36:49.9574601Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-04-25T04:36:49.9577492Z adding 'torch/quantization/fx/quantization_types.py' 2025-04-25T04:36:49.9580403Z adding 'torch/quantization/fx/utils.py' 2025-04-25T04:36:49.9585070Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-04-25T04:36:49.9589979Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-04-25T04:36:49.9593464Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-04-25T04:36:49.9597422Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-04-25T04:36:49.9610463Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-04-25T04:36:49.9614978Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-04-25T04:36:49.9618482Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-04-25T04:36:49.9622533Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-04-25T04:36:49.9626508Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-04-25T04:36:49.9630035Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-04-25T04:36:49.9634756Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-04-25T04:36:49.9665697Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-04-25T04:36:49.9674534Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-04-25T04:36:49.9678214Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-04-25T04:36:49.9683085Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-04-25T04:36:49.9687081Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-04-25T04:36:49.9692960Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-04-25T04:36:49.9698684Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-04-25T04:36:49.9704546Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-04-25T04:36:49.9710764Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-04-25T04:36:49.9714758Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-04-25T04:36:49.9718319Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-04-25T04:36:49.9721544Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-04-25T04:36:49.9724528Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-04-25T04:36:49.9728093Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-04-25T04:36:49.9736389Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-04-25T04:36:49.9740180Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-04-25T04:36:49.9745007Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-04-25T04:36:49.9748126Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-04-25T04:36:49.9751621Z adding 'torch/signal/__init__.py' 2025-04-25T04:36:49.9755173Z adding 'torch/signal/windows/__init__.py' 2025-04-25T04:36:49.9761952Z adding 'torch/signal/windows/windows.py' 2025-04-25T04:36:49.9772621Z adding 'torch/sparse/__init__.py' 2025-04-25T04:36:49.9779562Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-04-25T04:36:49.9784049Z adding 'torch/sparse/_semi_structured_ops.py' 2025-04-25T04:36:49.9808961Z adding 'torch/sparse/_triton_ops.py' 2025-04-25T04:36:49.9927725Z adding 'torch/sparse/_triton_ops_meta.py' 2025-04-25T04:36:49.9947875Z adding 'torch/sparse/semi_structured.py' 2025-04-25T04:36:49.9957978Z adding 'torch/special/__init__.py' 2025-04-25T04:36:50.0124818Z adding 'torch/test/CppSignature_test.exe' 2025-04-25T04:36:50.0387259Z adding 'torch/test/Dict_test.exe' 2025-04-25T04:36:50.0571698Z adding 'torch/test/Dimname_test.exe' 2025-04-25T04:36:50.0802241Z adding 'torch/test/IListRef_test.exe' 2025-04-25T04:36:50.1041028Z adding 'torch/test/KernelFunction_test.exe' 2025-04-25T04:36:50.1378453Z adding 'torch/test/List_test.exe' 2025-04-25T04:36:50.1631666Z adding 'torch/test/MaybeOwned_test.exe' 2025-04-25T04:36:50.1865345Z adding 'torch/test/NamedTensor_test.exe' 2025-04-25T04:36:50.2071194Z adding 'torch/test/StorageUtils_test.exe' 2025-04-25T04:36:50.2283556Z adding 'torch/test/apply_utils_test.exe' 2025-04-25T04:36:50.2512731Z adding 'torch/test/atest.exe' 2025-04-25T04:36:50.2720412Z adding 'torch/test/backend_fallback_test.exe' 2025-04-25T04:36:50.2966056Z adding 'torch/test/basic.exe' 2025-04-25T04:36:50.3171855Z adding 'torch/test/broadcast_test.exe' 2025-04-25T04:36:50.3338345Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-04-25T04:36:50.3511920Z adding 'torch/test/c10_Bitset_test.exe' 2025-04-25T04:36:50.3669457Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-04-25T04:36:50.3824291Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-04-25T04:36:50.4014172Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-04-25T04:36:50.4190470Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-04-25T04:36:50.4370826Z adding 'torch/test/c10_Device_test.exe' 2025-04-25T04:36:50.4573350Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-04-25T04:36:50.4745592Z adding 'torch/test/c10_Half_test.exe' 2025-04-25T04:36:50.4928525Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-04-25T04:36:50.5123468Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-04-25T04:36:50.5313511Z adding 'torch/test/c10_LeftRight_test.exe' 2025-04-25T04:36:50.5491648Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-04-25T04:36:50.5676527Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-04-25T04:36:50.5855060Z adding 'torch/test/c10_Scalar_test.exe' 2025-04-25T04:36:50.6038471Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-04-25T04:36:50.6197336Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-04-25T04:36:50.6364305Z adding 'torch/test/c10_SymInt_test.exe' 2025-04-25T04:36:50.6534122Z adding 'torch/test/c10_Synchronized_test.exe' 2025-04-25T04:36:50.6717233Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-04-25T04:36:50.6888966Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-04-25T04:36:50.7050021Z adding 'torch/test/c10_TypeList_test.exe' 2025-04-25T04:36:50.7204204Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-04-25T04:36:50.7379735Z adding 'torch/test/c10_accumulate_test.exe' 2025-04-25T04:36:50.7574198Z adding 'torch/test/c10_bfloat16_test.exe' 2025-04-25T04:36:50.7736068Z adding 'torch/test/c10_bit_cast_test.exe' 2025-04-25T04:36:50.7933855Z adding 'torch/test/c10_complex_math_test.exe' 2025-04-25T04:36:50.8123879Z adding 'torch/test/c10_complex_test.exe' 2025-04-25T04:36:50.8317281Z adding 'torch/test/c10_cow_test.exe' 2025-04-25T04:36:50.8484613Z adding 'torch/test/c10_error_test.exe' 2025-04-25T04:36:50.8664446Z adding 'torch/test/c10_exception_test.exe' 2025-04-25T04:36:50.8824758Z adding 'torch/test/c10_flags_test.exe' 2025-04-25T04:36:50.8991273Z adding 'torch/test/c10_generic_math_test.exe' 2025-04-25T04:36:50.9136047Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-04-25T04:36:50.9559678Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-04-25T04:36:50.9744858Z adding 'torch/test/c10_irange_test.exe' 2025-04-25T04:36:50.9922729Z adding 'torch/test/c10_lazy_test.exe' 2025-04-25T04:36:51.0111371Z adding 'torch/test/c10_logging_test.exe' 2025-04-25T04:36:51.0357323Z adding 'torch/test/c10_optional_test.exe' 2025-04-25T04:36:51.0565391Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-04-25T04:36:51.0741888Z adding 'torch/test/c10_registry_test.exe' 2025-04-25T04:36:51.1096222Z adding 'torch/test/c10_small_vector_test.exe' 2025-04-25T04:36:51.1275069Z adding 'torch/test/c10_ssize_test.exe' 2025-04-25T04:36:51.1447961Z adding 'torch/test/c10_string_util_test.exe' 2025-04-25T04:36:51.1604246Z adding 'torch/test/c10_string_view_test.exe' 2025-04-25T04:36:51.1762032Z adding 'torch/test/c10_tempfile_test.exe' 2025-04-25T04:36:51.1944277Z adding 'torch/test/c10_typeid_test.exe' 2025-04-25T04:36:51.2141641Z adding 'torch/test/cpu_allocator_test.exe' 2025-04-25T04:36:51.2362704Z adding 'torch/test/cpu_generator_test.exe' 2025-04-25T04:36:51.2570049Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-04-25T04:36:51.2907422Z adding 'torch/test/cpu_rng_test.exe' 2025-04-25T04:36:51.3108590Z adding 'torch/test/dlconvertor_test.exe' 2025-04-25T04:36:51.3325782Z adding 'torch/test/extension_backend_test.exe' 2025-04-25T04:36:51.3544056Z adding 'torch/test/half_test.exe' 2025-04-25T04:36:51.3786766Z adding 'torch/test/inline_container_test.exe' 2025-04-25T04:36:51.4147263Z adding 'torch/test/ivalue_test.exe' 2025-04-25T04:36:51.4554764Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-04-25T04:36:51.4889985Z adding 'torch/test/kernel_function_test.exe' 2025-04-25T04:36:51.5308569Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-04-25T04:36:51.5660655Z adding 'torch/test/kernel_lambda_test.exe' 2025-04-25T04:36:51.5900392Z adding 'torch/test/kernel_stackbased_test.exe' 2025-04-25T04:36:51.6096151Z adding 'torch/test/lazy_tensor_test.exe' 2025-04-25T04:36:51.6380859Z adding 'torch/test/legacy_vmap_test.exe' 2025-04-25T04:36:51.6718770Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-04-25T04:36:51.6928931Z adding 'torch/test/math_kernel_test.exe' 2025-04-25T04:36:51.7132632Z adding 'torch/test/memory_format_test.exe' 2025-04-25T04:36:51.7333846Z adding 'torch/test/memory_overlapping_test.exe' 2025-04-25T04:36:51.7539412Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-04-25T04:36:51.7763547Z adding 'torch/test/native_test.exe' 2025-04-25T04:36:51.7921428Z adding 'torch/test/op_allowlist_test.exe' 2025-04-25T04:36:51.8715575Z adding 'torch/test/op_registration_test.exe' 2025-04-25T04:36:51.8926847Z adding 'torch/test/operator_name_test.exe' 2025-04-25T04:36:51.9123297Z adding 'torch/test/operators_test.exe' 2025-04-25T04:36:51.9327931Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-04-25T04:36:51.9595442Z adding 'torch/test/pow_test.exe' 2025-04-25T04:36:51.9820969Z adding 'torch/test/quantized_test.exe' 2025-04-25T04:36:52.0025697Z adding 'torch/test/reduce_ops_test.exe' 2025-04-25T04:36:52.0235694Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-04-25T04:36:52.0465442Z adding 'torch/test/scalar_tensor_test.exe' 2025-04-25T04:36:52.0700236Z adding 'torch/test/scalar_test.exe' 2025-04-25T04:36:52.0902067Z adding 'torch/test/stride_properties_test.exe' 2025-04-25T04:36:52.1170942Z adding 'torch/test/tensor_iterator_test.exe' 2025-04-25T04:36:52.1384614Z adding 'torch/test/test_parallel.exe' 2025-04-25T04:36:52.1441937Z adding 'torch/test/thread_init_test.exe' 2025-04-25T04:36:52.1615753Z adding 'torch/test/type_ptr_test.exe' 2025-04-25T04:36:52.1844762Z adding 'torch/test/type_test.exe' 2025-04-25T04:36:52.2053255Z adding 'torch/test/undefined_tensor_test.exe' 2025-04-25T04:36:52.2109903Z adding 'torch/test/verify_api_visibility.exe' 2025-04-25T04:36:52.2309317Z adding 'torch/test/weakref_test.exe' 2025-04-25T04:36:52.2517681Z adding 'torch/test/wrapdim_test.exe' 2025-04-25T04:36:52.2718336Z adding 'torch/test/xla_tensor_test.exe' 2025-04-25T04:36:52.2731394Z adding 'torch/testing/__init__.py' 2025-04-25T04:36:52.2752722Z adding 'torch/testing/_comparison.py' 2025-04-25T04:36:52.2760286Z adding 'torch/testing/_creation.py' 2025-04-25T04:36:52.2764294Z adding 'torch/testing/_utils.py' 2025-04-25T04:36:52.2769636Z adding 'torch/testing/_internal/__init__.py' 2025-04-25T04:36:52.2777375Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-04-25T04:36:52.2783998Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-04-25T04:36:52.2789201Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-04-25T04:36:52.2795480Z adding 'torch/testing/_internal/common_cuda.py' 2025-04-25T04:36:52.2822666Z adding 'torch/testing/_internal/common_device_type.py' 2025-04-25T04:36:52.2828087Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-04-25T04:36:52.2848879Z adding 'torch/testing/_internal/common_distributed.py' 2025-04-25T04:36:52.2854218Z adding 'torch/testing/_internal/common_dtype.py' 2025-04-25T04:36:52.2873313Z adding 'torch/testing/_internal/common_fsdp.py' 2025-04-25T04:36:52.2881784Z adding 'torch/testing/_internal/common_jit.py' 2025-04-25T04:36:52.3122829Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-04-25T04:36:52.3153853Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-04-25T04:36:52.3186595Z adding 'torch/testing/_internal/common_modules.py' 2025-04-25T04:36:52.3225432Z adding 'torch/testing/_internal/common_nn.py' 2025-04-25T04:36:52.3245778Z adding 'torch/testing/_internal/common_optimizers.py' 2025-04-25T04:36:52.3252581Z adding 'torch/testing/_internal/common_pruning.py' 2025-04-25T04:36:52.3283724Z adding 'torch/testing/_internal/common_quantization.py' 2025-04-25T04:36:52.3293577Z adding 'torch/testing/_internal/common_quantized.py' 2025-04-25T04:36:52.3299508Z adding 'torch/testing/_internal/common_subclass.py' 2025-04-25T04:36:52.3385074Z adding 'torch/testing/_internal/common_utils.py' 2025-04-25T04:36:52.3399997Z adding 'torch/testing/_internal/composite_compliance.py' 2025-04-25T04:36:52.3407458Z adding 'torch/testing/_internal/custom_op_db.py' 2025-04-25T04:36:52.3412010Z adding 'torch/testing/_internal/custom_tensor.py' 2025-04-25T04:36:52.3417002Z adding 'torch/testing/_internal/dist_utils.py' 2025-04-25T04:36:52.3421418Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-04-25T04:36:52.3424802Z adding 'torch/testing/_internal/fake_config_module.py' 2025-04-25T04:36:52.3427980Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-04-25T04:36:52.3430868Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-04-25T04:36:52.3435879Z adding 'torch/testing/_internal/hop_db.py' 2025-04-25T04:36:52.3442776Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-04-25T04:36:52.3447794Z adding 'torch/testing/_internal/inductor_utils.py' 2025-04-25T04:36:52.3459025Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-04-25T04:36:52.3472010Z adding 'torch/testing/_internal/jit_utils.py' 2025-04-25T04:36:52.3477657Z adding 'torch/testing/_internal/logging_tensor.py' 2025-04-25T04:36:52.3482746Z adding 'torch/testing/_internal/logging_utils.py' 2025-04-25T04:36:52.3486165Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-04-25T04:36:52.3489243Z adding 'torch/testing/_internal/static_module.py' 2025-04-25T04:36:52.3492834Z adding 'torch/testing/_internal/subclasses.py' 2025-04-25T04:36:52.3497059Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-04-25T04:36:52.3503593Z adding 'torch/testing/_internal/triton_utils.py' 2025-04-25T04:36:52.3508024Z adding 'torch/testing/_internal/two_tensor.py' 2025-04-25T04:36:52.3511966Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-04-25T04:36:52.3515503Z adding 'torch/testing/_internal/data/__init__.py' 2025-04-25T04:36:52.3518519Z adding 'torch/testing/_internal/data/network1.py' 2025-04-25T04:36:52.3521342Z adding 'torch/testing/_internal/data/network2.py' 2025-04-25T04:36:52.3525205Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-04-25T04:36:52.3529430Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-04-25T04:36:52.3534108Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-04-25T04:36:52.3543264Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-04-25T04:36:52.3645022Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-04-25T04:36:52.3658317Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-04-25T04:36:52.3661556Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-04-25T04:36:52.3668729Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-04-25T04:36:52.3673904Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-04-25T04:36:52.3677912Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-04-25T04:36:52.3681128Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-04-25T04:36:52.3685603Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-04-25T04:36:52.3689510Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-04-25T04:36:52.3692940Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-04-25T04:36:52.3696515Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-04-25T04:36:52.3704806Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-04-25T04:36:52.3708889Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-04-25T04:36:52.3712574Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-04-25T04:36:52.3720001Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-04-25T04:36:52.3724410Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-04-25T04:36:52.3752256Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-04-25T04:36:52.3759338Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-04-25T04:36:52.3764939Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-04-25T04:36:52.3768831Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-04-25T04:36:52.3772253Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-04-25T04:36:52.3830317Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-04-25T04:36:52.3838976Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-04-25T04:36:52.3842576Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-04-25T04:36:52.3846639Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-04-25T04:36:52.3851949Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-04-25T04:36:52.3855736Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-04-25T04:36:52.3859514Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-04-25T04:36:52.3873763Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-04-25T04:36:52.3879229Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-04-25T04:36:52.3882994Z adding 'torch/testing/_internal/generated/__init__.py' 2025-04-25T04:36:52.3932536Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-04-25T04:36:52.3948338Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-04-25T04:36:52.3990690Z adding 'torch/testing/_internal/opinfo/core.py' 2025-04-25T04:36:52.3998059Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-04-25T04:36:52.4003687Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-04-25T04:36:52.4007975Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-04-25T04:36:52.4017379Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-04-25T04:36:52.4024738Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-04-25T04:36:52.4045450Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-04-25T04:36:52.4064598Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-04-25T04:36:52.4071508Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-04-25T04:36:52.4081793Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-04-25T04:36:52.4089806Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-04-25T04:36:52.4094963Z adding 'torch/testing/_internal/optests/__init__.py' 2025-04-25T04:36:52.4099808Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-04-25T04:36:52.4104571Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-04-25T04:36:52.4107766Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-04-25T04:36:52.4120104Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-04-25T04:36:52.4124834Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-04-25T04:36:52.4128579Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-04-25T04:36:52.4131421Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-04-25T04:36:52.4134391Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-04-25T04:36:52.4139908Z adding 'torch/utils/__init__.py' 2025-04-25T04:36:52.4143627Z adding 'torch/utils/_appending_byte_serializer.py' 2025-04-25T04:36:52.4147768Z adding 'torch/utils/_backport_slots.py' 2025-04-25T04:36:52.4159237Z adding 'torch/utils/_config_module.py' 2025-04-25T04:36:52.4163213Z adding 'torch/utils/_config_typing.pyi' 2025-04-25T04:36:52.4169264Z adding 'torch/utils/_content_store.py' 2025-04-25T04:36:52.4173247Z adding 'torch/utils/_contextlib.py' 2025-04-25T04:36:52.4176702Z adding 'torch/utils/_cpp_embed_headers.py' 2025-04-25T04:36:52.4180013Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-04-25T04:36:52.4191363Z adding 'torch/utils/_cxx_pytree.py' 2025-04-25T04:36:52.4196070Z adding 'torch/utils/_device.py' 2025-04-25T04:36:52.4199328Z adding 'torch/utils/_exposed_in.py' 2025-04-25T04:36:52.4202532Z adding 'torch/utils/_filelock.py' 2025-04-25T04:36:52.4206012Z adding 'torch/utils/_foreach_utils.py' 2025-04-25T04:36:52.4211566Z adding 'torch/utils/_freeze.py' 2025-04-25T04:36:52.4220989Z adding 'torch/utils/_functools.py' 2025-04-25T04:36:52.4221350Z adding 'torch/utils/_get_clean_triton.py' 2025-04-25T04:36:52.4222821Z adding 'torch/utils/_import_utils.py' 2025-04-25T04:36:52.4225656Z adding 'torch/utils/_mode_utils.py' 2025-04-25T04:36:52.4229606Z adding 'torch/utils/_ordered_set.py' 2025-04-25T04:36:52.4242899Z adding 'torch/utils/_python_dispatch.py' 2025-04-25T04:36:52.4266939Z adding 'torch/utils/_pytree.py' 2025-04-25T04:36:52.4271693Z adding 'torch/utils/_stats.py' 2025-04-25T04:36:52.4274699Z adding 'torch/utils/_thunk.py' 2025-04-25T04:36:52.4280373Z adding 'torch/utils/_traceback.py' 2025-04-25T04:36:52.4284190Z adding 'torch/utils/_triton.py' 2025-04-25T04:36:52.4287223Z adding 'torch/utils/_typing_utils.py' 2025-04-25T04:36:52.4290685Z adding 'torch/utils/_zip.py' 2025-04-25T04:36:52.4298207Z adding 'torch/utils/backend_registration.py' 2025-04-25T04:36:52.4306908Z adding 'torch/utils/bundled_inputs.py' 2025-04-25T04:36:52.4333724Z adding 'torch/utils/checkpoint.py' 2025-04-25T04:36:52.4344670Z adding 'torch/utils/collect_env.py' 2025-04-25T04:36:52.4348332Z adding 'torch/utils/cpp_backtrace.py' 2025-04-25T04:36:52.4393114Z adding 'torch/utils/cpp_extension.py' 2025-04-25T04:36:52.4399304Z adding 'torch/utils/deterministic.py' 2025-04-25T04:36:52.4403600Z adding 'torch/utils/dlpack.py' 2025-04-25T04:36:52.4407156Z adding 'torch/utils/file_baton.py' 2025-04-25T04:36:52.4417949Z adding 'torch/utils/flop_counter.py' 2025-04-25T04:36:52.4424044Z adding 'torch/utils/hooks.py' 2025-04-25T04:36:52.4428491Z adding 'torch/utils/mkldnn.py' 2025-04-25T04:36:52.4433148Z adding 'torch/utils/mobile_optimizer.py' 2025-04-25T04:36:52.4436325Z adding 'torch/utils/model_zoo.py' 2025-04-25T04:36:52.4440449Z adding 'torch/utils/module_tracker.py' 2025-04-25T04:36:52.4444918Z adding 'torch/utils/show_pickle.py' 2025-04-25T04:36:52.4449747Z adding 'torch/utils/throughput_benchmark.py' 2025-04-25T04:36:52.4455546Z adding 'torch/utils/weak.py' 2025-04-25T04:36:52.4459612Z adding 'torch/utils/_strobelight/__init__.py' 2025-04-25T04:36:52.4464931Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-04-25T04:36:52.4468886Z adding 'torch/utils/_sympy/__init__.py' 2025-04-25T04:36:52.4487592Z adding 'torch/utils/_sympy/functions.py' 2025-04-25T04:36:52.4493811Z adding 'torch/utils/_sympy/interp.py' 2025-04-25T04:36:52.4498749Z adding 'torch/utils/_sympy/numbers.py' 2025-04-25T04:36:52.4505689Z adding 'torch/utils/_sympy/printers.py' 2025-04-25T04:36:52.4511659Z adding 'torch/utils/_sympy/reference.py' 2025-04-25T04:36:52.4515738Z adding 'torch/utils/_sympy/singleton_int.py' 2025-04-25T04:36:52.4520389Z adding 'torch/utils/_sympy/solve.py' 2025-04-25T04:36:52.4524515Z adding 'torch/utils/_sympy/symbol.py' 2025-04-25T04:36:52.4537390Z adding 'torch/utils/_sympy/value_ranges.py' 2025-04-25T04:36:52.4542134Z adding 'torch/utils/backcompat/__init__.py' 2025-04-25T04:36:52.4545882Z adding 'torch/utils/benchmark/__init__.py' 2025-04-25T04:36:52.4549682Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-04-25T04:36:52.4554384Z adding 'torch/utils/benchmark/examples/blas_compare_setup.py' 2025-04-25T04:36:52.4558229Z adding 'torch/utils/benchmark/examples/compare.py' 2025-04-25T04:36:52.4562025Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-04-25T04:36:52.4566725Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-04-25T04:36:52.4569474Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-04-25T04:36:52.4573689Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-04-25T04:36:52.4577564Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-04-25T04:36:52.4581204Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-04-25T04:36:52.4585291Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-04-25T04:36:52.4589475Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-04-25T04:36:52.4593999Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-04-25T04:36:52.4598140Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-04-25T04:36:52.4602070Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-04-25T04:36:52.4605303Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-04-25T04:36:52.4612030Z adding 'torch/utils/benchmark/utils/common.py' 2025-04-25T04:36:52.4618850Z adding 'torch/utils/benchmark/utils/compare.py' 2025-04-25T04:36:52.4624004Z adding 'torch/utils/benchmark/utils/compile.py' 2025-04-25T04:36:52.4628776Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-04-25T04:36:52.4636919Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-04-25T04:36:52.4641646Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-04-25T04:36:52.4644996Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-04-25T04:36:52.4653880Z adding 'torch/utils/benchmark/utils/timer.py' 2025-04-25T04:36:52.4658276Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-04-25T04:36:52.4662632Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-04-25T04:36:52.4665956Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-04-25T04:36:52.4669319Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-04-25T04:36:52.4683072Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-04-25T04:36:52.4734875Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-04-25T04:36:52.4747862Z adding 'torch/utils/bottleneck/__init__.py' 2025-04-25T04:36:52.4752673Z adding 'torch/utils/bottleneck/__main__.py' 2025-04-25T04:36:52.4757208Z adding 'torch/utils/data/__init__.py' 2025-04-25T04:36:52.4760425Z adding 'torch/utils/data/backward_compatibility.py' 2025-04-25T04:36:52.4791231Z adding 'torch/utils/data/dataloader.py' 2025-04-25T04:36:52.4800913Z adding 'torch/utils/data/dataset.py' 2025-04-25T04:36:52.4805921Z adding 'torch/utils/data/distributed.py' 2025-04-25T04:36:52.4810549Z adding 'torch/utils/data/graph.py' 2025-04-25T04:36:52.4815179Z adding 'torch/utils/data/graph_settings.py' 2025-04-25T04:36:52.4821300Z adding 'torch/utils/data/sampler.py' 2025-04-25T04:36:52.4826018Z adding 'torch/utils/data/_utils/__init__.py' 2025-04-25T04:36:52.4833189Z adding 'torch/utils/data/_utils/collate.py' 2025-04-25T04:36:52.4837191Z adding 'torch/utils/data/_utils/fetch.py' 2025-04-25T04:36:52.4841326Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-04-25T04:36:52.4845193Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-04-25T04:36:52.4852181Z adding 'torch/utils/data/_utils/worker.py' 2025-04-25T04:36:52.4856385Z adding 'torch/utils/data/datapipes/__init__.py' 2025-04-25T04:36:52.4861024Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-04-25T04:36:52.4867191Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-04-25T04:36:52.4875095Z adding 'torch/utils/data/datapipes/_typing.py' 2025-04-25T04:36:52.4882026Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-04-25T04:36:52.4893207Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-04-25T04:36:52.4899715Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-04-25T04:36:52.4904064Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-04-25T04:36:52.4907721Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-04-25T04:36:52.4914238Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-04-25T04:36:52.4917920Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-04-25T04:36:52.4921288Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-04-25T04:36:52.4925640Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-04-25T04:36:52.4931008Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-04-25T04:36:52.4935885Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-04-25T04:36:52.4945763Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-04-25T04:36:52.4950218Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-04-25T04:36:52.4954225Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-04-25T04:36:52.4959999Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-04-25T04:36:52.4964110Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-04-25T04:36:52.4967984Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-04-25T04:36:52.4971945Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-04-25T04:36:52.4976119Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-04-25T04:36:52.4979132Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-04-25T04:36:52.4983168Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-04-25T04:36:52.4986728Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-04-25T04:36:52.4991291Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-04-25T04:36:52.4999847Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-04-25T04:36:52.5001608Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-04-25T04:36:52.5005426Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-04-25T04:36:52.5008986Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-04-25T04:36:52.5015382Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-04-25T04:36:52.5022474Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-04-25T04:36:52.5026802Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-04-25T04:36:52.5030484Z adding 'torch/utils/hipify/__init__.py' 2025-04-25T04:36:52.5034025Z adding 'torch/utils/hipify/constants.py' 2025-04-25T04:36:52.5092020Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-04-25T04:36:52.5117436Z adding 'torch/utils/hipify/hipify_python.py' 2025-04-25T04:36:52.5121420Z adding 'torch/utils/hipify/version.py' 2025-04-25T04:36:52.5125121Z adding 'torch/utils/jit/__init__.py' 2025-04-25T04:36:52.5128864Z adding 'torch/utils/jit/log_extract.py' 2025-04-25T04:36:52.5136974Z adding 'torch/utils/model_dump/__init__.py' 2025-04-25T04:36:52.5140306Z adding 'torch/utils/model_dump/__main__.py' 2025-04-25T04:36:52.5147586Z adding 'torch/utils/model_dump/code.js' 2025-04-25T04:36:52.5151447Z adding 'torch/utils/model_dump/htm.mjs' 2025-04-25T04:36:52.5157275Z adding 'torch/utils/model_dump/preact.mjs' 2025-04-25T04:36:52.5160574Z adding 'torch/utils/model_dump/skeleton.html' 2025-04-25T04:36:52.5164070Z adding 'torch/utils/serialization/__init__.py' 2025-04-25T04:36:52.5167152Z adding 'torch/utils/serialization/config.py' 2025-04-25T04:36:52.5170982Z adding 'torch/utils/tensorboard/__init__.py' 2025-04-25T04:36:52.5174024Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-04-25T04:36:52.5177626Z adding 'torch/utils/tensorboard/_embedding.py' 2025-04-25T04:36:52.5181057Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-04-25T04:36:52.5184341Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-04-25T04:36:52.5191013Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-04-25T04:36:52.5195414Z adding 'torch/utils/tensorboard/_utils.py' 2025-04-25T04:36:52.5208007Z adding 'torch/utils/tensorboard/summary.py' 2025-04-25T04:36:52.5222728Z adding 'torch/utils/tensorboard/writer.py' 2025-04-25T04:36:52.5227445Z adding 'torch/utils/viz/__init__.py' 2025-04-25T04:36:52.5234896Z adding 'torch/utils/viz/_cycles.py' 2025-04-25T04:36:52.5243519Z adding 'torch/xpu/__init__.py' 2025-04-25T04:36:52.5247175Z adding 'torch/xpu/_gpu_trace.py' 2025-04-25T04:36:52.5250905Z adding 'torch/xpu/_utils.py' 2025-04-25T04:36:52.5254849Z adding 'torch/xpu/memory.py' 2025-04-25T04:36:52.5258871Z adding 'torch/xpu/random.py' 2025-04-25T04:36:52.5263221Z adding 'torch/xpu/streams.py' 2025-04-25T04:36:52.5271856Z adding 'torchgen/__init__.py' 2025-04-25T04:36:52.5275483Z adding 'torchgen/code_template.py' 2025-04-25T04:36:52.5279183Z adding 'torchgen/context.py' 2025-04-25T04:36:52.5316551Z adding 'torchgen/gen.py' 2025-04-25T04:36:52.5326278Z adding 'torchgen/gen_aoti_c_shim.py' 2025-04-25T04:36:52.5334944Z adding 'torchgen/gen_backend_stubs.py' 2025-04-25T04:36:52.5348599Z adding 'torchgen/gen_executorch.py' 2025-04-25T04:36:52.5362876Z adding 'torchgen/gen_functionalization_type.py' 2025-04-25T04:36:52.5372460Z adding 'torchgen/gen_lazy_tensor.py' 2025-04-25T04:36:52.5376679Z adding 'torchgen/gen_schema_utils.py' 2025-04-25T04:36:52.5381520Z adding 'torchgen/gen_vmap_plumbing.py' 2025-04-25T04:36:52.5385143Z adding 'torchgen/local.py' 2025-04-25T04:36:52.5427423Z adding 'torchgen/model.py' 2025-04-25T04:36:52.5442067Z adding 'torchgen/native_function_generation.py' 2025-04-25T04:36:52.5450480Z adding 'torchgen/utils.py' 2025-04-25T04:36:52.5454132Z adding 'torchgen/yaml_utils.py' 2025-04-25T04:36:52.5457877Z adding 'torchgen/aoti/__init__.py' 2025-04-25T04:36:52.5461755Z adding 'torchgen/aoti/fallback_ops.py' 2025-04-25T04:36:52.5465650Z adding 'torchgen/api/__init__.py' 2025-04-25T04:36:52.5480273Z adding 'torchgen/api/autograd.py' 2025-04-25T04:36:52.5488330Z adding 'torchgen/api/cpp.py' 2025-04-25T04:36:52.5492573Z adding 'torchgen/api/dispatcher.py' 2025-04-25T04:36:52.5497528Z adding 'torchgen/api/functionalization.py' 2025-04-25T04:36:52.5505312Z adding 'torchgen/api/lazy.py' 2025-04-25T04:36:52.5508815Z adding 'torchgen/api/meta.py' 2025-04-25T04:36:52.5513102Z adding 'torchgen/api/native.py' 2025-04-25T04:36:52.5534425Z adding 'torchgen/api/python.py' 2025-04-25T04:36:52.5540230Z adding 'torchgen/api/structured.py' 2025-04-25T04:36:52.5547699Z adding 'torchgen/api/translate.py' 2025-04-25T04:36:52.5552844Z adding 'torchgen/api/ufunc.py' 2025-04-25T04:36:52.5558282Z adding 'torchgen/api/unboxing.py' 2025-04-25T04:36:52.5562307Z adding 'torchgen/api/types/__init__.py' 2025-04-25T04:36:52.5568853Z adding 'torchgen/api/types/signatures.py' 2025-04-25T04:36:52.5573685Z adding 'torchgen/api/types/types.py' 2025-04-25T04:36:52.5578610Z adding 'torchgen/api/types/types_base.py' 2025-04-25T04:36:52.5582742Z adding 'torchgen/dest/__init__.py' 2025-04-25T04:36:52.5593836Z adding 'torchgen/dest/lazy_ir.py' 2025-04-25T04:36:52.5598588Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-04-25T04:36:52.5602558Z adding 'torchgen/dest/native_functions.py' 2025-04-25T04:36:52.5616843Z adding 'torchgen/dest/register_dispatch_key.py' 2025-04-25T04:36:52.5625249Z adding 'torchgen/dest/ufunc.py' 2025-04-25T04:36:52.5630235Z adding 'torchgen/executorch/__init__.py' 2025-04-25T04:36:52.5635319Z adding 'torchgen/executorch/model.py' 2025-04-25T04:36:52.5639626Z adding 'torchgen/executorch/parse.py' 2025-04-25T04:36:52.5643318Z adding 'torchgen/executorch/api/__init__.py' 2025-04-25T04:36:52.5647415Z adding 'torchgen/executorch/api/custom_ops.py' 2025-04-25T04:36:52.5653736Z adding 'torchgen/executorch/api/et_cpp.py' 2025-04-25T04:36:52.5658659Z adding 'torchgen/executorch/api/unboxing.py' 2025-04-25T04:36:52.5662429Z adding 'torchgen/executorch/api/types/__init__.py' 2025-04-25T04:36:52.5665897Z adding 'torchgen/executorch/api/types/signatures.py' 2025-04-25T04:36:52.5669257Z adding 'torchgen/executorch/api/types/types.py' 2025-04-25T04:36:52.5672987Z adding 'torchgen/operator_versions/__init__.py' 2025-04-25T04:36:52.5678539Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-04-25T04:36:52.5682011Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-04-25T04:36:52.5799339Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-04-25T04:36:52.5817118Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-04-25T04:36:52.5822843Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-04-25T04:36:52.5825913Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-04-25T04:36:52.5829130Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-04-25T04:36:52.5832992Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-04-25T04:36:52.5835994Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-04-25T04:36:52.5838929Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-04-25T04:36:52.5841817Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-04-25T04:36:52.5844850Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-04-25T04:36:52.5848097Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-04-25T04:36:52.5851887Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-04-25T04:36:52.5856106Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-04-25T04:36:52.5859322Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-04-25T04:36:52.5862306Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-04-25T04:36:52.5865350Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-04-25T04:36:52.5868615Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-04-25T04:36:52.5872002Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-04-25T04:36:52.5874737Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-04-25T04:36:52.5877740Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-04-25T04:36:52.5880596Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-04-25T04:36:52.5883626Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-04-25T04:36:52.5887271Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-04-25T04:36:52.5890577Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-04-25T04:36:52.5894503Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-04-25T04:36:52.5896886Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-04-25T04:36:52.5900479Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-04-25T04:36:52.5903212Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-04-25T04:36:52.5906528Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-04-25T04:36:52.5910262Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-04-25T04:36:52.5913586Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-04-25T04:36:52.5917287Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-04-25T04:36:52.5928485Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-04-25T04:36:52.5932555Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-04-25T04:36:52.5935777Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-04-25T04:36:52.5939482Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-04-25T04:36:52.5941785Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-04-25T04:36:52.5945284Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-04-25T04:36:52.5948089Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-04-25T04:36:52.5951392Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-04-25T04:36:52.5954313Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-04-25T04:36:52.5958267Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-04-25T04:36:52.5961056Z adding 'torchgen/packaged/autograd/README.md' 2025-04-25T04:36:52.5963970Z adding 'torchgen/packaged/autograd/__init__.py' 2025-04-25T04:36:52.5967546Z adding 'torchgen/packaged/autograd/build.bzl' 2025-04-25T04:36:52.5969904Z adding 'torchgen/packaged/autograd/context.py' 2025-04-25T04:36:52.5973536Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-04-25T04:36:52.6021500Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-04-25T04:36:52.6029736Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-04-25T04:36:52.6033292Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-04-25T04:36:52.6045035Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-04-25T04:36:52.6054958Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-04-25T04:36:52.6071790Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-04-25T04:36:52.6080709Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-04-25T04:36:52.6085177Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-04-25T04:36:52.6112000Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-04-25T04:36:52.6119686Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-04-25T04:36:52.6134163Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-04-25T04:36:52.6139803Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-04-25T04:36:52.6143130Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-04-25T04:36:52.6146250Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-04-25T04:36:52.6149304Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-04-25T04:36:52.6152781Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-04-25T04:36:52.6155995Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-04-25T04:36:52.6158875Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-04-25T04:36:52.6161766Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-04-25T04:36:52.6164940Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-04-25T04:36:52.6167717Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-04-25T04:36:52.6171069Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-04-25T04:36:52.6174168Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-04-25T04:36:52.6177045Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-04-25T04:36:52.6180289Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-04-25T04:36:52.6183607Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-04-25T04:36:52.6187295Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-04-25T04:36:52.6190512Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-04-25T04:36:52.6193482Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-04-25T04:36:52.6196702Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-04-25T04:36:52.6200041Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-04-25T04:36:52.6203521Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-04-25T04:36:52.6215769Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-04-25T04:36:52.6220937Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-04-25T04:36:52.6224570Z adding 'torchgen/selective_build/__init__.py' 2025-04-25T04:36:52.6228884Z adding 'torchgen/selective_build/operator.py' 2025-04-25T04:36:52.6234726Z adding 'torchgen/selective_build/selector.py' 2025-04-25T04:36:52.6238630Z adding 'torchgen/static_runtime/__init__.py' 2025-04-25T04:36:52.6243584Z adding 'torchgen/static_runtime/config.py' 2025-04-25T04:36:52.6248517Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-04-25T04:36:52.6257258Z adding 'torchgen/static_runtime/generator.py' 2025-04-25T04:36:52.6371205Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/LICENSE' 2025-04-25T04:36:52.6392938Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/METADATA' 2025-04-25T04:36:52.6402328Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/NOTICE' 2025-04-25T04:36:52.6404927Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/WHEEL' 2025-04-25T04:36:52.6407055Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/entry_points.txt' 2025-04-25T04:36:52.6408778Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/top_level.txt' 2025-04-25T04:36:52.7087994Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/RECORD' 2025-04-25T04:36:52.7448760Z removing build\bdist.win-amd64\wheel 2025-04-25T04:36:54.2457369Z 2025-04-25T04:36:54.2458218Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:36:54.2458935Z 2025-04-25T04:36:54.2459218Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:36:54.2460071Z 2025-04-25T04:36:54.2460291Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-04-25T04:36:55.9413918Z Compile requests 6918 2025-04-25T04:36:55.9414297Z Compile requests executed 6918 2025-04-25T04:36:55.9414572Z Cache hits 6852 2025-04-25T04:36:55.9414828Z Cache hits (C/C++) 6852 2025-04-25T04:36:55.9415092Z Cache misses 48 2025-04-25T04:36:55.9415362Z Cache misses (C/C++) 48 2025-04-25T04:36:55.9415773Z Cache timeouts 0 2025-04-25T04:36:55.9416037Z Cache read errors 0 2025-04-25T04:36:55.9416321Z Forced recaches 0 2025-04-25T04:36:55.9416599Z Cache write errors 0 2025-04-25T04:36:55.9416865Z Compilation failures 3 2025-04-25T04:36:55.9417146Z Cache errors 15 2025-04-25T04:36:55.9417404Z Cache errors (C/C++) 15 2025-04-25T04:36:55.9417746Z Non-cacheable compilations 8 2025-04-25T04:36:55.9418009Z Non-cacheable calls 0 2025-04-25T04:36:55.9418282Z Non-compilation calls 0 2025-04-25T04:36:55.9418562Z Unsupported compiler calls 0 2025-04-25T04:36:55.9418850Z Average cache write 0.041 s 2025-04-25T04:36:55.9419145Z Average compiler 0.070 s 2025-04-25T04:36:55.9419425Z Average cache read hit 0.070 s 2025-04-25T04:36:55.9419717Z Failed distributed compilations 0 2025-04-25T04:36:55.9420093Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:36:55.9420486Z Version (client) 0.7.4 2025-04-25T04:36:55.9437693Z 2025-04-25T04:36:55.9438715Z (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-04-25T04:36:56.8782424Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:36:57.6215989Z Installing collected packages: torch 2025-04-25T04:37:15.7155634Z Successfully installed torch-2.8.0a0+gitb68c0ef 2025-04-25T04:37:15.7808500Z 2025-04-25T04:37:15.7809888Z (base) C:\actions-runner\_work\pytorch\pytorch>(if "win-vs2022-cpu-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-04-25T04:37:15.7811185Z copy /Y "dist\*.whl" "C:/14656749847/build-results/" 2025-04-25T04:37:15.7811535Z python tools/stats/export_test_times.py 2025-04-25T04:37:15.7812015Z robocopy /E ".additional_ci_files" "C:/14656749847/build-results/\.additional_ci_files" 2025-04-25T04:37:15.7812690Z copy /Y "build\.ninja_log" "C:/14656749847/build-results/\" 2025-04-25T04:37:15.7813012Z ) ) 2025-04-25T04:37:15.7816910Z dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:37:15.8943082Z 1 file(s) copied. 2025-04-25T04:37:17.1971165Z Exporting test times from test-infra 2025-04-25T04:37:17.1972314Z 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-04-25T04:37:17.1974310Z 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-04-25T04:37:17.2218872Z 2025-04-25T04:37:17.2219360Z ------------------------------------------------------------------------------- 2025-04-25T04:37:17.2220158Z ROBOCOPY :: Robust File Copy for Windows 2025-04-25T04:37:17.2220629Z ------------------------------------------------------------------------------- 2025-04-25T04:37:17.2221064Z 2025-04-25T04:37:17.2222394Z Started : Friday, April 25, 2025 4:37:17 AM 2025-04-25T04:37:17.2222939Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-04-25T04:37:17.2223789Z Dest : C:\14656749847\build-results\.additional_ci_files\ 2025-04-25T04:37:17.2224105Z 2025-04-25T04:37:17.2224188Z Files : *.* 2025-04-25T04:37:17.2224742Z 2025-04-25T04:37:17.2225725Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-04-25T04:37:17.2226352Z 2025-04-25T04:37:17.2226671Z ------------------------------------------------------------------------------ 2025-04-25T04:37:17.2229948Z 2025-04-25T04:37:17.2236223Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-04-25T04:37:17.2244211Z New File 5.6 m test-class-times.json 2025-04-25T04:37:17.2247074Z 8% 2025-04-25T04:37:17.2250360Z 17% 2025-04-25T04:37:17.2253051Z 26% 2025-04-25T04:37:17.2256395Z 35% 2025-04-25T04:37:17.2259146Z 44% 2025-04-25T04:37:17.2262543Z 53% 2025-04-25T04:37:17.2265259Z 62% 2025-04-25T04:37:17.2268513Z 70% 2025-04-25T04:37:17.2271291Z 79% 2025-04-25T04:37:17.2274482Z 88% 2025-04-25T04:37:17.2275621Z 97% 2025-04-25T04:37:17.2277715Z 100% 2025-04-25T04:37:17.2281940Z New File 1.5 m test-times.json 2025-04-25T04:37:17.2283531Z 16% 2025-04-25T04:37:17.2285102Z 32% 2025-04-25T04:37:17.2286697Z 48% 2025-04-25T04:37:17.2288329Z 64% 2025-04-25T04:37:17.2289926Z 80% 2025-04-25T04:37:17.2290650Z 96% 2025-04-25T04:37:17.2294068Z 100% 2025-04-25T04:37:17.2294222Z 2025-04-25T04:37:17.2294619Z ------------------------------------------------------------------------------ 2025-04-25T04:37:17.2294926Z 2025-04-25T04:37:17.2295938Z Total Copied Skipped Mismatch FAILED Extras 2025-04-25T04:37:17.2296735Z Dirs : 1 1 0 0 0 0 2025-04-25T04:37:17.2297618Z Files : 2 2 0 0 0 0 2025-04-25T04:37:17.2298551Z Bytes : 7.18 m 7.18 m 0 0 0 0 2025-04-25T04:37:17.2299511Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-04-25T04:37:17.2299880Z Ended : Friday, April 25, 2025 4:37:17 AM 2025-04-25T04:37:17.2300178Z 2025-04-25T04:37:17.5164971Z 1 file(s) copied. 2025-04-25T04:37:17.5167581Z 2025-04-25T04:37:17.5168516Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cpu-py3-41133079878.json 2025-04-25T04:37:17.5593310Z 2025-04-25T04:37:17.5597789Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-04-25T04:37:17.5679021Z Stopping sccache server... 2025-04-25T04:37:17.5698303Z Compile requests 6918 2025-04-25T04:37:17.5698806Z Compile requests executed 6918 2025-04-25T04:37:17.5699093Z Cache hits 6852 2025-04-25T04:37:17.5699392Z Cache hits (C/C++) 6852 2025-04-25T04:37:17.5699656Z Cache misses 48 2025-04-25T04:37:17.5699950Z Cache misses (C/C++) 48 2025-04-25T04:37:17.5700212Z Cache timeouts 0 2025-04-25T04:37:17.5700494Z Cache read errors 0 2025-04-25T04:37:17.5700777Z Forced recaches 0 2025-04-25T04:37:17.5701044Z Cache write errors 0 2025-04-25T04:37:17.5701333Z Compilation failures 3 2025-04-25T04:37:17.5701613Z Cache errors 15 2025-04-25T04:37:17.5701889Z Cache errors (C/C++) 15 2025-04-25T04:37:17.5702203Z Non-cacheable compilations 8 2025-04-25T04:37:17.5702480Z Non-cacheable calls 0 2025-04-25T04:37:17.5702768Z Non-compilation calls 0 2025-04-25T04:37:17.5703062Z Unsupported compiler calls 0 2025-04-25T04:37:17.5703347Z Average cache write 0.041 s 2025-04-25T04:37:17.5703649Z Average compiler 0.070 s 2025-04-25T04:37:17.5703930Z Average cache read hit 0.070 s 2025-04-25T04:37:17.5704236Z Failed distributed compilations 0 2025-04-25T04:37:17.5704621Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:37:17.5705030Z Version (client) 0.7.4 2025-04-25T04:37:17.5717564Z 2025-04-25T04:37:17.5717881Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-04-25T04:37:17.6217346Z + assert_git_not_dirty 2025-04-25T04:37:17.6488326Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-04-25T04:37:17.6488659Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-04-25T04:37:17.6811167Z ++ git status --porcelain 2025-04-25T04:37:17.6862035Z ++ grep -v '?? third_party' 2025-04-25T04:39:32.7268310Z ++ true 2025-04-25T04:39:32.7272332Z + git_status= 2025-04-25T04:39:32.7272656Z + [[ -n '' ]] 2025-04-25T04:39:32.7272952Z + echo 'BUILD PASSED' 2025-04-25T04:39:32.7273407Z BUILD PASSED 2025-04-25T04:39:32.9115648Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-04-25T04:39:32.9116073Z with: 2025-04-25T04:39:32.9116304Z retention-days: 14 2025-04-25T04:39:32.9116553Z if-no-files-found: error 2025-04-25T04:39:32.9116922Z name: win-vs2022-cpu-py3 2025-04-25T04:39:32.9117244Z path: C:\14656749847\build-results 2025-04-25T04:39:32.9117528Z s3-bucket: gha-artifacts 2025-04-25T04:39:32.9117794Z region: us-east-1 2025-04-25T04:39:32.9118011Z env: 2025-04-25T04:39:32.9118233Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:32.9118625Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:32.9119193Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:32.9119700Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:32.9120127Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:32.9120452Z ##[endgroup] 2025-04-25T04:39:35.4170820Z With the provided path, there will be 4 files uploaded 2025-04-25T04:39:35.4171347Z Uploading to s3 prefix: pytorch/pytorch/14656749847/win-vs2022-cpu-py3 2025-04-25T04:39:35.4198604Z Starting upload of .additional_ci_files\test-class-times.json 2025-04-25T04:39:35.8234967Z Finished upload of .additional_ci_files\test-class-times.json 2025-04-25T04:39:35.8237779Z Starting upload of .additional_ci_files\test-times.json 2025-04-25T04:39:35.9952106Z Finished upload of .additional_ci_files\test-times.json 2025-04-25T04:39:35.9954593Z Starting upload of .ninja_log 2025-04-25T04:39:36.1962469Z Finished upload of .ninja_log 2025-04-25T04:39:36.1964041Z Starting upload of torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:39:38.0127924Z Finished upload of torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:39:38.0602780Z Prepare all required actions 2025-04-25T04:39:38.0603600Z Getting action download info 2025-04-25T04:39:38.2460637Z Getting action download info 2025-04-25T04:39:38.3561692Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-04-25T04:39:38.3562007Z with: 2025-04-25T04:39:38.3574992Z github-token: *** 2025-04-25T04:39:38.3575227Z env: 2025-04-25T04:39:38.3575434Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:38.3575807Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:38.3576337Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:38.3576830Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:38.3577222Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:38.3577533Z ##[endgroup] 2025-04-25T04:39:38.3695565Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-04-25T04:39:38.3695877Z with: 2025-04-25T04:39:38.3696177Z s3-prefix: pytorch/pytorch/14656749847/1/artifact 2025-04-25T04:39:38.3696503Z retention-days: 14 2025-04-25T04:39:38.3696743Z if-no-files-found: warn 2025-04-25T04:39:38.3696992Z path: sccache-stats-*.json 2025-04-25T04:39:38.3697258Z name: artifact 2025-04-25T04:39:38.3697464Z s3-bucket: gha-artifacts 2025-04-25T04:39:38.3697710Z region: us-east-1 2025-04-25T04:39:38.3697915Z env: 2025-04-25T04:39:38.3698116Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:38.3698485Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:38.3699019Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:38.3699504Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:38.3699894Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:38.3700195Z ##[endgroup] 2025-04-25T04:39:38.7520930Z NOTE: s3-prefix specified, ignoring name parameter 2025-04-25T04:39:38.7521399Z With the provided path, there will be 1 file uploaded 2025-04-25T04:39:38.7521822Z Uploading to s3 prefix: pytorch/pytorch/14656749847/1/artifact 2025-04-25T04:39:38.7534942Z Starting upload of sccache-stats-win-vs2022-cpu-py3-41133079878.json 2025-04-25T04:39:38.8954441Z Finished upload of sccache-stats-win-vs2022-cpu-py3-41133079878.json 2025-04-25T04:39:38.9199547Z ##[group]Run python3 -m tools.stats.sccache_stats_to_benchmark_format 2025-04-25T04:39:38.9200081Z python3 -m tools.stats.sccache_stats_to_benchmark_format 2025-04-25T04:39:38.9218698Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:38.9219129Z env: 2025-04-25T04:39:38.9219307Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:38.9219677Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:38.9220184Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:38.9220653Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:38.9221059Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:38.9221342Z BUILD_TIME: 2025-04-25T04:39:38.9221531Z ##[endgroup] 2025-04-25T04:39:39.0225603Z ##[group]Run pytorch/test-infra/.github/actions/upload-benchmark-results@main 2025-04-25T04:39:39.0226046Z with: 2025-04-25T04:39:39.0226265Z benchmark-results-dir: test/test-reports 2025-04-25T04:39:39.0226552Z dry-run: false 2025-04-25T04:39:39.0226741Z schema-version: v3 2025-04-25T04:39:39.0227273Z github-token: *** 2025-04-25T04:39:39.0227475Z env: 2025-04-25T04:39:39.0227646Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:39.0228019Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:39.0228531Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:39.0229004Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:39.0229402Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:39.0237122Z ##[endgroup] 2025-04-25T04:39:39.0318160Z ##[group]Run set -eux 2025-04-25T04:39:39.0318504Z set -eux 2025-04-25T04:39:39.0318740Z python3 -mpip install boto3==1.35.33 2025-04-25T04:39:39.0337325Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:39.0337793Z env: 2025-04-25T04:39:39.0338003Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:39.0338374Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:39.0338895Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:39.0339374Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:39.0339767Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:39.0340076Z ##[endgroup] 2025-04-25T04:39:39.0533780Z + python3 -mpip install boto3==1.35.33 2025-04-25T04:39:40.3959988Z Collecting boto3==1.35.33 2025-04-25T04:39:40.5826031Z Downloading boto3-1.35.33-py3-none-any.whl.metadata (6.6 kB) 2025-04-25T04:39:40.5936123Z Requirement already satisfied: botocore<1.36.0,>=1.35.33 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.33) (1.35.99) 2025-04-25T04:39:40.5943053Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.33) (1.0.1) 2025-04-25T04:39:40.5949651Z Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.33) (0.10.4) 2025-04-25T04:39:40.6021169Z Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.33->boto3==1.35.33) (2.9.0.post0) 2025-04-25T04:39:40.6033193Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.33->boto3==1.35.33) (1.26.19) 2025-04-25T04:39:40.6887933Z 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.33->boto3==1.35.33) (1.16.0) 2025-04-25T04:39:40.7134675Z Downloading boto3-1.35.33-py3-none-any.whl (139 kB) 2025-04-25T04:39:40.8429849Z ---------------------------------------- 139.1/139.1 kB 1.4 MB/s eta 0:00:00 2025-04-25T04:39:41.8907705Z Installing collected packages: boto3 2025-04-25T04:39:41.8909164Z Attempting uninstall: boto3 2025-04-25T04:39:41.8918130Z Found existing installation: boto3 1.35.42 2025-04-25T04:39:41.9091950Z Uninstalling boto3-1.35.42: 2025-04-25T04:39:41.9144699Z Successfully uninstalled boto3-1.35.42 2025-04-25T04:39:42.0660265Z Successfully installed boto3-1.35.33 2025-04-25T04:39:42.1782468Z ##[group]Run set -eux 2025-04-25T04:39:42.1782742Z set -eux 2025-04-25T04:39:42.1782931Z  2025-04-25T04:39:42.1783174Z if [[ -z "${GITHUB_TOKEN}" ]]; then 2025-04-25T04:39:42.1783517Z  echo "Missing github-token input" 2025-04-25T04:39:42.1783838Z  exit 1 2025-04-25T04:39:42.1784076Z fi 2025-04-25T04:39:42.1803473Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:42.1803999Z env: 2025-04-25T04:39:42.1804227Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:42.1804610Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:42.1805118Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:42.1805593Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:42.1805975Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:42.1806474Z GITHUB_TOKEN: *** 2025-04-25T04:39:42.1806685Z ##[endgroup] 2025-04-25T04:39:42.2001149Z + [[ -z *** ]] 2025-04-25T04:39:42.2114042Z ##[group]Run pytorch/test-infra/.github/actions/get-workflow-job-id@main 2025-04-25T04:39:42.2114480Z with: 2025-04-25T04:39:42.2114864Z github-token: *** 2025-04-25T04:39:42.2115089Z env: 2025-04-25T04:39:42.2115959Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:42.2116491Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:42.2117145Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:42.2117652Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:42.2118089Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:42.2118412Z ##[endgroup] 2025-04-25T04:39:42.2187540Z ##[group]Run set -eux 2025-04-25T04:39:42.2187829Z set -eux 2025-04-25T04:39:42.2188045Z  2025-04-25T04:39:42.2188534Z python3 "${GITHUB_ACTION_PATH}/../../scripts/get_workflow_job_id.py" "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-04-25T04:39:42.2207333Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:42.2207807Z env: 2025-04-25T04:39:42.2208023Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:42.2208461Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:42.2209141Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:42.2209638Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:42.2210090Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:42.2210597Z GITHUB_TOKEN: *** 2025-04-25T04:39:42.2210854Z ##[endgroup] 2025-04-25T04:39:42.2393516Z + python3 'C:\actions-runner\_work\_actions\pytorch\test-infra\main\.github/actions/get-workflow-job-id/../../scripts/get_workflow_job_id.py' 14656749847 i-0533c757f4ff2fec3 2025-04-25T04:39:42.8732099Z setting job-id=41133079878 2025-04-25T04:39:42.8732498Z setting job-name=win-vs2022-cpu-py3 / build 2025-04-25T04:39:42.8979931Z ##[group]Run set -eux 2025-04-25T04:39:42.8980192Z set -eux 2025-04-25T04:39:42.8980400Z  2025-04-25T04:39:42.8980758Z python3 "${GITHUB_ACTION_PATH}/../../scripts/benchmarks/gather_metadata.py" \ 2025-04-25T04:39:42.8981244Z  --schema-version "${SCHEMA_VERSION}" \ 2025-04-25T04:39:42.8981566Z  --repo "${REPO}" \ 2025-04-25T04:39:42.8981827Z  --head-branch "${HEAD_BRANCH}" \ 2025-04-25T04:39:42.8982745Z  --head-sha "${HEAD_SHA}" \ 2025-04-25T04:39:42.8983037Z  --workflow-id "${WORKFLOW_RUN_ID}" \ 2025-04-25T04:39:42.8983354Z  --run-attempt "${RUN_ATTEMPT}" \ 2025-04-25T04:39:42.8983640Z  --job-id "${JOB_ID}" \ 2025-04-25T04:39:42.8983888Z  --job-name "${JOB_NAME}" 2025-04-25T04:39:42.9006659Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:42.9007086Z env: 2025-04-25T04:39:42.9007280Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:42.9007646Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:42.9008161Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:42.9008630Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:42.9009027Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:42.9009321Z SCHEMA_VERSION: v3 2025-04-25T04:39:42.9009533Z REPO: pytorch/pytorch 2025-04-25T04:39:42.9009784Z HEAD_BRANCH: refs/tags/ciflow/trunk/148893 2025-04-25T04:39:42.9010106Z HEAD_SHA: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:39:42.9010434Z WORKFLOW_RUN_ID: 14656749847 2025-04-25T04:39:42.9010657Z RUN_ATTEMPT: 1 2025-04-25T04:39:42.9010848Z JOB_ID: 41133079878 2025-04-25T04:39:42.9011061Z JOB_NAME: win-vs2022-cpu-py3 / build 2025-04-25T04:39:42.9011327Z ##[endgroup] 2025-04-25T04:39:42.9190827Z + python3 'C:\actions-runner\_work\_actions\pytorch\test-infra\main\.github/actions/upload-benchmark-results/../../scripts/benchmarks/gather_metadata.py' --schema-version v3 --repo pytorch/pytorch --head-branch refs/tags/ciflow/trunk/148893 --head-sha b68c0effe97351b0c24b2f7aef671559be6aa977 --workflow-id 14656749847 --run-attempt 1 --job-id 41133079878 --job-name 'win-vs2022-cpu-py3 / build' 2025-04-25T04:39:42.9995696Z ##[group]Run set -eux 2025-04-25T04:39:42.9996013Z set -eux 2025-04-25T04:39:42.9996205Z  2025-04-25T04:39:42.9996532Z # TODO (huydhn): Implement this part 2025-04-25T04:39:42.9996862Z echo "runners=[]" >> "${GITHUB_OUTPUT}" 2025-04-25T04:39:43.0015213Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:43.0015669Z env: 2025-04-25T04:39:43.0015904Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:43.0016307Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:43.0016872Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:43.0017387Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:43.0017806Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:43.0031429Z ##[endgroup] 2025-04-25T04:39:43.0217793Z + echo 'runners=[]' 2025-04-25T04:39:43.0313860Z ##[group]Run set -eux 2025-04-25T04:39:43.0314092Z set -eux 2025-04-25T04:39:43.0314273Z  2025-04-25T04:39:43.0314488Z # TODO (huydhn): Implement this part 2025-04-25T04:39:43.0314842Z echo "dependencies={}" >> "${GITHUB_OUTPUT}" 2025-04-25T04:39:43.0333127Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:43.0333547Z env: 2025-04-25T04:39:43.0333734Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:43.0334104Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:43.0334604Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:43.0335136Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:43.0335566Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:43.0335860Z ##[endgroup] 2025-04-25T04:39:43.0527699Z + echo 'dependencies={}' 2025-04-25T04:39:43.0614683Z ##[group]Run set -eux 2025-04-25T04:39:43.0614924Z set -eux 2025-04-25T04:39:43.0615125Z  2025-04-25T04:39:43.0615346Z if [[ ! -d "${BENCHMARK_RESULTS_DIR}" ]]; then 2025-04-25T04:39:43.0615834Z  echo "${BENCHMARK_RESULTS_DIR} does not exist, skipping" 2025-04-25T04:39:43.0616277Z  # We don't want the job to fail if the directory doesn't exist 2025-04-25T04:39:43.0616632Z  exit 0 2025-04-25T04:39:43.0616822Z fi 2025-04-25T04:39:43.0616995Z  2025-04-25T04:39:43.0617194Z if [[ "${DRY_RUN}" == "true" ]]; then 2025-04-25T04:39:43.0617619Z  python3 "${GITHUB_ACTION_PATH}/../../scripts/upload_benchmark_results.py" \ 2025-04-25T04:39:43.0618126Z  --benchmark-results-dir "${BENCHMARK_RESULTS_DIR}" \ 2025-04-25T04:39:43.0618505Z  --metadata "${BENCHMARK_METADATA}" \ 2025-04-25T04:39:43.0618824Z  --runners "${RUNNER_INFO}" \ 2025-04-25T04:39:43.0619136Z  --dependencies "${DEPENDENCIES}" \ 2025-04-25T04:39:43.0619418Z  --dry-run 2025-04-25T04:39:43.0619625Z else 2025-04-25T04:39:43.0619954Z  python3 "${GITHUB_ACTION_PATH}/../../scripts/upload_benchmark_results.py" \ 2025-04-25T04:39:43.0620468Z  --benchmark-results-dir "${BENCHMARK_RESULTS_DIR}" \ 2025-04-25T04:39:43.0620841Z  --metadata "${BENCHMARK_METADATA}" \ 2025-04-25T04:39:43.0621165Z  --runners "${RUNNER_INFO}" \ 2025-04-25T04:39:43.0621463Z  --dependencies "${DEPENDENCIES}" 2025-04-25T04:39:43.0621734Z fi 2025-04-25T04:39:43.0639246Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:39:43.0639760Z env: 2025-04-25T04:39:43.0639960Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:43.0640367Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:43.0641021Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:43.0641486Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:43.0641933Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:43.0642259Z BENCHMARK_RESULTS_DIR: test/test-reports 2025-04-25T04:39:43.0642554Z DRY_RUN: false 2025-04-25T04:39:43.0643661Z BENCHMARK_METADATA: {"timestamp": 1745555982, "schema_version": "v3", "name": "win-vs2022-cpu-py3 / build", "repo": "pytorch/pytorch", "head_branch": "refs/tags/ciflow/trunk/148893", "head_sha": "b68c0effe97351b0c24b2f7aef671559be6aa977", "workflow_id": 14656749847, "run_attempt": 1, "job_id": 41133079878} 2025-04-25T04:39:43.0644820Z RUNNER_INFO: [] 2025-04-25T04:39:43.0645020Z DEPENDENCIES: {} 2025-04-25T04:39:43.0645253Z ##[endgroup] 2025-04-25T04:39:43.0823304Z + [[ ! -d test/test-reports ]] 2025-04-25T04:39:43.0824689Z + [[ false == \t\r\u\e ]] 2025-04-25T04:39:43.0827798Z + python3 'C:\actions-runner\_work\_actions\pytorch\test-infra\main\.github/actions/upload-benchmark-results/../../scripts/upload_benchmark_results.py' --benchmark-results-dir test/test-reports --metadata '{"timestamp": 1745555982, "schema_version": "v3", "name": "win-vs2022-cpu-py3 / build", "repo": "pytorch/pytorch", "head_branch": "refs/tags/ciflow/trunk/148893", "head_sha": "b68c0effe97351b0c24b2f7aef671559be6aa977", "workflow_id": 14656749847, "run_attempt": 1, "job_id": 41133079878}' --runners '[]' --dependencies '{}' 2025-04-25T04:39:43.8246497Z INFO:root:Upload test/test-reports\sccache-stats.json to s3://ossci-benchmarks/v3/pytorch/pytorch/14656749847/41133079878/sccache-stats.json 2025-04-25T04:39:43.8933874Z INFO:botocore.credentials:Found credentials from IAM Role: gh-ci-github-action-runners-runner-role 2025-04-25T04:39:44.8522310Z Prepare all required actions 2025-04-25T04:39:44.8522729Z Getting action download info 2025-04-25T04:39:45.0414674Z ##[group]Run ./.github/actions/teardown-win 2025-04-25T04:39:45.0414951Z with: 2025-04-25T04:39:45.0415182Z extra-delete-dir: /c/14656749847/build-results/ 2025-04-25T04:39:45.0415559Z env: 2025-04-25T04:39:45.0415766Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:45.0416131Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:45.0416743Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:45.0417208Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:45.0417595Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:45.0417879Z ##[endgroup] 2025-04-25T04:39:45.0493145Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-04-25T04:39:45.0493536Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-04-25T04:39:45.0508671Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:39:45.0509115Z env: 2025-04-25T04:39:45.0509299Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:45.0509668Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:45.0510176Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:45.0510655Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:45.0511043Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:45.0511333Z ##[endgroup] 2025-04-25T04:39:45.4086473Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:39:45.4154580Z Finished 2025-04-25T04:39:45.5518635Z Holding runner until all ssh sessions have logged out 2025-04-25T04:39:45.5758926Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-04-25T04:39:45.5759353Z .github\scripts\kill_active_ssh_sessions.ps1 2025-04-25T04:39:45.5774674Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:39:45.5775130Z env: 2025-04-25T04:39:45.5775317Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:45.5775695Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:45.5776200Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:45.5776754Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:45.5777163Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:45.5777444Z ##[endgroup] 2025-04-25T04:39:45.9264258Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:39:45.9330316Z Finished 2025-04-25T04:39:45.9692013Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-04-25T04:39:45.9692401Z env: 2025-04-25T04:39:45.9692584Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:45.9692980Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:45.9693488Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:45.9693951Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:45.9694346Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:45.9694628Z ##[endgroup] 2025-04-25T04:39:45.9762915Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:39:45.9763639Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:39:45.9764293Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-04-25T04:39:45.9764764Z # handle tool 2025-04-25T04:39:45.9765095Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-04-25T04:39:45.9765496Z Foreach ($process In $processes) { 2025-04-25T04:39:45.9767176Z  Try { 2025-04-25T04:39:45.9767722Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-04-25T04:39:45.9768420Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-04-25T04:39:45.9768802Z  } 2025-04-25T04:39:45.9769000Z  Catch { 2025-04-25T04:39:45.9769289Z  Write-Output "No leftover $process process, continuing" 2025-04-25T04:39:45.9769739Z  Write-Output $_ 2025-04-25T04:39:45.9769969Z  } 2025-04-25T04:39:45.9770151Z } 2025-04-25T04:39:45.9770325Z  2025-04-25T04:39:45.9770782Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-04-25T04:39:45.9771340Z # for hung processes 2025-04-25T04:39:45.9771604Z Foreach ($process In $processes) { 2025-04-25T04:39:45.9771881Z  Try { 2025-04-25T04:39:45.9772264Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-04-25T04:39:45.9772710Z  } 2025-04-25T04:39:45.9772887Z  Catch { 2025-04-25T04:39:45.9773100Z  Write-Output $_ 2025-04-25T04:39:45.9773340Z  } 2025-04-25T04:39:45.9773514Z } 2025-04-25T04:39:45.9773687Z  2025-04-25T04:39:45.9773847Z Try { 2025-04-25T04:39:45.9774084Z  # Print all the processes for debugging 2025-04-25T04:39:45.9774528Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-04-25T04:39:45.9774940Z } 2025-04-25T04:39:45.9775104Z Catch { 2025-04-25T04:39:45.9775492Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-04-25T04:39:45.9775956Z  Write-Output $_ 2025-04-25T04:39:45.9776174Z } 2025-04-25T04:39:45.9790843Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:39:45.9791277Z env: 2025-04-25T04:39:45.9791466Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:45.9791826Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:45.9792330Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:45.9792865Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:45.9793272Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:45.9793556Z ##[endgroup] 2025-04-25T04:39:46.3831315Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:39:46.3874915Z Finished 2025-04-25T04:39:46.4027563Z No leftover python process, continuing 2025-04-25T04:39:46.4469269Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4470049Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4470653Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4471052Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4471540Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4472393Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4472981Z 2025-04-25T04:39:46.4485283Z No leftover ninja process, continuing 2025-04-25T04:39:46.4495527Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4496192Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4496739Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4497130Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4498848Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4499975Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4500593Z 2025-04-25T04:39:46.4511106Z No leftover cl process, continuing 2025-04-25T04:39:46.4521105Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4521886Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4522430Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4522874Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4523369Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4524209Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4524808Z 2025-04-25T04:39:46.4535362Z No leftover nvcc process, continuing 2025-04-25T04:39:46.4546284Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4546989Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4547565Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4547965Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4548458Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4549282Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4549872Z 2025-04-25T04:39:46.4560500Z No leftover cmd process, continuing 2025-04-25T04:39:46.4570330Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4570993Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4571530Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4571922Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4572481Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4573315Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4573909Z 2025-04-25T04:39:46.4582880Z No leftover sccache process, continuing 2025-04-25T04:39:46.4592657Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4593344Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4593936Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4594383Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4594851Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4595692Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4596280Z 2025-04-25T04:39:46.4605441Z No leftover git process, continuing 2025-04-25T04:39:46.4616266Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-04-25T04:39:46.4616968Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:9 char:5 2025-04-25T04:39:46.4617528Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:39:46.4617927Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.4618563Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-04-25T04:39:46.4619360Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:39:46.4619948Z 2025-04-25T04:39:46.5053836Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5054359Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5054944Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5055516Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5055908Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5056315Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5056598Z 2025-04-25T04:39:46.5211046Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5211570Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5212178Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5212605Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5213004Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5213410Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5213697Z 2025-04-25T04:39:46.5359134Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5359693Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5360240Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5360667Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5361068Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5361468Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5361755Z 2025-04-25T04:39:46.5506506Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5507050Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5507646Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5508722Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5509120Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5509535Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5509832Z 2025-04-25T04:39:46.5655478Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5655993Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5656546Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5656995Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5657387Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5657788Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5658079Z 2025-04-25T04:39:46.5800753Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5801312Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5801927Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5802357Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5802760Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5803152Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5803442Z 2025-04-25T04:39:46.5946889Z You cannot call a method on a null-valued expression. 2025-04-25T04:39:46.5947599Z At C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1:21 char:5 2025-04-25T04:39:46.5948259Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:39:46.5948684Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:39:46.5949083Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:39:46.5949492Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:39:46.5949790Z 2025-04-25T04:39:46.6947763Z Caption CommandLine ProcessId 2025-04-25T04:39:46.6948249Z 2025-04-25T04:39:46.6948592Z System Idle Process 0 2025-04-25T04:39:46.6949020Z 2025-04-25T04:39:46.6949675Z System 4 2025-04-25T04:39:46.6950040Z 2025-04-25T04:39:46.6950809Z Registry 168 2025-04-25T04:39:46.6951319Z 2025-04-25T04:39:46.6951970Z smss.exe 408 2025-04-25T04:39:46.6952392Z 2025-04-25T04:39:46.6953350Z csrss.exe 528 2025-04-25T04:39:46.6953797Z 2025-04-25T04:39:46.6954936Z csrss.exe 604 2025-04-25T04:39:46.6955326Z 2025-04-25T04:39:46.6955604Z wininit.exe 656 2025-04-25T04:39:46.6956065Z 2025-04-25T04:39:46.6956851Z winlogon.exe winlogon.exe 676 2025-04-25T04:39:46.6958060Z 2025-04-25T04:39:46.6958952Z services.exe 748 2025-04-25T04:39:46.6959393Z 2025-04-25T04:39:46.6976059Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-04-25T04:39:46.6976646Z 2025-04-25T04:39:46.6977137Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-04-25T04:39:46.6977855Z 2025-04-25T04:39:46.6978286Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-04-25T04:39:46.6978808Z 2025-04-25T04:39:46.6979170Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-04-25T04:39:46.6979621Z 2025-04-25T04:39:46.6980080Z fontdrvhost.exe "fontdrvhost.exe" 952 2025-04-25T04:39:46.6980529Z 2025-04-25T04:39:46.6981000Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-04-25T04:39:46.6981614Z 2025-04-25T04:39:46.6982077Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-04-25T04:39:46.6982614Z 2025-04-25T04:39:46.6983073Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 824 2025-04-25T04:39:46.6983646Z 2025-04-25T04:39:46.6984223Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1104 2025-04-25T04:39:46.6984887Z 2025-04-25T04:39:46.6985162Z dwm.exe "dwm.exe" 1148 2025-04-25T04:39:46.6985596Z 2025-04-25T04:39:46.6986261Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-04-25T04:39:46.6986979Z 2025-04-25T04:39:46.6987482Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-04-25T04:39:46.6988048Z 2025-04-25T04:39:46.6988554Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1356 2025-04-25T04:39:46.6989093Z 2025-04-25T04:39:46.6989630Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1400 2025-04-25T04:39:46.6990315Z 2025-04-25T04:39:46.6990795Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-04-25T04:39:46.6991365Z 2025-04-25T04:39:46.6993206Z 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 1476 2025-04-25T04:39:46.6995059Z 2025-04-25T04:39:46.6995540Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1484 2025-04-25T04:39:46.6996126Z 2025-04-25T04:39:46.6996708Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-04-25T04:39:46.6997289Z 2025-04-25T04:39:46.6997896Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-04-25T04:39:46.6998626Z 2025-04-25T04:39:46.6999127Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-04-25T04:39:46.6999667Z 2025-04-25T04:39:46.7000173Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-04-25T04:39:46.7000756Z 2025-04-25T04:39:46.7001240Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1736 2025-04-25T04:39:46.7001834Z 2025-04-25T04:39:46.7002261Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1848 2025-04-25T04:39:46.7002792Z 2025-04-25T04:39:46.7003317Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-04-25T04:39:46.7003955Z 2025-04-25T04:39:46.7004477Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1888 2025-04-25T04:39:46.7005154Z 2025-04-25T04:39:46.7005645Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1956 2025-04-25T04:39:46.7006246Z 2025-04-25T04:39:46.7006723Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2000 2025-04-25T04:39:46.7007308Z 2025-04-25T04:39:46.7008491Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1096 2025-04-25T04:39:46.7009212Z 2025-04-25T04:39:46.7009743Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2056 2025-04-25T04:39:46.7010468Z 2025-04-25T04:39:46.7011057Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2088 2025-04-25T04:39:46.7011671Z 2025-04-25T04:39:46.7012256Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2292 2025-04-25T04:39:46.7012929Z 2025-04-25T04:39:46.7013403Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2468 2025-04-25T04:39:46.7013950Z 2025-04-25T04:39:46.7014429Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2500 2025-04-25T04:39:46.7015030Z 2025-04-25T04:39:46.7015412Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2524 2025-04-25T04:39:46.7015890Z 2025-04-25T04:39:46.7016427Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2624 2025-04-25T04:39:46.7017066Z 2025-04-25T04:39:46.7017918Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2632 2025-04-25T04:39:46.7018516Z 2025-04-25T04:39:46.7018976Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2640 2025-04-25T04:39:46.7019579Z 2025-04-25T04:39:46.7020025Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2648 2025-04-25T04:39:46.7020570Z 2025-04-25T04:39:46.7021028Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2668 2025-04-25T04:39:46.7021583Z 2025-04-25T04:39:46.7022192Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2676 2025-04-25T04:39:46.7022878Z 2025-04-25T04:39:46.7023473Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2688 2025-04-25T04:39:46.7024114Z 2025-04-25T04:39:46.7024595Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2696 2025-04-25T04:39:46.7025154Z 2025-04-25T04:39:46.7025628Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2704 2025-04-25T04:39:46.7026193Z 2025-04-25T04:39:46.7026880Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2964 2025-04-25T04:39:46.7027451Z 2025-04-25T04:39:46.7027889Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3008 2025-04-25T04:39:46.7028448Z 2025-04-25T04:39:46.7029064Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3044 2025-04-25T04:39:46.7029772Z 2025-04-25T04:39:46.7030397Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 2852 2025-04-25T04:39:46.7031128Z 2025-04-25T04:39:46.7031587Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3096 2025-04-25T04:39:46.7032191Z 2025-04-25T04:39:46.7032785Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3460 2025-04-25T04:39:46.7033475Z 2025-04-25T04:39:46.7034083Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4072 2025-04-25T04:39:46.7034796Z 2025-04-25T04:39:46.7035272Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a76055 /state1:0x41c64e6d 2760 2025-04-25T04:39:46.7036094Z 2025-04-25T04:39:46.7037851Z 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 2580 2025-04-25T04:39:46.7039679Z 2025-04-25T04:39:46.7040427Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4164 2025-04-25T04:39:46.7041209Z 2025-04-25T04:39:46.7041565Z vds.exe C:\Windows\System32\vds.exe 4236 2025-04-25T04:39:46.7042006Z 2025-04-25T04:39:46.7042586Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2728 2025-04-25T04:39:46.7043227Z 2025-04-25T04:39:46.7043922Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4252 2025-04-25T04:39:46.7044747Z 2025-04-25T04:39:46.7046386Z 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 1088 2025-04-25T04:39:46.7048011Z 2025-04-25T04:39:46.7048399Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 932 2025-04-25T04:39:46.7048887Z 2025-04-25T04:39:46.7049451Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 548 2025-04-25T04:39:46.7050049Z 2025-04-25T04:39:46.7050406Z msdtc.exe C:\Windows\System32\msdtc.exe 3468 2025-04-25T04:39:46.7050909Z 2025-04-25T04:39:46.7051512Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4732 2025-04-25T04:39:46.7052224Z 2025-04-25T04:39:46.7052668Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 3756 2025-04-25T04:39:46.7053239Z 2025-04-25T04:39:46.7053789Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 4792 2025-04-25T04:39:46.7054447Z 2025-04-25T04:39:46.7054832Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4004 2025-04-25T04:39:46.7055363Z 2025-04-25T04:39:46.7055827Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4156 2025-04-25T04:39:46.7056389Z 2025-04-25T04:39:46.7056865Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4988 2025-04-25T04:39:46.7057478Z 2025-04-25T04:39:46.7058074Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4048 2025-04-25T04:39:46.7058637Z 2025-04-25T04:39:46.7059028Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1832 2025-04-25T04:39:46.7060271Z 2025-04-25T04:39:46.7060756Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1704 2025-04-25T04:39:46.7061320Z 2025-04-25T04:39:46.7061820Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3592 2025-04-25T04:39:46.7062424Z 2025-04-25T04:39:46.7063078Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1492 2025-04-25T04:39:46.7063854Z 2025-04-25T04:39:46.7064394Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1860 2025-04-25T04:39:46.7065048Z 2025-04-25T04:39:46.7065552Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1896 2016 1648 2025-04-25T04:39:46.7066162Z 2025-04-25T04:39:46.7066545Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4748 2025-04-25T04:39:46.7067040Z 2025-04-25T04:39:46.7067505Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3992 2025-04-25T04:39:46.7067999Z 2025-04-25T04:39:46.7068816Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\c1e2e4d7-0fc9-4f14-a7c2-d14b9f7ccaff.ps1'" 4160 2025-04-25T04:39:46.7069780Z 2025-04-25T04:39:46.7070354Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3384 2025-04-25T04:39:46.7071014Z 2025-04-25T04:39:46.7071018Z 2025-04-25T04:39:46.7071021Z 2025-04-25T04:39:46.7323966Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:39:46.7324245Z with: 2025-04-25T04:39:46.7324415Z shell: bash 2025-04-25T04:39:46.7324592Z timeout_minutes: 5 2025-04-25T04:39:46.7324799Z max_attempts: 3 2025-04-25T04:39:46.7324991Z retry_wait_seconds: 90 2025-04-25T04:39:46.7325974Z 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-04-25T04:39:46.7326970Z polling_interval_seconds: 1 2025-04-25T04:39:46.7327208Z warning_on_retry: true 2025-04-25T04:39:46.7327440Z continue_on_error: false 2025-04-25T04:39:46.7327726Z env: 2025-04-25T04:39:46.7327906Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:39:46.7328263Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:39:46.7328787Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:39:46.7329246Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:39:46.7329640Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:39:46.7329979Z EXTRA_DELETE_DIR: /c/14656749847/build-results/ 2025-04-25T04:39:46.7330259Z ##[endgroup] 2025-04-25T04:39:47.1085251Z + '[' -n /c/14656749847/build-results/ ']' 2025-04-25T04:39:47.1085620Z + rm -rf /c/14656749847/build-results/ 2025-04-25T04:39:47.1516964Z + 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 ./pytest.ini ./requirements.txt ./sccache-stats-win-vs2022-cpu-py3-41133079878.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-04-25T04:40:13.2308516Z Command completed after 1 attempt(s). 2025-04-25T04:40:13.2461777Z ##[group]Run handle C:\actions-runner\_work\ 2025-04-25T04:40:13.2462264Z handle C:\actions-runner\_work\ 2025-04-25T04:40:13.2477266Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:40:13.2477795Z env: 2025-04-25T04:40:13.2477974Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:40:13.2478344Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:40:13.2478847Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:40:13.2479311Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:40:13.2479802Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:40:13.2480078Z ##[endgroup] 2025-04-25T04:40:13.6086836Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:40:13.6154226Z Finished 2025-04-25T04:40:13.7052611Z 2025-04-25T04:40:13.7053009Z Nthandle v5.0 - Handle viewer 2025-04-25T04:40:13.7053362Z Copyright (C) 1997-2022 Mark Russinovich 2025-04-25T04:40:13.7053700Z Sysinternals - www.sysinternals.com 2025-04-25T04:40:13.7053888Z 2025-04-25T04:40:13.7392862Z powershell.exe pid: 4152 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:40:13.7393463Z handle.exe pid: 5248 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:40:13.7394005Z handle.exe pid: 5544 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:40:13.7394556Z handle64.exe pid: 5416 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:40:13.7782314Z Post job cleanup. 2025-04-25T04:40:13.7908768Z Post job cleanup. 2025-04-25T04:40:13.9965296Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-04-25T04:40:14.0172894Z git version 2.47.1.windows.2 2025-04-25T04:40:14.0243260Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\1161ff13-342f-4588-9f61-be83409ef754\.gitconfig' 2025-04-25T04:40:14.0251028Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\1161ff13-342f-4588-9f61-be83409ef754' before making global git config changes 2025-04-25T04:40:14.0251847Z Adding repository directory to the temporary git global config as a safe directory 2025-04-25T04:40:14.0261264Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:40:14.0517061Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-04-25T04:40:14.0763886Z [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-04-25T04:40:14.4823743Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-04-25T04:40:14.5023761Z http.https://github.com/.extraheader 2025-04-25T04:40:14.5066448Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-04-25T04:40:14.5323616Z [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-04-25T04:40:14.8903763Z A job completed hook has been configured by the self-hosted runner administrator 2025-04-25T04:40:14.8965084Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-04-25T04:40:14.8980146Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:40:14.8980599Z ##[endgroup] 2025-04-25T04:40:15.2607155Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:40:15.2671017Z Finished 2025-04-25T04:40:16.6526245Z Evaluate and set job outputs 2025-04-25T04:40:16.6540877Z Set output 'test-matrix' 2025-04-25T04:40:16.6553158Z Cleaning up orphan processes